-- MySQL dump 10.18  Distrib 10.3.27-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: musician_sofits
-- ------------------------------------------------------
-- Server version	10.3.27-MariaDB-log-cll-lve

/*!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 utf8mb4 */;
/*!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 `attendance_list`
--

DROP TABLE IF EXISTS `attendance_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `attendance_list` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `post` int(10) unsigned NOT NULL,
  `user` int(10) unsigned NOT NULL,
  `vote` int(10) unsigned NOT NULL,
  `date` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `post` (`post`,`user`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `attendance_list`
--

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

--
-- Table structure for table `wp_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id` (`claim_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3564 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_actions`
--

LOCK TABLES `wp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_actions` VALUES (3560,'action_scheduler/migration_hook','complete','2020-09-19 18:29:32','2020-09-19 14:29:32','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1600540172;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1600540172;}',1,1,'2020-09-19 18:29:32','2020-09-19 14:29:32',0,NULL),(3561,'action_scheduler/migration_hook','complete','2020-09-19 18:30:32','2020-09-19 14:30:32','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1600540232;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1600540232;}',1,1,'2020-09-19 18:30:33','2020-09-19 14:30:33',0,NULL),(3562,'wpforms_process_entry_emails_meta_cleanup','canceled','2020-09-20 00:00:00','2020-09-19 20:00:00','{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1600560000;s:18:\"\0*\0first_timestamp\";i:1600560000;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1600560000;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL),(3563,'wpforms_admin_notifications_update','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','{\"tasks_meta_id\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2020-09-19 18:29:33','2020-09-19 14:29:33',0,NULL);
/*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_claims`
--

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

--
-- Table structure for table `wp_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_groups`
--

LOCK TABLES `wp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wpforms');
/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_logs`
--

LOCK TABLES `wp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_logs` VALUES (1,3560,'action created','2020-09-19 18:28:32','2020-09-19 14:28:32'),(2,3560,'action started via WP Cron','2020-09-19 18:29:32','2020-09-19 14:29:32'),(3,3560,'action complete via WP Cron','2020-09-19 18:29:32','2020-09-19 14:29:32'),(4,3561,'action created','2020-09-19 18:29:32','2020-09-19 14:29:32'),(5,3562,'action created','2020-09-19 18:29:32','2020-09-19 14:29:32'),(6,3563,'action created','2020-09-19 18:29:32','2020-09-19 14:29:32'),(7,3563,'action started via Async Request','2020-09-19 18:29:33','2020-09-19 14:29:33'),(8,3563,'action complete via Async Request','2020-09-19 18:29:33','2020-09-19 14:29:33'),(9,3561,'action started via WP Cron','2020-09-19 18:30:33','2020-09-19 14:30:33'),(10,3561,'action complete via WP Cron','2020-09-19 18:30:33','2020-09-19 14:30:33'),(11,3562,'action canceled','2020-09-19 18:32:53','2020-09-19 14:32:53');
/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_afc_fonts`
--

DROP TABLE IF EXISTS `wp_afc_fonts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_afc_fonts` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `metadata` text COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_afc_fonts`
--

LOCK TABLES `wp_afc_fonts` WRITE;
/*!40000 ALTER TABLE `wp_afc_fonts` DISABLE KEYS */;
INSERT INTO `wp_afc_fonts` VALUES (1,'canterbury','local','a:0:{}'),(2,'lexifont4','local','a:0:{}'),(3,'digit-square','local','a:0:{}'),(4,'merrymurnisc','local','a:0:{}'),(5,'erthqake','local','a:0:{}'),(6,'scripalt','local','a:0:{}'),(7,'eskargot','local','a:0:{}'),(8,'scriptin','local','a:0:{}'),(9,'ilits','local','a:0:{}'),(10,'junegull','local','a:0:{}'),(11,'Pacifico','google','a:0:{}'),(12,'Ubuntu','google','a:0:{}'),(13,'Nova Square','google','a:0:{}'),(14,'PT Sans','google','a:0:{}'),(15,'Michroma','google','a:0:{}'),(16,'Oswald','google','a:0:{}'),(17,'News Cycle','google','a:0:{}'),(18,'Roboto','google','a:0:{}'),(19,'Halant','google','a:0:{}'),(20,'Droid Sans','google','a:0:{}'),(21,'Sarpanch','google','a:0:{}');
/*!40000 ALTER TABLE `wp_afc_fonts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_afc_selectors`
--

DROP TABLE IF EXISTS `wp_afc_selectors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_afc_selectors` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `selectorName` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `properties` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pageType` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `editorData` text COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_afc_selectors`
--

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

--
-- Table structure for table `wp_attendance_list`
--

DROP TABLE IF EXISTS `wp_attendance_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_attendance_list` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `post` int(10) unsigned NOT NULL,
  `user` int(10) unsigned NOT NULL,
  `vote` int(10) unsigned NOT NULL,
  `date` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `post` (`post`,`user`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_attendance_list`
--

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

--
-- 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) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!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` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `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))
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!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_ealist`
--

DROP TABLE IF EXISTS `wp_ealist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ealist` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `date` int(10) unsigned NOT NULL,
  `name` varchar(20) NOT NULL,
  `vote` int(10) unsigned NOT NULL,
  `facebook_id` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ealist`
--

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

--
-- Table structure for table `wp_em_bookings`
--

DROP TABLE IF EXISTS `wp_em_bookings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_em_bookings` (
  `booking_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint(20) unsigned NOT NULL,
  `person_id` bigint(20) unsigned NOT NULL,
  `booking_spaces` int(5) NOT NULL,
  `booking_comment` text DEFAULT NULL,
  `booking_date` timestamp NOT NULL DEFAULT current_timestamp(),
  `booking_status` tinyint(1) NOT NULL DEFAULT 1,
  `booking_price` decimal(10,2) unsigned NOT NULL DEFAULT 0.00,
  `booking_tax_rate` decimal(5,2) DEFAULT NULL,
  `booking_taxes` decimal(10,2) DEFAULT NULL,
  `booking_meta` longtext DEFAULT NULL,
  PRIMARY KEY (`booking_id`),
  KEY `event_id` (`event_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_em_bookings`
--

LOCK TABLES `wp_em_bookings` WRITE;
/*!40000 ALTER TABLE `wp_em_bookings` DISABLE KEYS */;
INSERT INTO `wp_em_bookings` VALUES (1,1,1,1,'','2013-09-20 18:49:48',0,0.00,0.00,0.00,'a:0:{}');
/*!40000 ALTER TABLE `wp_em_bookings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_em_events`
--

DROP TABLE IF EXISTS `wp_em_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_em_events` (
  `event_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL,
  `event_slug` varchar(200) DEFAULT NULL,
  `event_owner` bigint(20) unsigned DEFAULT NULL,
  `event_status` int(1) DEFAULT NULL,
  `event_name` text DEFAULT NULL,
  `event_start_time` time DEFAULT NULL,
  `event_end_time` time DEFAULT NULL,
  `event_all_day` int(1) DEFAULT NULL,
  `event_start_date` date DEFAULT NULL,
  `event_end_date` date DEFAULT NULL,
  `post_content` longtext DEFAULT NULL,
  `event_rsvp` tinyint(1) NOT NULL DEFAULT 0,
  `event_rsvp_date` date DEFAULT NULL,
  `event_rsvp_time` time DEFAULT NULL,
  `event_rsvp_spaces` int(5) DEFAULT NULL,
  `event_spaces` int(5) DEFAULT 0,
  `event_private` tinyint(1) NOT NULL DEFAULT 0,
  `location_id` bigint(20) unsigned DEFAULT NULL,
  `recurrence_id` bigint(20) unsigned DEFAULT NULL,
  `event_category_id` bigint(20) unsigned DEFAULT NULL,
  `event_attributes` text DEFAULT NULL,
  `event_date_created` datetime DEFAULT NULL,
  `event_date_modified` datetime DEFAULT NULL,
  `recurrence` tinyint(1) NOT NULL DEFAULT 0,
  `recurrence_interval` int(4) DEFAULT NULL,
  `recurrence_freq` tinytext DEFAULT NULL,
  `recurrence_byday` tinytext DEFAULT NULL,
  `recurrence_byweekno` int(4) DEFAULT NULL,
  `recurrence_days` int(4) DEFAULT NULL,
  `blog_id` bigint(20) unsigned DEFAULT NULL,
  `group_id` bigint(20) unsigned DEFAULT NULL,
  PRIMARY KEY (`event_id`),
  KEY `event_status` (`event_status`),
  KEY `post_id` (`post_id`),
  KEY `blog_id` (`blog_id`),
  KEY `group_id` (`group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_em_events`
--

LOCK TABLES `wp_em_events` WRITE;
/*!40000 ALTER TABLE `wp_em_events` DISABLE KEYS */;
INSERT INTO `wp_em_events` VALUES (1,422,'sept-27',1,1,'Sept 27','13:00:00','15:00:00',0,'2013-09-27','2013-09-27',NULL,1,NULL,'00:00:00',1,0,0,2,NULL,NULL,'a:0:{}','2013-09-20 14:49:15',NULL,0,NULL,NULL,NULL,NULL,0,NULL,0);
/*!40000 ALTER TABLE `wp_em_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_em_locations`
--

DROP TABLE IF EXISTS `wp_em_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_em_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL,
  `blog_id` bigint(20) unsigned DEFAULT NULL,
  `location_slug` varchar(200) DEFAULT NULL,
  `location_name` text DEFAULT NULL,
  `location_owner` bigint(20) unsigned NOT NULL DEFAULT 0,
  `location_address` varchar(200) DEFAULT NULL,
  `location_town` varchar(200) DEFAULT NULL,
  `location_state` varchar(200) DEFAULT NULL,
  `location_postcode` varchar(10) DEFAULT NULL,
  `location_region` varchar(200) DEFAULT NULL,
  `location_country` char(2) DEFAULT NULL,
  `location_latitude` float(10,6) DEFAULT NULL,
  `location_longitude` float(10,6) DEFAULT NULL,
  `post_content` longtext DEFAULT NULL,
  `location_status` int(1) DEFAULT NULL,
  `location_private` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`location_id`),
  KEY `location_state` (`location_state`),
  KEY `location_region` (`location_region`),
  KEY `location_country` (`location_country`),
  KEY `post_id` (`post_id`),
  KEY `blog_id` (`blog_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_em_locations`
--

LOCK TABLES `wp_em_locations` WRITE;
/*!40000 ALTER TABLE `wp_em_locations` DISABLE KEYS */;
INSERT INTO `wp_em_locations` VALUES (1,423,0,'lac-bourgeois-parking-lot','Lac Bourgeois Parking Lot',1,NULL,NULL,NULL,NULL,NULL,NULL,0.000000,0.000000,NULL,1,0),(2,423,0,'lac-bourgeois-parking-lot','Lac Bourgeois Parking Lot',1,'Champlain Parkway','Gatineau Park','Quebec',NULL,NULL,'CA',45.492344,-75.869286,NULL,1,0);
/*!40000 ALTER TABLE `wp_em_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_em_meta`
--

DROP TABLE IF EXISTS `wp_em_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_em_meta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `object_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  `meta_date` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`meta_id`),
  KEY `object_id` (`object_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_em_meta`
--

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

--
-- Table structure for table `wp_em_tickets`
--

DROP TABLE IF EXISTS `wp_em_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_em_tickets` (
  `ticket_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint(20) unsigned NOT NULL,
  `ticket_name` tinytext NOT NULL,
  `ticket_description` text DEFAULT NULL,
  `ticket_price` decimal(10,2) DEFAULT NULL,
  `ticket_start` datetime DEFAULT NULL,
  `ticket_end` datetime DEFAULT NULL,
  `ticket_min` int(10) DEFAULT NULL,
  `ticket_max` int(10) DEFAULT NULL,
  `ticket_spaces` int(11) DEFAULT NULL,
  `ticket_members` int(1) DEFAULT NULL,
  `ticket_members_roles` longtext DEFAULT NULL,
  `ticket_guests` int(1) DEFAULT NULL,
  `ticket_required` int(1) DEFAULT NULL,
  PRIMARY KEY (`ticket_id`),
  KEY `event_id` (`event_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_em_tickets`
--

LOCK TABLES `wp_em_tickets` WRITE;
/*!40000 ALTER TABLE `wp_em_tickets` DISABLE KEYS */;
INSERT INTO `wp_em_tickets` VALUES (1,1,'Attendance',NULL,NULL,NULL,NULL,NULL,NULL,10,0,NULL,0,0);
/*!40000 ALTER TABLE `wp_em_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_em_tickets_bookings`
--

DROP TABLE IF EXISTS `wp_em_tickets_bookings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_em_tickets_bookings` (
  `ticket_booking_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `booking_id` bigint(20) unsigned NOT NULL,
  `ticket_id` bigint(20) unsigned NOT NULL,
  `ticket_booking_spaces` int(6) NOT NULL,
  `ticket_booking_price` decimal(10,2) NOT NULL,
  PRIMARY KEY (`ticket_booking_id`),
  KEY `booking_id` (`booking_id`),
  KEY `ticket_id` (`ticket_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_em_tickets_bookings`
--

LOCK TABLES `wp_em_tickets_bookings` WRITE;
/*!40000 ALTER TABLE `wp_em_tickets_bookings` DISABLE KEYS */;
INSERT INTO `wp_em_tickets_bookings` VALUES (1,1,1,1,0.00);
/*!40000 ALTER TABLE `wp_em_tickets_bookings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_groups_capability`
--

DROP TABLE IF EXISTS `wp_groups_capability`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_groups_capability` (
  `capability_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `capability` varchar(255) NOT NULL,
  `class` varchar(255) DEFAULT NULL,
  `object` varchar(255) DEFAULT NULL,
  `name` varchar(100) DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  PRIMARY KEY (`capability_id`),
  UNIQUE KEY `capability` (`capability`),
  KEY `capability_kco` (`capability`(20),`class`(20),`object`(20))
) ENGINE=MyISAM AUTO_INCREMENT=91 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_groups_capability`
--

LOCK TABLES `wp_groups_capability` WRITE;
/*!40000 ALTER TABLE `wp_groups_capability` DISABLE KEYS */;
INSERT INTO `wp_groups_capability` VALUES (1,'groups_read_post',NULL,NULL,NULL,NULL),(2,'switch_themes',NULL,NULL,NULL,NULL),(3,'edit_themes',NULL,NULL,NULL,NULL),(4,'activate_plugins',NULL,NULL,NULL,NULL),(5,'edit_plugins',NULL,NULL,NULL,NULL),(6,'edit_users',NULL,NULL,NULL,NULL),(7,'edit_files',NULL,NULL,NULL,NULL),(8,'manage_options',NULL,NULL,NULL,NULL),(9,'moderate_comments',NULL,NULL,NULL,NULL),(10,'manage_categories',NULL,NULL,NULL,NULL),(11,'manage_links',NULL,NULL,NULL,NULL),(12,'upload_files',NULL,NULL,NULL,NULL),(13,'import',NULL,NULL,NULL,NULL),(14,'unfiltered_html',NULL,NULL,NULL,NULL),(15,'edit_posts',NULL,NULL,NULL,NULL),(16,'edit_others_posts',NULL,NULL,NULL,NULL),(17,'edit_published_posts',NULL,NULL,NULL,NULL),(18,'publish_posts',NULL,NULL,NULL,NULL),(19,'edit_pages',NULL,NULL,NULL,NULL),(20,'read',NULL,NULL,NULL,NULL),(21,'level_10',NULL,NULL,NULL,NULL),(22,'level_9',NULL,NULL,NULL,NULL),(23,'level_8',NULL,NULL,NULL,NULL),(24,'level_7',NULL,NULL,NULL,NULL),(25,'level_6',NULL,NULL,NULL,NULL),(26,'level_5',NULL,NULL,NULL,NULL),(27,'level_4',NULL,NULL,NULL,NULL),(28,'level_3',NULL,NULL,NULL,NULL),(29,'level_2',NULL,NULL,NULL,NULL),(30,'level_1',NULL,NULL,NULL,NULL),(31,'level_0',NULL,NULL,NULL,NULL),(32,'edit_others_pages',NULL,NULL,NULL,NULL),(33,'edit_published_pages',NULL,NULL,NULL,NULL),(34,'publish_pages',NULL,NULL,NULL,NULL),(35,'delete_pages',NULL,NULL,NULL,NULL),(36,'delete_others_pages',NULL,NULL,NULL,NULL),(37,'delete_published_pages',NULL,NULL,NULL,NULL),(38,'delete_posts',NULL,NULL,NULL,NULL),(39,'delete_others_posts',NULL,NULL,NULL,NULL),(40,'delete_published_posts',NULL,NULL,NULL,NULL),(41,'delete_private_posts',NULL,NULL,NULL,NULL),(42,'edit_private_posts',NULL,NULL,NULL,NULL),(43,'read_private_posts',NULL,NULL,NULL,NULL),(44,'delete_private_pages',NULL,NULL,NULL,NULL),(45,'edit_private_pages',NULL,NULL,NULL,NULL),(46,'read_private_pages',NULL,NULL,NULL,NULL),(47,'delete_users',NULL,NULL,NULL,NULL),(48,'create_users',NULL,NULL,NULL,NULL),(49,'unfiltered_upload',NULL,NULL,NULL,NULL),(50,'edit_dashboard',NULL,NULL,NULL,NULL),(51,'update_plugins',NULL,NULL,NULL,NULL),(52,'delete_plugins',NULL,NULL,NULL,NULL),(53,'install_plugins',NULL,NULL,NULL,NULL),(54,'update_themes',NULL,NULL,NULL,NULL),(55,'install_themes',NULL,NULL,NULL,NULL),(56,'update_core',NULL,NULL,NULL,NULL),(57,'list_users',NULL,NULL,NULL,NULL),(58,'remove_users',NULL,NULL,NULL,NULL),(59,'add_users',NULL,NULL,NULL,NULL),(60,'promote_users',NULL,NULL,NULL,NULL),(61,'edit_theme_options',NULL,NULL,NULL,NULL),(62,'delete_themes',NULL,NULL,NULL,NULL),(63,'export',NULL,NULL,NULL,NULL),(64,'publish_events',NULL,NULL,NULL,NULL),(65,'delete_others_events',NULL,NULL,NULL,NULL),(66,'edit_others_events',NULL,NULL,NULL,NULL),(67,'manage_others_bookings',NULL,NULL,NULL,NULL),(68,'publish_recurring_events',NULL,NULL,NULL,NULL),(69,'delete_others_recurring_events',NULL,NULL,NULL,NULL),(70,'edit_others_recurring_events',NULL,NULL,NULL,NULL),(71,'publish_locations',NULL,NULL,NULL,NULL),(72,'delete_others_locations',NULL,NULL,NULL,NULL),(73,'delete_locations',NULL,NULL,NULL,NULL),(74,'edit_others_locations',NULL,NULL,NULL,NULL),(75,'delete_event_categories',NULL,NULL,NULL,NULL),(76,'edit_event_categories',NULL,NULL,NULL,NULL),(77,'manage_bookings',NULL,NULL,NULL,NULL),(78,'upload_event_images',NULL,NULL,NULL,NULL),(79,'delete_events',NULL,NULL,NULL,NULL),(80,'edit_events',NULL,NULL,NULL,NULL),(81,'read_private_events',NULL,NULL,NULL,NULL),(82,'delete_recurring_events',NULL,NULL,NULL,NULL),(83,'edit_recurring_events',NULL,NULL,NULL,NULL),(84,'edit_locations',NULL,NULL,NULL,NULL),(85,'read_private_locations',NULL,NULL,NULL,NULL),(86,'read_others_locations',NULL,NULL,NULL,NULL),(87,'manage_polls',NULL,NULL,NULL,NULL),(88,'groups_access',NULL,NULL,NULL,NULL),(89,'groups_admin_groups',NULL,NULL,NULL,NULL),(90,'groups_admin_options',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `wp_groups_capability` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_groups_group`
--

DROP TABLE IF EXISTS `wp_groups_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_groups_group` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` bigint(20) DEFAULT NULL,
  `creator_id` bigint(20) DEFAULT NULL,
  `datetime` datetime DEFAULT NULL,
  `name` varchar(100) NOT NULL,
  `description` longtext DEFAULT NULL,
  PRIMARY KEY (`group_id`),
  UNIQUE KEY `group_n` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_groups_group`
--

LOCK TABLES `wp_groups_group` WRITE;
/*!40000 ALTER TABLE `wp_groups_group` DISABLE KEYS */;
INSERT INTO `wp_groups_group` VALUES (1,NULL,1,'2013-09-25 14:02:23','Registered',NULL);
/*!40000 ALTER TABLE `wp_groups_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_groups_group_capability`
--

DROP TABLE IF EXISTS `wp_groups_group_capability`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_groups_group_capability` (
  `group_id` bigint(20) unsigned NOT NULL,
  `capability_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`group_id`,`capability_id`),
  KEY `group_capability_cg` (`capability_id`,`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_groups_group_capability`
--

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

--
-- Table structure for table `wp_groups_user_capability`
--

DROP TABLE IF EXISTS `wp_groups_user_capability`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_groups_user_capability` (
  `user_id` bigint(20) unsigned NOT NULL,
  `capability_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`user_id`,`capability_id`),
  KEY `user_capability_cu` (`capability_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_groups_user_capability`
--

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

--
-- Table structure for table `wp_groups_user_group`
--

DROP TABLE IF EXISTS `wp_groups_user_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_groups_user_group` (
  `user_id` bigint(20) unsigned NOT NULL,
  `group_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`user_id`,`group_id`),
  KEY `user_group_gu` (`group_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_groups_user_group`
--

LOCK TABLES `wp_groups_user_group` WRITE;
/*!40000 ALTER TABLE `wp_groups_user_group` DISABLE KEYS */;
INSERT INTO `wp_groups_user_group` VALUES (1,1),(4,1),(5,1);
/*!40000 ALTER TABLE `wp_groups_user_group` 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) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!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 */;
INSERT INTO `wp_links` VALUES (1,'https://codex.wordpress.org/','Documentation','','','','Y',7,0,'0000-00-00 00:00:00','','',''),(2,'https://wordpress.org/news/','WordPress Blog','','','','Y',7,0,'0000-00-00 00:00:00','','','https://wordpress.org/news/feed/'),(3,'https://wordpress.org/extend/ideas/','Suggest Ideas','','','','Y',7,0,'0000-00-00 00:00:00','','',''),(4,'https://wordpress.org/support/','Support Forum','','','','Y',7,0,'0000-00-00 00:00:00','','',''),(5,'https://wordpress.org/extend/plugins/','Plugins','','','','Y',7,0,'0000-00-00 00:00:00','','',''),(6,'https://wordpress.org/extend/themes/','Themes','','','','Y',7,0,'0000-00-00 00:00:00','','',''),(7,'https://planet.wordpress.org/','WordPress Planet','','','','Y',7,0,'0000-00-00 00:00:00','','','');
/*!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) DEFAULT NULL,
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=90210 DEFAULT CHARSET=latin1;
/*!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 (3,'siteurl','httpss://sofits.ca','yes'),(4,'blogname','S.O.F.I.T.S','yes'),(5,'blogdescription','Skiers over Fifty (in Training).','yes'),(6,'users_can_register','0','yes'),(7,'admin_email','musicianonskis@gmail.com','yes'),(8,'start_of_week','1','yes'),(9,'use_balanceTags','','yes'),(10,'use_smilies','1','yes'),(11,'require_name_email','1','yes'),(12,'comments_notify','1','yes'),(13,'posts_per_rss','3','yes'),(14,'rss_use_excerpt','1','yes'),(15,'mailserver_url','mail.example.com','yes'),(16,'mailserver_login','login@example.com','yes'),(17,'mailserver_pass','password','yes'),(18,'mailserver_port','110','yes'),(19,'default_category','1','yes'),(20,'default_comment_status','open','yes'),(21,'default_ping_status','closed','yes'),(22,'default_pingback_flag','','yes'),(24,'posts_per_page','1','yes'),(25,'date_format','F j, Y','yes'),(26,'time_format','H:i','yes'),(27,'links_updated_date_format','F j, Y g:i a','yes'),(31,'comment_moderation','1','yes'),(32,'moderation_notify','1','yes'),(33,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(35,'hack_file','0','yes'),(36,'blog_charset','UTF-8','yes'),(37,'moderation_keys','','no'),(38,'active_plugins','a:5:{i:0;s:19:\"akismet/akismet.php\";i:1;s:33:\"classic-editor/classic-editor.php\";i:2;s:24:\"inpost-gallery/index.php\";i:3;s:20:\"styleguide/index.php\";i:4;s:45:\"text-selection-color/text-selection-color.php\";}','yes'),(39,'home','httpss://sofits.ca','yes'),(40,'category_base','','yes'),(41,'ping_sites','https://rpc.pingomatic.com/','yes'),(43,'comment_max_links','1','yes'),(44,'gmt_offset','','yes'),(45,'default_email_category','1','yes'),(46,'recently_edited','a:5:{i:0;s:73:\"/home/musician/public_html/sofits.ca/wp-content/themes/curation/style.css\";i:2;s:76:\"/home/musician/public_html/sofits.ca/wp-content/plugins/styleguide/index.php\";i:3;s:61:\"/home/sofits/public_html/wp-content/themes/curation/style.css\";i:4;s:62:\"/home/sofits/public_html/wp-content/themes/curation/single.php\";i:5;s:61:\"/home/sofits/public_html/wp-content/themes/curation/index.php\";}','no'),(47,'template','curation','yes'),(48,'stylesheet','curation','yes'),(51,'comment_registration','','yes'),(53,'html_type','text/html','yes'),(54,'use_trackback','0','yes'),(55,'default_role','subscriber','yes'),(56,'db_version','48748','yes'),(57,'uploads_use_yearmonth_folders','','yes'),(58,'upload_path','','yes'),(59,'blog_public','0','yes'),(60,'default_link_category','2','yes'),(61,'show_on_front','page','yes'),(62,'tag_base','','yes'),(63,'show_avatars','1','yes'),(64,'avatar_rating','G','yes'),(65,'upload_url_path','','yes'),(66,'thumbnail_size_w','300','yes'),(67,'thumbnail_size_h','200','yes'),(68,'thumbnail_crop','','yes'),(69,'medium_size_w','700','yes'),(70,'medium_size_h','500','yes'),(71,'avatar_default','wavatar','yes'),(74,'large_size_w','700','yes'),(75,'large_size_h','500','yes'),(76,'image_default_link_type','','yes'),(77,'image_default_size','','yes'),(78,'image_default_align','','yes'),(79,'close_comments_for_old_posts','','yes'),(80,'close_comments_days_old','90','yes'),(81,'thread_comments','','yes'),(82,'thread_comments_depth','5','yes'),(83,'page_comments','','yes'),(84,'comments_per_page','50','yes'),(85,'default_comments_page','newest','yes'),(86,'comment_order','desc','yes'),(87,'sticky_posts','a:0:{}','yes'),(88,'widget_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(89,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(90,'widget_rss','a:2:{i:3;a:6:{s:5:\"title\";s:8:\"RSS Feed\";s:3:\"url\";s:16:\"https://sofits.ca\";s:5:\"items\";i:4;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:1;s:9:\"show_date\";i:1;}s:12:\"_multiwidget\";i:1;}','yes'),(91,'timezone_string','America/New_York','yes'),(93,'embed_size_w','','yes'),(94,'embed_size_h','600','yes'),(95,'page_for_posts','0','yes'),(96,'page_on_front','3317','yes'),(97,'default_post_format','0','yes'),(98,'initial_db_version','19470','yes'),(99,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:126:{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:14:\"publish_events\";b:1;s:20:\"delete_others_events\";b:1;s:18:\"edit_others_events\";b:1;s:22:\"manage_others_bookings\";b:1;s:24:\"publish_recurring_events\";b:1;s:30:\"delete_others_recurring_events\";b:1;s:28:\"edit_others_recurring_events\";b:1;s:17:\"publish_locations\";b:1;s:23:\"delete_others_locations\";b:1;s:16:\"delete_locations\";b:1;s:21:\"edit_others_locations\";b:1;s:23:\"delete_event_categories\";b:1;s:21:\"edit_event_categories\";b:1;s:15:\"manage_bookings\";b:1;s:19:\"upload_event_images\";b:1;s:13:\"delete_events\";b:1;s:11:\"edit_events\";b:1;s:19:\"read_private_events\";b:1;s:23:\"delete_recurring_events\";b:1;s:21:\"edit_recurring_events\";b:1;s:14:\"edit_locations\";b:1;s:22:\"read_private_locations\";b:1;s:21:\"read_others_locations\";b:1;s:12:\"manage_polls\";b:1;s:13:\"groups_access\";b:1;s:19:\"groups_admin_groups\";b:1;s:20:\"groups_admin_options\";b:1;s:24:\"manage_yop_polls_options\";b:1;s:24:\"manage_yop_polls_imports\";b:1;s:21:\"manage_yop_polls_bans\";b:1;s:16:\"delete_yop_polls\";b:1;s:20:\"delete_own_yop_polls\";b:1;s:14:\"edit_yop_polls\";b:1;s:18:\"edit_own_yop_polls\";b:1;s:15:\"clone_yop_polls\";b:1;s:19:\"clone_own_yop_polls\";b:1;s:19:\"view_yop_polls_logs\";b:1;s:22:\"view_yop_polls_imports\";b:1;s:23:\"view_own_yop_polls_logs\";b:1;s:22:\"view_yop_polls_results\";b:1;s:26:\"view_own_yop_polls_results\";b:1;s:21:\"reset_yop_polls_stats\";b:1;s:25:\"reset_own_yop_polls_stats\";b:1;s:21:\"delete_yop_polls_logs\";b:1;s:1:\"s\";b:1;s:24:\"edit_yop_polls_templates\";b:1;s:28:\"edit_own_yop_polls_templates\";b:1;s:26:\"delete_yop_polls_templates\";b:1;s:30:\"delete_own_yop_polls_templates\";b:1;s:25:\"clone_yop_polls_templates\";b:1;s:29:\"clone_own_yop_polls_templates\";b:1;s:15:\"import_wp_polls\";b:1;s:18:\"add_yop_poll_votes\";b:1;s:19:\"become_yop_poll_pro\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:24:\"manage_events_categories\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:92:{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:14:\"publish_events\";b:1;s:20:\"delete_others_events\";b:1;s:18:\"edit_others_events\";b:1;s:22:\"manage_others_bookings\";b:1;s:24:\"publish_recurring_events\";b:1;s:30:\"delete_others_recurring_events\";b:1;s:28:\"edit_others_recurring_events\";b:1;s:17:\"publish_locations\";b:1;s:23:\"delete_others_locations\";b:1;s:16:\"delete_locations\";b:1;s:21:\"edit_others_locations\";b:1;s:23:\"delete_event_categories\";b:1;s:21:\"edit_event_categories\";b:1;s:15:\"manage_bookings\";b:1;s:19:\"upload_event_images\";b:1;s:13:\"delete_events\";b:1;s:11:\"edit_events\";b:1;s:19:\"read_private_events\";b:1;s:23:\"delete_recurring_events\";b:1;s:21:\"edit_recurring_events\";b:1;s:14:\"edit_locations\";b:1;s:22:\"read_private_locations\";b:1;s:21:\"read_others_locations\";b:1;s:24:\"manage_yop_polls_options\";b:1;s:24:\"manage_yop_polls_imports\";b:1;s:20:\"delete_own_yop_polls\";b:1;s:14:\"edit_yop_polls\";b:1;s:18:\"edit_own_yop_polls\";b:1;s:15:\"clone_yop_polls\";b:1;s:19:\"clone_own_yop_polls\";b:1;s:19:\"view_yop_polls_logs\";b:1;s:22:\"view_yop_polls_imports\";b:1;s:23:\"view_own_yop_polls_logs\";b:1;s:22:\"view_yop_polls_results\";b:1;s:26:\"view_own_yop_polls_results\";b:1;s:21:\"reset_yop_polls_stats\";b:1;s:25:\"reset_own_yop_polls_stats\";b:1;s:21:\"delete_yop_polls_logs\";b:1;s:1:\"s\";b:1;s:24:\"edit_yop_polls_templates\";b:1;s:28:\"edit_own_yop_polls_templates\";b:1;s:26:\"delete_yop_polls_templates\";b:1;s:30:\"delete_own_yop_polls_templates\";b:1;s:25:\"clone_yop_polls_templates\";b:1;s:29:\"clone_own_yop_polls_templates\";b:1;s:15:\"import_wp_polls\";b:1;s:18:\"add_yop_poll_votes\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:24:\"manage_events_categories\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:38:{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:15:\"manage_bookings\";b:1;s:19:\"upload_event_images\";b:1;s:13:\"delete_events\";b:1;s:11:\"edit_events\";b:1;s:19:\"read_private_events\";b:1;s:23:\"delete_recurring_events\";b:1;s:21:\"edit_recurring_events\";b:1;s:14:\"edit_locations\";b:1;s:22:\"read_private_locations\";b:1;s:21:\"read_others_locations\";b:1;s:20:\"delete_own_yop_polls\";b:1;s:18:\"edit_own_yop_polls\";b:1;s:19:\"clone_own_yop_polls\";b:1;s:23:\"view_own_yop_polls_logs\";b:1;s:26:\"view_own_yop_polls_results\";b:1;s:25:\"reset_own_yop_polls_stats\";b:1;s:1:\"s\";b:1;s:28:\"edit_own_yop_polls_templates\";b:1;s:30:\"delete_own_yop_polls_templates\";b:1;s:29:\"clone_own_yop_polls_templates\";b:1;s:15:\"import_wp_polls\";b:1;s:18:\"add_yop_poll_votes\";b:1;s:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:24:\"manage_events_categories\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:17:{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:15:\"manage_bookings\";b:1;s:19:\"upload_event_images\";b:1;s:13:\"delete_events\";b:1;s:11:\"edit_events\";b:1;s:19:\"read_private_events\";b:1;s:23:\"delete_recurring_events\";b:1;s:21:\"edit_recurring_events\";b:1;s:14:\"edit_locations\";b:1;s:22:\"read_private_locations\";b:1;s:21:\"read_others_locations\";b:1;s:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:12:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;s:15:\"manage_bookings\";b:1;s:19:\"upload_event_images\";b:1;s:13:\"delete_events\";b:1;s:11:\"edit_events\";b:1;s:19:\"read_private_events\";b:1;s:23:\"delete_recurring_events\";b:1;s:21:\"edit_recurring_events\";b:1;s:14:\"edit_locations\";b:1;s:22:\"read_private_locations\";b:1;s:21:\"read_others_locations\";b:1;}}}','yes'),(100,'widget_search','a:2:{i:3;a:1:{s:5:\"title\";s:6:\"Search\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_recent-posts','a:2:{i:2;a:3:{s:5:\"title\";s:18:\" Most Recent Posts\";s:6:\"number\";i:3;s:9:\"show_date\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:8:\"Comments\";s:6:\"number\";i:25;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:8:\"search-3\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"calendar-2\";i:3;s:14:\"recent-posts-2\";}s:19:\"primary-widget-area\";a:1:{i:0;s:5:\"rss-3\";}s:13:\"array_version\";i:3;}','yes'),(114,'current_theme','Curation','yes'),(151,'cron','a:13:{i:1610821143;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1610827102;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:1610830963;a:1:{s:31:\"puc_cron_check_updates-yop-poll\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1610838204;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:1610841535;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:1610846469;a:1:{s:10:\"polls_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1610861755;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:1610887379;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1610888339;a:1:{s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1610900554;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1611255593;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1644439440;a:1:{s:19:\"publish_future_post\";a:1:{s:32:\"39c52ca020b9a351d59a47c3431b1c18\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:2446;}}}}s:7:\"version\";i:2;}','yes'),(160,'dashboard_widget_options','a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:16:\"https://sofits.ca\";s:4:\"link\";s:92:\"https://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:https://sofits.ca/\";s:3:\"url\";s:125:\"https://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:https://sofits.ca/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"https://wordpress.org/news/\";s:3:\"url\";s:31:\"https://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:7:{s:4:\"link\";s:28:\"https://planet.wordpress.org/\";s:3:\"url\";s:33:\"https://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}','yes'),(199,'uninstall_plugins','a:3:{s:52:\"simple-event-attendance/simple-events-attendance.php\";s:15:\"seatt_uninstall\";s:47:\"active-directory-integration/ad-integration.php\";s:30:\"ADIntegrationPlugin::uninstall\";s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}}','no'),(200,'link_manager_enabled','1','yes'),(201,'db_upgraded','','yes'),(207,'wp_opulus_options','a:111:{s:15:\"reminder_images\";s:2:\"on\";s:15:\"example_widgets\";s:2:\"on\";s:10:\"image_logo\";s:0:\"\";s:9:\"text_logo\";s:9:\"sofits.ca\";s:7:\"favicon\";s:0:\"\";s:8:\"gravatar\";s:0:\"\";s:9:\"read_more\";s:16:\"Read More &rarr;\";s:9:\"copyright\";s:22:\"&copy; 2013, sofits.ca\";s:16:\"toggle_side_menu\";s:1:\"0\";s:12:\"public_phone\";s:0:\"\";s:12:\"public_email\";s:0:\"\";s:10:\"public_fax\";s:0:\"\";s:7:\"address\";s:0:\"\";s:13:\"banner_option\";s:17:\"full_image_border\";s:11:\"action_text\";s:141:\"Welcome to the WP Opulus Theme. To edit this text please login to the dashboard and select WP Opulus Theme Options under the Appearance menu.\";s:15:\"toggle_featured\";s:1:\"1\";s:22:\"toggle_featured_exerpt\";s:1:\"0\";s:13:\"left_featured\";i:2;s:15:\"center_featured\";i:2;s:14:\"right_featured\";i:2;s:14:\"fp_content_pos\";s:4:\"none\";s:11:\"toggle_blog\";s:1:\"1\";s:15:\"blog_feed_title\";s:25:\"Latest News From the Blog\";s:16:\"slideshow_effect\";s:4:\"fade\";s:16:\"slideshow_slices\";s:1:\"1\";s:17:\"slideshow_box_col\";s:1:\"8\";s:18:\"slideshow_box_rows\";s:1:\"4\";s:21:\"slideshow_trans_speed\";s:4:\"1000\";s:15:\"slideshow_pause\";s:4:\"3000\";s:20:\"slideshow_direct_nav\";s:4:\"true\";s:26:\"slideshow_direct_nav_hover\";s:4:\"true\";s:21:\"slideshow_control_nav\";s:4:\"true\";s:21:\"slideshow_hover_pause\";s:4:\"true\";s:24:\"slideshow_manual_advance\";s:5:\"false\";s:21:\"slideshow_cap_opacity\";s:3:\"0.5\";s:22:\"slideshow_random_start\";s:5:\"false\";s:10:\"blog_title\";s:4:\"Blog\";s:13:\"posts_on_blog\";s:1:\"5\";s:23:\"nimbus_post_meta_single\";a:6:{s:5:\"title\";s:1:\"1\";s:10:\"post_thumb\";s:1:\"1\";s:6:\"author\";s:1:\"1\";s:4:\"date\";s:1:\"1\";s:10:\"categories\";s:1:\"1\";s:4:\"tags\";s:1:\"1\";}s:14:\"post_meta_blog\";a:5:{s:5:\"title\";s:1:\"1\";s:10:\"post_thumb\";s:1:\"1\";s:6:\"author\";s:1:\"1\";s:4:\"date\";s:1:\"1\";s:10:\"categories\";s:1:\"1\";}s:11:\"display_bio\";s:1:\"1\";s:15:\"portfolio_title\";s:9:\"Portfolio\";s:16:\"portfolio_layout\";s:9:\"full_page\";s:21:\"display_bio_portfolio\";s:1:\"0\";s:15:\"header_bg_color\";s:7:\"#f0f0f0\";s:11:\"dd_bg_color\";s:7:\"#464646\";s:15:\"dd_border_color\";s:7:\"#535353\";s:15:\"ribbon_bg_color\";s:7:\"#ffffff\";s:27:\"ribbon_content_shadow_color\";s:7:\"#555555\";s:19:\"action_bg_color_top\";s:7:\"#ffffff\";s:22:\"action_bg_color_bottom\";s:7:\"#f1f1f1\";s:26:\"action_border_color_bottom\";s:7:\"#e8e8e8\";s:18:\"image_stroke_color\";s:7:\"#b6b6b6\";s:18:\"image_border_color\";s:7:\"#ffffff\";s:17:\"image_border_type\";s:5:\"solid\";s:18:\"image_shadow_color\";s:7:\"#c5c5c5\";s:25:\"banner_image_stroke_color\";s:7:\"#b6b6b6\";s:25:\"banner_image_border_color\";s:7:\"#ffffff\";s:24:\"banner_image_border_type\";s:5:\"solid\";s:25:\"banner_image_shadow_color\";s:7:\"#c5c5c5\";s:10:\"body_style\";a:6:{s:4:\"size\";s:4:\"13px\";s:4:\"line\";s:5:\"1.4em\";s:4:\"face\";s:5:\"Arial\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#535353\";s:9:\"fonttrans\";s:4:\"none\";}s:10:\"link_color\";s:7:\"#0077ff\";s:16:\"link_hover_color\";s:7:\"#0077ff\";s:10:\"logo_style\";a:6:{s:4:\"size\";s:4:\"33px\";s:4:\"line\";s:3:\"1em\";s:4:\"face\";s:5:\"Bebas\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#262626\";s:9:\"fonttrans\";s:4:\"none\";}s:18:\"head_contact_style\";a:6:{s:4:\"size\";s:4:\"11px\";s:4:\"line\";s:3:\"1em\";s:4:\"face\";s:5:\"Arial\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#535353\";s:9:\"fonttrans\";s:4:\"none\";}s:15:\"main_menu_style\";a:6:{s:4:\"size\";s:4:\"20px\";s:4:\"line\";s:3:\"1em\";s:4:\"face\";s:14:\"PT Sans Narrow\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#535353\";s:9:\"fonttrans\";s:9:\"uppercase\";}s:14:\"sub_menu_style\";a:6:{s:4:\"size\";s:4:\"18px\";s:4:\"line\";s:3:\"1em\";s:4:\"face\";s:14:\"PT Sans Narrow\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#e1e1e1\";s:9:\"fonttrans\";s:4:\"none\";}s:12:\"action_style\";a:6:{s:4:\"size\";s:4:\"22px\";s:4:\"line\";s:5:\"1.5em\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#454545\";s:9:\"fonttrans\";s:4:\"none\";}s:8:\"h1_style\";a:6:{s:4:\"size\";s:4:\"25px\";s:4:\"line\";s:3:\"1em\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#454545\";s:9:\"fonttrans\";s:4:\"none\";}s:8:\"h2_style\";a:6:{s:4:\"size\";s:4:\"22px\";s:4:\"line\";s:5:\"1.3em\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#454545\";s:9:\"fonttrans\";s:4:\"none\";}s:8:\"h3_style\";a:6:{s:4:\"size\";s:4:\"18px\";s:4:\"line\";s:5:\"1.3em\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:4:\"bold\";s:5:\"color\";s:7:\"#454545\";s:9:\"fonttrans\";s:9:\"uppercase\";}s:8:\"h4_style\";a:6:{s:4:\"size\";s:4:\"18px\";s:4:\"line\";s:5:\"1.3em\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#454545\";s:9:\"fonttrans\";s:4:\"none\";}s:8:\"h5_style\";a:6:{s:4:\"size\";s:4:\"16px\";s:4:\"line\";s:5:\"1.3em\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#454545\";s:9:\"fonttrans\";s:9:\"uppercase\";}s:8:\"h6_style\";a:6:{s:4:\"size\";s:4:\"16px\";s:4:\"line\";s:5:\"1.3em\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#454545\";s:9:\"fonttrans\";s:4:\"none\";}s:16:\"blockquote_style\";a:6:{s:4:\"size\";s:4:\"18px\";s:4:\"line\";s:5:\"1.4em\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#454545\";s:9:\"fonttrans\";s:4:\"none\";}s:15:\"pullquote_style\";a:6:{s:4:\"size\";s:4:\"20px\";s:4:\"line\";s:5:\"1.2em\";s:4:\"face\";s:5:\"Arial\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#0078FF\";s:9:\"fonttrans\";s:4:\"none\";}s:10:\"code_style\";a:2:{s:4:\"face\";s:11:\"Courier New\";s:5:\"color\";s:7:\"#535353\";}s:8:\"th_style\";a:6:{s:4:\"size\";s:4:\"18px\";s:4:\"line\";s:3:\"1em\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:4:\"bold\";s:5:\"color\";s:7:\"#0078ff\";s:9:\"fonttrans\";s:9:\"uppercase\";}s:8:\"td_style\";a:6:{s:4:\"size\";s:4:\"13px\";s:4:\"line\";s:5:\"1.4em\";s:4:\"face\";s:5:\"Arial\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#535353\";s:9:\"fonttrans\";s:4:\"none\";}s:8:\"tc_style\";a:6:{s:4:\"size\";s:4:\"13px\";s:4:\"line\";s:3:\"1em\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:11:\"bold italic\";s:5:\"color\";s:7:\"#535353\";s:9:\"fonttrans\";s:9:\"uppercase\";}s:19:\"sidebar_title_style\";a:6:{s:4:\"size\";s:4:\"18px\";s:4:\"line\";s:5:\"1.3em\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:4:\"bold\";s:5:\"color\";s:7:\"#454545\";s:9:\"fonttrans\";s:9:\"uppercase\";}s:18:\"footer_title_style\";a:6:{s:4:\"size\";s:4:\"18px\";s:4:\"line\";s:5:\"1.3em\";s:4:\"face\";s:7:\"PT Sans\";s:5:\"style\";s:4:\"bold\";s:5:\"color\";s:7:\"#454545\";s:9:\"fonttrans\";s:9:\"uppercase\";}s:17:\"footer_text_style\";a:6:{s:4:\"size\";s:4:\"13px\";s:4:\"line\";s:5:\"1.4em\";s:4:\"face\";s:5:\"Arial\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#535353\";s:9:\"fonttrans\";s:4:\"none\";}s:21:\"nimbus_typography_one\";a:1:{s:4:\"face\";s:7:\"PT Sans\";}s:21:\"nimbus_typography_two\";a:1:{s:4:\"face\";s:7:\"PT Sans\";}s:23:\"nimbus_typography_three\";a:1:{s:4:\"face\";s:7:\"PT Sans\";}s:12:\"button_style\";a:1:{s:4:\"face\";s:7:\"PT Sans\";}s:15:\"copyright_style\";a:6:{s:4:\"size\";s:4:\"11px\";s:4:\"line\";s:3:\"1em\";s:4:\"face\";s:5:\"Arial\";s:5:\"style\";s:6:\"normal\";s:5:\"color\";s:7:\"#a6a6a6\";s:9:\"fonttrans\";s:4:\"none\";}s:12:\"facebook_url\";s:0:\"\";s:11:\"twitter_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:22:\"display_social_buttons\";s:1:\"1\";s:20:\"display_like_buttons\";s:1:\"0\";s:15:\"frontpage_title\";s:9:\"sofits.ca\";s:21:\"frontpage_description\";s:0:\"\";s:18:\"frontpage_keywords\";s:0:\"\";s:15:\"page_switch_seo\";s:1:\"1\";s:15:\"post_switch_seo\";s:1:\"1\";s:15:\"port_switch_seo\";s:1:\"1\";s:9:\"canonical\";s:1:\"1\";s:20:\"default_title_config\";s:9:\"post-site\";s:18:\"scripts_multicheck\";a:4:{s:8:\"mootools\";s:1:\"0\";s:9:\"prototype\";s:1:\"0\";s:13:\"scriptaculous\";s:1:\"0\";s:4:\"dojo\";s:1:\"0\";}s:12:\"scripts_head\";s:0:\"\";s:19:\"scripts_top_content\";s:0:\"\";s:17:\"top_scripts_multi\";a:6:{s:4:\"home\";s:1:\"0\";s:5:\"pages\";s:1:\"0\";s:4:\"blog\";s:1:\"0\";s:5:\"posts\";s:1:\"0\";s:9:\"portfolio\";s:1:\"0\";s:14:\"portfolio_item\";s:1:\"0\";}s:22:\"scripts_bottom_content\";s:0:\"\";s:20:\"bottom_scripts_multi\";a:6:{s:4:\"home\";s:1:\"0\";s:5:\"pages\";s:1:\"0\";s:4:\"blog\";s:1:\"0\";s:5:\"posts\";s:1:\"0\";s:9:\"portfolio\";s:1:\"0\";s:14:\"portfolio_item\";s:1:\"0\";}s:12:\"scripts_foot\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";}','yes'),(218,'theme_mods_curation','a:10:{i:0;b:0;s:16:\"header_textcolor\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:21:\"background_position_x\";s:6:\"center\";s:21:\"background_attachment\";s:5:\"fixed\";s:12:\"header_image\";s:13:\"remove-header\";s:18:\"nav_menu_locations\";a:1:{s:9:\"main-menu\";i:0;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(219,'theme_switched','','yes'),(221,'curation_options','a:1:{s:11:\"colorscheme\";s:6:\"803FAB\";}','yes'),(247,'widget_calendar','a:2:{i:2;a:1:{s:5:\"title\";s:17:\"CALENDAR OF POSTS\";}s:12:\"_multiwidget\";i:1;}','yes'),(256,'recently_activated','a:0:{}','yes'),(257,'wordpress_api_key','cda584eec6b5','yes'),(258,'akismet_discard_month','true','yes'),(259,'akismet_show_user_comments_approved','true','yes'),(261,'akismet_connectivity_time','1377111928','yes'),(264,'_transient_random_seed','a77d99277014d1edf3b1c9083f59a3d1','yes'),(277,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:3;}}','yes'),(279,'theme_mods_encounters-lite','a:59:{i:0;b:0;s:12:\"header_image\";s:13:\"remove-header\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:2:{s:12:\"primary-menu\";i:0;s:11:\"footer-menu\";i:0;}s:12:\"blog_sidebar\";s:11:\"rightcolumn\";s:15:\"archive_sidebar\";s:11:\"rightcolumn\";s:14:\"author_sidebar\";s:11:\"rightcolumn\";s:11:\"intro_image\";s:5:\"small\";s:14:\"site_copyright\";s:9:\"Your Name\";s:16:\"background_color\";s:6:\"000000\";s:9:\"topborder\";s:7:\"#ffffff\";s:12:\"headerborder\";s:7:\"#d9dee1\";s:8:\"headerbg\";s:7:\"#8224e3\";s:9:\"contentbg\";s:7:\"#8224e3\";s:13:\"contentborder\";s:7:\"#ffffff\";s:8:\"headings\";s:7:\"#ffffff\";s:11:\"contenttext\";s:7:\"#ffffff\";s:5:\"links\";s:7:\"#ffffff\";s:10:\"linkshover\";s:7:\"#ffffff\";s:8:\"bottombg\";s:7:\"#363a3d\";s:12:\"bottomborder\";s:7:\"#8224e3\";s:10:\"bottomtext\";s:7:\"#ffffff\";s:13:\"bottomheading\";s:7:\"#8224e3\";s:11:\"bottomlinks\";s:7:\"#ffffff\";s:16:\"bottomlinkshover\";s:7:\"#dde0e1\";s:16:\"bottomlistborder\";s:7:\"#656f74\";s:8:\"footerbg\";s:7:\"#8224e3\";s:12:\"footerborder\";s:7:\"#2a2c2e\";s:10:\"footertext\";s:7:\"#656565\";s:11:\"footerlinks\";s:7:\"#ffffff\";s:16:\"footerlinkshover\";s:7:\"#656565\";s:8:\"socialbg\";s:7:\"#ffffff\";s:7:\"datebox\";s:7:\"#93969f\";s:10:\"datecolour\";s:7:\"#ffffff\";s:11:\"hide_social\";s:0:\"\";s:11:\"twitter_uid\";s:0:\"\";s:12:\"facebook_uid\";s:0:\"\";s:10:\"google_uid\";s:0:\"\";s:12:\"linkedin_uid\";s:0:\"\";s:13:\"pinterest_uid\";s:0:\"\";s:11:\"youtube_uid\";s:0:\"\";s:10:\"flickr_uid\";s:0:\"\";s:7:\"rss_uid\";s:0:\"\";s:11:\"showcasebg1\";s:7:\"#bf7b7b\";s:11:\"showcasebg2\";s:7:\"#8a4f4b\";s:11:\"showcasepad\";s:9:\"15px 70px\";s:10:\"menumargin\";s:4:\"20px\";s:8:\"menulink\";s:7:\"#e4e6eb\";s:13:\"menulinkhover\";s:7:\"#bd7d78\";s:9:\"submenubg\";s:7:\"#a45f5c\";s:14:\"submenubghover\";s:7:\"#bf7b7b\";s:16:\"submenulinkhover\";s:7:\"#ffffff\";s:14:\"mainmenuactive\";s:7:\"#bd7d78\";s:13:\"submenuactive\";s:7:\"#ffffff\";s:15:\"submenuactivebg\";s:7:\"#bd7d78\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1377983230;s:4:\"data\";a:15:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"blogright\";a:6:{i:0;s:14:\"recent-posts-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";i:3;s:10:\"calendar-2\";i:4;s:8:\"search-3\";i:5;s:5:\"rss-3\";}s:8:\"blogleft\";N;s:9:\"pageright\";N;s:8:\"pageleft\";N;s:8:\"showcase\";N;s:3:\"cta\";N;s:4:\"top1\";N;s:4:\"top2\";N;s:4:\"top3\";N;s:4:\"top4\";N;s:7:\"bottom1\";N;s:7:\"bottom2\";N;s:7:\"bottom3\";N;s:7:\"bottom4\";N;}}}','yes'),(280,'my_logo','','yes'),(698,'theme_mods_wp-opulus','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1378050371;s:4:\"data\";a:28:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:10:\"calendar-2\";}s:13:\"sidebar_pages\";a:5:{i:0;s:14:\"recent-posts-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";i:3;s:8:\"search-3\";i:4;s:5:\"rss-3\";}s:12:\"sidebar_blog\";N;s:17:\"sidebar_portfolio\";N;s:11:\"footer-left\";N;s:13:\"footer-center\";N;s:12:\"footer-right\";N;s:15:\"frontpage-right\";N;s:9:\"sidebar_1\";N;s:9:\"sidebar_2\";N;s:9:\"sidebar_3\";N;s:9:\"sidebar_4\";N;s:9:\"sidebar_5\";N;s:9:\"sidebar_6\";N;s:9:\"sidebar_7\";N;s:9:\"sidebar_8\";N;s:9:\"sidebar_9\";N;s:10:\"sidebar_10\";N;s:10:\"sidebar_11\";N;s:10:\"sidebar_12\";N;s:10:\"sidebar_13\";N;s:10:\"sidebar_14\";N;s:10:\"sidebar_15\";N;s:10:\"sidebar_16\";N;s:10:\"sidebar_17\";N;s:10:\"sidebar_18\";N;s:10:\"sidebar_19\";N;s:10:\"sidebar_20\";N;}}}','yes'),(731,'theme_mods_twentyeleven','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1377878343;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:10:\"calendar-2\";i:1;s:8:\"search-3\";i:2;s:5:\"rss-3\";}s:9:\"sidebar-1\";a:3:{i:0;s:14:\"recent-posts-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}}','yes'),(732,'theme_mods_twentytwelve','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1377878380;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:10:\"calendar-2\";i:1;s:8:\"search-3\";i:2;s:5:\"rss-3\";}s:9:\"sidebar-1\";a:3:{i:0;s:14:\"recent-posts-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(803,'theme_mods_greenleaf','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:13:\"greenleaf_nav\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1377983501;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:10:\"calendar-2\";}s:9:\"sidebar-1\";a:5:{i:0;s:14:\"recent-posts-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";i:3;s:8:\"search-3\";i:4;s:5:\"rss-3\";}}}}','yes'),(808,'theme_mods_terrifico','a:160:{s:4:\"logo\";s:54:\"[site_url]/wp-content/themes/terrifico/images/logo.png\";s:13:\"logo_alt_text\";s:9:\"Terrifico\";s:16:\"text_logo_enable\";i:1;s:16:\"google_font_logo\";s:7:\"PT Sans\";s:14:\"logo_font_size\";s:2:\"38\";s:15:\"text_logo_color\";s:7:\"#dd9933\";s:16:\"text_logo_weight\";s:3:\"300\";s:14:\"enable_favicon\";i:0;s:7:\"favicon\";s:0:\"\";s:6:\"layout\";s:4:\"wide\";s:15:\"display_sidebar\";i:1;s:11:\"sidebar_pos\";s:5:\"right\";s:15:\"enable_comments\";i:1;s:16:\"custom_bg_enable\";i:1;s:9:\"custom_bg\";s:56:\"[site_url]/wp-content/themes/terrifico/images/bg/bg6.jpg\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:16:\"google_font_body\";s:11:\"Roboto Slab\";s:14:\"body_font_size\";s:2:\"14\";s:15:\"body_font_color\";s:7:\"#444444\";s:12:\"h1_font_size\";s:2:\"40\";s:12:\"h2_font_size\";s:2:\"34\";s:12:\"h3_font_size\";s:2:\"22\";s:12:\"h4_font_size\";s:2:\"20\";s:12:\"h5_font_size\";s:2:\"16\";s:12:\"h6_font_size\";s:2:\"10\";s:16:\"top_panel_enable\";i:1;s:20:\"header_social_enable\";i:0;s:16:\"top_panel_height\";s:2:\"40\";s:18:\"top_panel_bg_color\";s:7:\"#262c33\";s:18:\"top_contact_enable\";i:1;s:22:\"top_panel_contact_text\";s:30:\"Have any questions? Contact us\";s:22:\"top_contact_top_margin\";s:2:\"12\";s:15:\"top_panel_email\";s:19:\"info@yourdomain.com\";s:15:\"top_panel_phone\";s:12:\"888-888-8888\";s:18:\"contact_text_color\";s:7:\"#ffffff\";s:15:\"header_bg_color\";s:7:\"#323b44\";s:13:\"header_height\";s:2:\"85\";s:17:\"header_top_margin\";s:1:\"0\";s:20:\"header_bottom_margin\";s:1:\"0\";s:15:\"logo_top_margin\";s:2:\"20\";s:16:\"logo_left_margin\";s:2:\"20\";s:17:\"pre_footer_enable\";i:1;s:20:\"prefooter_link_color\";s:7:\"#ffffff\";s:16:\"pre_footer_text1\";s:8:\"Site Map\";s:15:\"pre_footer_url1\";s:1:\"#\";s:16:\"pre_footer_text2\";s:12:\"Search Terms\";s:15:\"pre_footer_url2\";s:1:\"#\";s:16:\"pre_footer_text3\";s:15:\"Advanced Search\";s:15:\"pre_footer_url3\";s:1:\"#\";s:16:\"pre_footer_text4\";s:10:\"Contact Us\";s:15:\"pre_footer_url4\";s:1:\"#\";s:16:\"pre_footer_text5\";s:8:\"Site Map\";s:15:\"pre_footer_url5\";s:1:\"#\";s:16:\"pre_footer_text6\";s:12:\"Search Terms\";s:15:\"pre_footer_url6\";s:1:\"#\";s:16:\"pre_footer_text7\";s:15:\"Advanced Search\";s:15:\"pre_footer_url7\";s:1:\"#\";s:16:\"pre_footer_text8\";s:10:\"Contact Us\";s:15:\"pre_footer_url8\";s:1:\"#\";s:15:\"footer_bg_color\";s:7:\"#323b44\";s:18:\"copyright_bg_color\";s:7:\"#262C33\";s:25:\"footer_widget_title_color\";s:7:\"#ffffff\";s:20:\"footer_social_enable\";i:1;s:21:\"show_footer_copyright\";i:1;s:21:\"footer_copyright_text\";s:26:\"Copyright 2013 S.O.F.I.T.S\";s:17:\"footer_widgets_on\";i:1;s:14:\"nav_top_margin\";s:2:\"20\";s:16:\"google_font_menu\";s:1:\"0\";s:13:\"nav_font_size\";s:2:\"14\";s:14:\"nav_font_color\";s:7:\"#ffffff\";s:12:\"nav_bg_color\";s:7:\"#323b44\";s:20:\"nav_hover_font_color\";s:7:\"#ffffff\";s:18:\"nav_bg_hover_color\";s:7:\"#262c33\";s:21:\"front_page_blog_index\";i:0;s:15:\"homepage_blocks\";a:2:{s:8:\"disabled\";a:2:{s:7:\"placebo\";s:7:\"placebo\";s:9:\"from_blog\";s:13:\"From The Blog\";}s:7:\"enabled\";a:5:{s:7:\"placebo\";s:7:\"placebo\";s:12:\"image_slider\";s:12:\"Image Slider\";s:7:\"tagline\";s:15:\"Tagline Section\";s:13:\"content_boxes\";s:13:\"Content Boxes\";s:12:\"key_features\";s:12:\"Key Features\";}}s:12:\"theme_slider\";s:0:\"\";s:13:\"slider_select\";s:12:\"Refine Slide\";s:16:\"slider_max_width\";s:4:\"1024\";s:16:\"slider_animation\";s:4:\"fade\";s:15:\"slideshow_speed\";s:4:\"5000\";s:15:\"animation_speed\";s:3:\"800\";s:8:\"captions\";i:0;s:20:\"slider_caption_width\";s:3:\"100\";s:26:\"slider_caption_left_margin\";s:1:\"0\";s:17:\"slider_text_color\";s:7:\"#ffffff\";s:18:\"slider_descr_color\";s:7:\"#ffffff\";s:18:\"social_icons_color\";s:7:\"#FFFFFF\";s:13:\"facebook_link\";s:1:\"#\";s:11:\"flickr_link\";s:1:\"#\";s:8:\"rss_link\";s:1:\"#\";s:12:\"twitter_link\";s:1:\"#\";s:12:\"youtube_link\";s:1:\"#\";s:14:\"pinterest_link\";s:1:\"#\";s:11:\"tumblr_link\";s:1:\"#\";s:11:\"google_link\";s:1:\"#\";s:13:\"dribbble_link\";s:1:\"#\";s:13:\"linkedin_link\";s:1:\"#\";s:13:\"blog_category\";s:18:\"Select a category:\";s:12:\"blog_excerpt\";s:2:\"45\";s:15:\"from_blog_items\";s:2:\"10\";s:21:\"meta_section_bg_color\";s:7:\"#dd3333\";s:16:\"blog_title_color\";s:7:\"#65676f\";s:16:\"sidebar_bg_color\";s:7:\"#ffffff\";s:18:\"sidebar_text_color\";s:7:\"#333333\";s:24:\"sidebar_text_hover_color\";s:7:\"#1e73be\";s:21:\"widget_title_bg_color\";s:7:\"#323B44\";s:18:\"widget_title_color\";s:7:\"#ffffff\";s:18:\"from_blog_bg_color\";s:7:\"#f5f5f5\";s:15:\"blog_sect_title\";i:1;s:20:\"blog_sect_title_text\";s:20:\"Latest From The Blog\";s:14:\"tagline_header\";s:52:\"Terrifico Multi-Purpose, Responsive  Wordpress Theme\";s:12:\"tagline_text\";s:241:\"Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aenean egestas placerat hendrerit. Pellentesque dapibus, lectus quis fermentum feugiat, sapien lectus tincidunt tellus, vel malesuada sem nibh non dolor.\";s:19:\"tagline_button_text\";s:10:\"Learn More\";s:18:\"tagline_button_url\";s:0:\"\";s:20:\"tagline_button_color\";s:5:\"green\";s:16:\"tagline_bg_color\";s:7:\"#9db1ba\";s:18:\"tagline_text_color\";s:7:\"#ffffff\";s:18:\"display_tag_border\";i:1;s:20:\"tagline_border_color\";s:7:\"#323b44\";s:19:\"first_column_header\";s:17:\"Responsive Design\";s:17:\"first_column_text\";s:232:\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\";s:18:\"first_column_image\";s:0:\"\";s:16:\"first_column_url\";s:0:\"\";s:19:\"first_column_button\";s:9:\"Read More\";s:20:\"second_column_header\";s:12:\"High Quality\";s:18:\"second_column_text\";s:232:\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\";s:19:\"second_column_image\";s:0:\"\";s:17:\"second_column_url\";s:0:\"\";s:20:\"second_column_button\";s:9:\"Read More\";s:19:\"third_column_header\";s:15:\"eCommerce Ready\";s:17:\"third_column_text\";s:232:\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\";s:18:\"third_column_image\";s:0:\"\";s:16:\"third_column_url\";s:0:\"\";s:19:\"third_column_button\";s:9:\"Read More\";s:19:\"column_header_color\";s:7:\"#323b44\";s:20:\"content_box_bg_color\";s:7:\"#ffffff\";s:18:\"boxes_button_color\";s:5:\"green\";s:22:\"key_feature_title_text\";s:16:\"The Key Features\";s:27:\"first_feature_column_header\";s:20:\"Powerful Admin Panel\";s:25:\"first_feature_column_text\";s:206:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas neque diam, luctus at laoreet in, auctor ut tellus. Etiam enim lacus, ornare et tempor et, rhoncus rhoncus sem missa super dollorisy martin.\";s:26:\"first_feature_column_image\";s:0:\"\";s:24:\"first_feature_column_fai\";s:3:\"cog\";s:28:\"second_feature_column_header\";s:16:\"Fully Responsive\";s:26:\"second_feature_column_text\";s:206:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas neque diam, luctus at laoreet in, auctor ut tellus. Etiam enim lacus, ornare et tempor et, rhoncus rhoncus sem missa super dollorisy martin.\";s:27:\"second_feature_column_image\";s:0:\"\";s:25:\"second_feature_column_fai\";s:4:\"edit\";s:27:\"third_feature_column_header\";s:20:\"Integrated eCommerce\";s:25:\"third_feature_column_text\";s:206:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas neque diam, luctus at laoreet in, auctor ut tellus. Etiam enim lacus, ornare et tempor et, rhoncus rhoncus sem missa super dollorisy martin.\";s:26:\"third_feature_column_image\";s:0:\"\";s:24:\"third_feature_column_fai\";s:5:\"heart\";s:28:\"fourth_feature_column_header\";s:12:\"High Quality\";s:26:\"fourth_feature_column_text\";s:206:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas neque diam, luctus at laoreet in, auctor ut tellus. Etiam enim lacus, ornare et tempor et, rhoncus rhoncus sem missa super dollorisy martin.\";s:27:\"fourth_feature_column_image\";s:0:\"\";s:25:\"fourth_feature_column_fai\";s:4:\"edit\";s:9:\"of_backup\";s:0:\"\";s:11:\"of_transfer\";s:0:\"\";s:9:\"smof_init\";s:31:\"Sat, 31 Aug 2013 21:06:43 +0000\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1377983449;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:14:\"recent-posts-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";i:3;s:10:\"calendar-2\";i:4;s:8:\"search-3\";i:5;s:5:\"rss-3\";}s:15:\"footer-widget-1\";N;s:15:\"footer-widget-2\";N;s:15:\"footer-widget-3\";N;s:15:\"footer-widget-4\";N;}}}','yes'),(810,'_transient_all_the_cool_cats','4','yes'),(812,'raindrops_theme_settings','a:18:{s:19:\"_raindrops_indv_css\";s:15955:\"body{\ncolor:#ffffff;\n	background-color:#606060;\n}\n\nlegend,\n#sidebar,\ndiv[id^=\"doc\"],\n#hd,\nh1,\ndiv[id=\"yui-main\"],\n.entry ol ol ,.entry ul,\n.entry ul * {\ncolor:#d0d0d0;\n	background-color:#070707;\n}\n\na:link,\na:active,\na:visited,\na:hover,\n#site-title,\n.h1 a{\ncolor:#d0d0d0;\nbackground:none;\n}\nh2 a{\nbackground:inherit;\n}\n\n.lsidebar,\n#sidebar,\n.rsidebar{\ncolor:#d0d0d0;background-color:#111111;\n}\n.rsidebar option.level-0,\n.lsidebar option.level-0,\n.commentlist .pingback,\ndiv[id^=\"comment-\"],\n.entry-content td,\ncite a:link,cite a:active,cite a:visited,cite a:hover,\ncite,\nul.nav li a,ul.nav li a:link,ul.nav li a:visited,\nul.nav li a:hover,ul.nav li a:active,\n.entry-meta,\n.home .sticky,\n#top{\ncolor:#d0d0d0;background-color:#111111;\n}\n.rsidebar option.level-1,\n.lsidebar option.level-1{\ncolor:#d0d0d0;background-color:#222222;\n}\n.rsidebar option.level-2,\n.lsidebar option.level-2{\ncolor:#ffffff;background-color:#333333;\n}\n.widget select,\ninput[type=\"file\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"],\n.fail-search,\n#not-found ,\n#access ul li.current_page_item,\n#access ul li.current-menu-ancestor > a,\n#access ul li.current-menu-item > a,\n#access ul li.current-menu-parent > a,\n#access ul ul a,\n.searchform input[type=\"text\"],\n.social textarea#comment,\n.social input[type=\"text\"],\n.hentry input[type=\"password\"],\n.entry-content blockquote,\ntd.month-date,td.month-name,td.time,\n.footer-widget h2,.rsidebar h2,.lsidebar h2,\n#ft #wp-calendar,\n#ft,\n#nav,\nul.nav{\ncolor:#d0d0d0;background-color:#222222;\n}\n\n.ie6 #access ul li.current_page_item a,\n.ie6 #access ul li.current-menu-ancestor a,\n.ie6 #access ul li.current-menu-item a,\n.ie6 #access ul li.current-menu-parent a,\n.ie6 #access ul li a:hover {\n/* border:1px solid rgba(68, 68, 68,0.5);*/\ncolor:#ffffff;background-color:#333333;\n}\n\ninput[type=\"file\"],\ninput[type=\"reset\"],\n.social input[type=\"submit\"],\ninput[type=\"submit\"]{\ncolor:#d0d0d0;background-color:#222222;\n}\n.entry div h2,.entry div h3{\n}\n\n#hd{\n/*background-image:url(https://sofits.ca/wp-content/themes/raindrops/images/header.png);*/\n}\n\n#header-image{\nbackground-color:#111111!important;\n}\n\n\n.home .sticky,\n.entry-meta{\nborder-top:solid 2px #444444;\nborder-bottom:solid 2px #444444;\n}\n.home .sticky{\nborder-top:solid 6px #444444;\n}\n.attachment .caption dt{\nborder-bottom:double 3px #444444;\n\n}\n\n#yui-main{\ncolor:#fff;\n}\n/*\nol.commentlist :hover{\nbackground:url(https://sofits.ca/wp-content/themes/raindrops/images/latestbck.gif) repeat-x;\n}*/\nol.tblist li{\nbackground:transparent url(https://sofits.ca/wp-content/themes/raindrops/images/c.gif) 0 2px no-repeat;\n}\n#ft{\nborder-top: medium solid #444444;\n/*background:url(https://sofits.ca/wp-content/themes/raindrops/images/footer.png) repeat-x;*/\nbackground-repeat:repeat-x;\ncolor:#fff;\n}\n#ft #wp-calendar{\nborder:1px solid #444444!important;\n}\n\n.footer-widget h2,.rsidebar h2,.lsidebar h2 {\nbackground:#222222 url(https://sofits.ca/wp-content/themes/raindrops/images/h2.png);color:#d0d0d0;\nbackground-position:0 0;\n\n}\n.datetable td li,\n.rsidebar ul li ul li,\n.lsidebar ul li ul li,\n.blog .entry-utility li,\n.mycomment,\n.blog .entry-utility li,\ndl.author dd,\ndl.author dt,\ndl.my_tags dd,\ndl.my_tags dt,\nul.category li,\nul.sitemap ul li,\nul.archive ul li,\nul.all_entry h2,\n.attachment .caption dd,\nul.archive,ul.index,\n.sitemap.new li,\n#items li{\nborder-bottom:1px solid #444444;\n}\n\n.ie6 .datetable td li,\n.ie7 .datetable td li,\n.ie8 .datetable td li{\nborder-bottom:none;\nborder-bottom:none;\n}\n\nhr{\nborder:none;\nborder-top:1px solid #444444;\n}\n\n\n#month_list,\n#month_list td,\n#raindrops_year_list td,\n#calendar_wrap td,\n#date_list td,\n#month_list,\n#month_list td,\n#raindrops_year_list td,\n#calendar_wrap td,\n#date_list td,\nfieldset,\n.itiran,\n#month_list,\n#month_list td,\n#raindrops_year_list td,\n#calendar_wrap td,\n#date_list td,\n.searchform input[type=\"text\"],\n.searchform input[type=\"submit\"],\n.hentry input[type=\"password\"],\n#respond input[type=\"text\"],\n#respond textarea#comment,\n.social textarea#comment,\n.social input[type=\"text\"],\n.social input[type=\"submit\"],\n.entry-content input[type=\"email\"],\n.entry-content input[type=\"text\"],\n.entry-content input[type=url],\n.entry-content input[type=tel],\n.entry-content input[type=number],\n.entry-content input[type=color],\n.entry-content textarea,\n.entry-content blockquote,\ntd.month-date,td.month-name,td.time{\n    border:1px solid #444444;\n}\n\n.entry-content blockquote {\nborder-left:solid 6px #444444;\n}\n\nli.byuser,\nli.bypostauthor,\n#respond input[type=\"text\"]:focus,\n#respond textarea#comment:focus,\n.social textarea#comment:focus,\n.social input:focus,\n.entry-content th{\ncolor:#d0d0d0;background-color:#222222;\n}\n.raindrops-comment-author-meta cite.fn,\nli.byuser div.comment-body *,\nli.byuser span.says{\ncolor:#d0d0d0;background-color:#222222;\nbackground:none;\n}\n.wp-caption,\n.entry-content td,\n.entry-content th{\n}\n#respond input[type=\"text\"],\n#respond textarea#comment,\n.searchform  input[type=\"submit\"],\n.entry-content textarea,\n.entry-content input[type=\"password\"],\n.entry-content input[type=\"text\"],\n.entry-content input[type=\"submit\"],\n.entry-content input[type=\"reset\"],\n.entry-content input[type=\"file\"],\n.entry-content input[type=\"checkbox\"],\n.entry-content input[type=\"radio\"],\n.entry-content input[type=\"email\"],\n.entry-content input[type=\"text\"],\n.entry-content input[type=url],\n.entry-content input[type=tel],\n.entry-content input[type=number],\n.entry-content input[type=color],\n.entry-content select{\ncolor:#d0d0d0;background-color:#111111;\n}\n#access .children li ,\n#access .children a {\nbackground:#111111;\ncolor:#d0d0d0;\nz-index:999;\n}\n.raindrops-tab-content,\n.raindrops-tab-page,\n.raindrops-tab-list li{\nbackground:#111111;\ncolor:#d0d0d0;\n}\n\n.fail-search,\n#not-found{\nborder:1px solid;\n}\n.children:hover,\n.children{\n}\n\n\n.reply,\n#ft a,\n.page .hentry .entry-title a,\n/*.archive.category h2 a,*/\ncite.fn,\ncite a:link,\ncite a:active,\ncite a:visited,\ncite a:hover,\n/*ol.commentlist li :hover,*/\ndiv.comment-body blockquote,\ndiv.comment-body *,\ndiv.comment-author,\ndiv.comment-author-meta,\n#site-description,\n.home .sticky a,\n.home .entry-meta a{\ncolor:#d0d0d0;\nbackground:none;\n}\n.comment-author div.comment-meta a{\ncolor:#d0d0d0;\nbackground:none;\n\n}\n\n/*h1{color:#fff!important;}*/\n\n.rd-page-navigation li{\nborder-left:solid 1px #444444;\ncolor:#d0d0d0;background-color:#111111;\n}\n.rd-page-navigation .current_page_item{\ncolor:#d0d0d0;background-color:#111111;\n}\n.current_page_item{\ncolor:#ffffff;background-color:#333333;\n}\n.gradient1{color:#ffffff;background: -webkit-gradient(linear, left top, left bottom, from(#606060), to(#737373));background: -moz-linear-gradient(top,  #606060,  #737373);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#606060\', endColorstr=\'#737373\');}\n.gradient1 a{color:#ffffff;}\n.gradient-1{color:#ffffff;background: -webkit-gradient(linear, left top, left bottom, from(#606060), to(#444444));background: -moz-linear-gradient(top,  #606060,  #444444);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#606060\', endColorstr=\'#444444\');}\n.gradient-1 a{color:#ffffff;}\n.gradient2{color:#ffffff;background: -webkit-gradient(linear, left top, left bottom, from(#737373), to(#a2a2a2));background: -moz-linear-gradient(top,  #737373,  #a2a2a2);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#737373\', endColorstr=\'#a2a2a2\');}\n.gradient2 a{color:#ffffff;}\n.gradient-2{color:#ffffff;background: -webkit-gradient(linear, left top, left bottom, from(#737373), to(#606060));background: -moz-linear-gradient(top,  #737373,  #606060);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#737373\', endColorstr=\'#606060\');}\n.gradient-2 a{color:#ffffff;}\n.gradient3{color:#000000;background: -webkit-gradient(linear, left top, left bottom, from(#a2a2a2), to(#d0d0d0));background: -moz-linear-gradient(top,  #a2a2a2,  #d0d0d0);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#a2a2a2\', endColorstr=\'#d0d0d0\');}\n.gradient3 a{color:#000000;}\n.gradient-3{color:#000000;background: -webkit-gradient(linear, left top, left bottom, from(#a2a2a2), to(#737373));background: -moz-linear-gradient(top,  #a2a2a2,  #737373);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#a2a2a2\', endColorstr=\'#737373\');}\n.gradient-3 a{color:#000000;}\n.gradient4{color:#222222;background: -webkit-gradient(linear, left top, left bottom, from(#d0d0d0), to(#ededed));background: -moz-linear-gradient(top,  #d0d0d0,  #ededed);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#d0d0d0\', endColorstr=\'#ededed\');}\n.gradient4 a{color:#222222;}\n.gradient-4{color:#222222;background: -webkit-gradient(linear, left top, left bottom, from(#d0d0d0), to(#a2a2a2));background: -moz-linear-gradient(top,  #d0d0d0,  #a2a2a2);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#d0d0d0\', endColorstr=\'#a2a2a2\');}\n.gradient-4 a{color:#222222;}\n\n\nbody{\nbackground: -webkit-gradient(linear, left top, left bottom, from(#3a3a3a), to(#111111));\nbackground: -moz-linear-gradient(top,  #3a3a3a,  #111111);\n}\nhr{\nborder:none;\nborder-top:1px solid rgba(68, 68, 68,0.5);\n}\n\n.home .sticky,\n.entry-meta{\nborder-top:solid 2px rgba(68, 68, 68,0.5);\nborder-bottom:solid 2px rgba(68, 68, 68,0.5);\n}\n.home .sticky{\nborder-top:solid 6px rgba(68, 68, 68,0.5);\n}\n.comment-body th,\n.comment-body td,\n.wp-caption,\n.entry-content td,\n.entry-content th{\nborder:solid 1px rgba(68, 68, 68,0.5);\n}\n\n.attachment .caption dt{\nborder-bottom:3px double rgba(68, 68, 68,0.5);\n}\n.footer-widget h2,.rsidebar h2,.lsidebar h2 {\n/*-webkit-border-top-right-radius: 1em;\n-moz-border-radius-topright: 1em;\nborder-top-right-radius: 1em;\n-webkit-border-top-left-radius: 1em;\n-moz-border-radius-topleft: 1em;\nborder-top-left-radius: 1em;*/\n}\n.datetable td li,\n.rsidebar ul li ul li,\n.lsidebar ul li ul li,\n.blog .entry-utility li,\n.mycomment,\n.blog .entry-utility li,\ndl.author dd,\ndl.author dt,\ndl.my_tags dd,\ndl.my_tags dt,\nul.category li,\nul.sitemap ul li,\nul.archive ul li,\nul.all_entry h2,\n.attachment .caption dd,\nul.archive,ul.index,\n.sitemap.new li,\n#items li{\nborder-bottom:1px solid rgba(68, 68, 68,0.5);\n}\n.widget select,\n.rsidebar option,\n.lsidebar option,\n#month_list,\n#month_list td,\n#raindrops_year_list td,\n#calendar_wrap td,\n#date_list td,\n#month_list,\n#month_list td,\n#raindrops_year_list td,\n#calendar_wrap td,\n#date_list td,\nfieldset,\n.itiran,\n#month_list,\n#month_list td,\n#raindrops_year_list td,\n#calendar_wrap td,\n#date_list td,\n.searchform input[type=\"text\"],\n.searchform input[type=\"submit\"],\n.hentry input[type=\"password\"],\n#respond input[type=\"text\"],\n#respond textarea#comment,\n.social textarea#comment,\n.social input[type=\"text\"],\n.social input[type=\"submit\"],\n.entry-content input[type=\"email\"],\n.entry-content input[type=\"text\"],\n.entry-content input[type=url],\n.entry-content input[type=tel],\n.entry-content input[type=number],\n.entry-content input[type=color],\n.entry-content blockquote,\ntd.month-date,td.month-name,td.time{\nborder:1px solid rgba(68, 68, 68,0.5);\n}\n.searchform input:focus,\n.searchform input:focus,\n#respond input[type=\"text\"]:focus,\n#respond textarea#comment:focus,\n.social textarea:focus,\n.hentry input:focus,\n.social input:focus{\nbox-shadow: 0 0 5px rgba(68, 68, 68,0.5);\n-webkit-box-shadow: 0 0 5px rgba(68, 68, 68,0.5);\n-moz-box-shadow: 0 0 5px rgba(68, 68, 68,0.5);\n}\n\n.searchform input[type=\"text\"],\n#respond input[type=\"text\"],\n#respond textarea#comment,\n.social textarea#comment,\n.hentry input[type=\"password\"],\n.social input[type=\"text\"] {\noutline:none;\ntransition: all 0.25s ease-in-out;\n-webkit-transition: all 0.25s ease-in-out;\n-moz-transition: all 0.25s ease-in-out;\nborder-radius:3px;\n-webkit-border-radius:3px;\n-moz-border-radius:3px;\nborder:1px solid rgba(203,203,203, 0.5);\n}\n\n.entry-content textarea{\nbackground: rgba(68, 68, 68,0.5)\n}\n.fail-search,\ninput[type=\"file\"],\ninput[type=\"reset\"],\n.searchform input[type=\"submit\"],\ninput[type=\"submit\"], \n#access{\nbackground: -webkit-gradient(linear, left top, left bottom, from(#3a3a3a), to(#111111));\nbackground: -moz-linear-gradient(top,  #3a3a3a,  #111111);\nfilter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#3a3a3a\', endColorstr=\'#111111\');\nborder-radius:3px 3px 3px 3px;\n-moz-border-radius:3px 3px 3px 3px;\n-webkit-border-radius:3px 3px 3px 3px!important;\n/*border-top:1px solid rgba(255, 255, 255, 0.3);*/\n-moz-box-shadow: 1px 1px 3px #000;\n-webkit-box-shadow: 1px 1px 3px #000;\nborder-top:1px solid rgba(100,100,100,1);\n\n}\n.entry-content input[type=\"submit\"]{\n	border: solid 1px rgba(68, 68, 68,0.5);\n}\n\n.raindrops-tab-list li,\n#access .children li,\n#access a {\nbackground: -webkit-gradient(linear, left top, left bottom, from(#3a3a3a), to(#111111));\nbackground: -moz-linear-gradient(top,  #3a3a3a,  #111111);\n/*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#3a3a3a\', endColorstr=\'#111111\');*/\ncolor:#d0d0d0;\n\n}\n.ie10 #access{\n    background-image: -ms-linear-gradient(top,  #3a3a3a,  #111111)!important;\n\n}\n.ie10 #access a {\n    background-image: -ms-linear-gradient(top,  #3a3a3a,  #111111);\n}\n.ie10 #access .children li:active >a,\n.ie10 #access li:active >a ,\n.ie10 #access ul ul :active >a{\n    background-image: -ms-linear-gradient(top,  #111111,  #3a3a3a);\n}\n\n.fail-search,\n.raindrops-tab-list li:active,\n#access .children li:active,\n#access li:active,\n#access ul ul :active {\ntop:0;\nbackground: -webkit-gradient(linear, left top, left bottom, from(#111111), to(#3a3a3a));\nbackground: -moz-linear-gradient(top,  #111111,  #3a3a3a);\n/*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#111111\', endColorstr=\'#3a3a3a\');*/\ncolor:#d0d0d0;\n}\n.wp-caption {\n-moz-border-radius: 3px;\n-khtml-border-radius: 3px;\n-webkit-border-radius: 3px;\nborder-radius: 3px;\nbackground: -webkit-gradient(linear, left top, left bottom, from(#3a3a3a), to(#111111));\nbackground: -moz-linear-gradient(top,  #3a3a3a,  #111111);\nfilter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#3a3a3a\', endColorstr=\'#111111\');\n}\n.entry-content blockquote {\nborder-left:solid 6px rgba(68, 68, 68,0.5);\n}\n#header-image p{\ntext-shadow: 2px 2px 2px #000;\n}\n.fail-search,\n#slides .slides_container,\n.raindrops-tab-content,\n.raindrops-tab-list li{\nborder:1px solid rgba(200,200,200,0.3);\n\n}\n/*comment bubble*/\na.raindrops-comment-link {\n}\n.raindrops-comment-link em {\ncolor:#ffffff;background-color:#333333;\n  -moz-border-radius: 0.25em;\n  -webkit-border-radius: 0.25em;\n  border-radius: 0.25em;\n  position: relative;\n}\n.raindrops-comment-link .point {\n  border-left: 0.45em solid rgba(68, 68, 68,0.5);\n  border-bottom: 0.45em solid #FFF; /* IE fix */\n  border-bottom: 0.45em solid rgba(0,0,0,0);\n  overflow: hidden; /* IE fix */\n}\na.raindrops-comment-link:hover {\n}\na.raindrops-comment-link:hover em {\ncolor:#ffffff;\n	background-color:#737373;\n}\na.raindrops-comment-link:hover .point {\nborder-left:1px solid rgba(68, 68, 68,0.5);\n}\n\n\n.color-1 a,\n.color-1{\n  background:#3a3a3a;\n  color:#ffffff;\n}\n.color-2 a,\n.color-2 {\n  background:#333333;\n  color:#ffffff;\n}\n.color-3 a,\n.color-3 {\n  background:#222222;\n  color:#d0d0d0;\n}\n.color-4 a,\n.color-4 {\n  /** Use the base color, two shades darker */\n  background:#111111;\n  /** Use the corresponding foreground color */\n  color:#d0d0d0;\n}\n.color-5 a,\n.color-5 {\n  background:#070707;\n  color:#d0d0d0;\n}\n.color1 a,\n.color1{\n  background:#606060;\n  color:#ffffff;\n}\n.color2 a,\n.color2 {\n  background:#737373;\n  color:#ffffff;\n}\n.color3 a,\n.color3 {\n  background:#a2a2a2;\n  color:#000000;\n}\n.color4 a,\n.color4 {\n  /** Use the base color, two shades darker */\n  background:#d0d0d0;\n  /** Use the corresponding foreground color */\n  color:#222222;\n}\n.color5 a,\n.color5 {\n  background:#ededed;\n  color:#444444;\n}\n.face-1{\n  color:#ffffff;\n}\n.face-2 {\n  color:#ffffff;\n}\n.face-3 {\n  color:#d0d0d0;\n}\n.face-4 {\n  color:#d0d0d0;\n}\n.face-5 {\n  color:#d0d0d0;\n}\n.face1{\n  color:#ffffff;\n}\n.face2 {\n  color:#ffffff;\n}\n.face3 {\n  color:#000000;\n}\n.face4 {\n  color:#222222;\n}\n.face5 {\n  color:#444444;\n}\";s:22:\"raindrops_color_scheme\";s:18:\"raindrops_color_ja\";s:20:\"raindrops_base_color\";s:7:\"#444444\";s:20:\"raindrops_style_type\";s:4:\"dark\";s:22:\"raindrops_header_image\";s:10:\"header.png\";s:22:\"raindrops_footer_image\";s:10:\"footer.png\";s:23:\"raindrops_heading_image\";s:6:\"h2.png\";s:32:\"raindrops_heading_image_position\";s:1:\"0\";s:20:\"raindrops_page_width\";s:4:\"doc3\";s:19:\"raindrops_col_width\";s:2:\"t2\";s:29:\"raindrops_default_fonts_color\";s:0:\"\";s:22:\"raindrops_footer_color\";s:0:\"\";s:28:\"raindrops_show_right_sidebar\";s:4:\"show\";s:37:\"raindrops_right_sidebar_width_percent\";s:2:\"25\";s:27:\"raindrops_show_menu_primary\";s:4:\"show\";s:25:\"raindrops_hyperlink_color\";s:0:\"\";s:32:\"raindrops_accessibility_settings\";s:2:\"no\";s:27:\"raindrops_doc_type_settings\";s:5:\"html5\";}','yes'),(819,'theme_mods_pinboard','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1378000227;s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:10:\"calendar-2\";}s:9:\"sidebar-1\";a:5:{i:0;s:14:\"recent-posts-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";i:3;s:8:\"search-3\";i:4;s:5:\"rss-3\";}s:9:\"sidebar-2\";N;s:9:\"sidebar-3\";N;s:9:\"sidebar-4\";N;s:9:\"sidebar-5\";N;s:9:\"sidebar-6\";N;s:9:\"sidebar-7\";N;s:9:\"sidebar-8\";N;s:9:\"sidebar-9\";N;s:10:\"sidebar-10\";N;}}}','yes'),(825,'theme_mods_fluxipress','a:12:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:0;}s:27:\"fluxipress_background_color\";s:7:\"#8224e3\";s:24:\"fluxipress_postbox_color\";s:7:\"#a261e2\";s:21:\"fluxipress_text_color\";s:7:\"#ffffff\";s:27:\"fluxipress_text_hover_color\";s:7:\"#000000\";s:26:\"fluxipress_highlight_color\";s:7:\"#bc95e2\";s:27:\"fluxipress_display_excerpts\";b:1;s:23:\"fluxipress_display_more\";b:1;s:20:\"fluxipress_more_link\";s:7:\"more…\";s:23:\"fluxipress_display_tags\";b:1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1377999346;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:10:\"calendar-2\";}s:14:\"sidebar-footer\";a:5:{i:0;s:14:\"recent-posts-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";i:3;s:8:\"search-3\";i:4;s:5:\"rss-3\";}}}}','yes'),(1493,'iz-default-fields','a:1:{s:15:\"wa_form_builder\";a:9:{s:5:\"title\";a:6:{s:10:\"grouplabel\";s:5:\"Title\";s:4:\"type\";s:4:\"text\";s:3:\"req\";s:1:\"1\";s:5:\"items\";s:0:\"\";s:6:\"origen\";s:7:\"default\";s:11:\"description\";s:28:\"On screen title of the form.\";}s:11:\"description\";a:6:{s:10:\"grouplabel\";s:11:\"Description\";s:4:\"type\";s:8:\"textarea\";s:3:\"req\";s:1:\"0\";s:5:\"items\";s:0:\"\";s:6:\"origen\";s:7:\"default\";s:11:\"description\";s:34:\"On screen description of the form.\";}s:7:\"mail_to\";a:6:{s:10:\"grouplabel\";s:7:\"Mail To\";s:4:\"type\";s:4:\"text\";s:3:\"req\";s:1:\"0\";s:5:\"items\";s:0:\"\";s:6:\"origen\";s:7:\"default\";s:11:\"description\";s:80:\"Comma-separated list of email addresses to recieve mails when form is submitted.\";}s:25:\"confirmation_mail_subject\";a:6:{s:10:\"grouplabel\";s:25:\"Confirmation Mail Subject\";s:4:\"type\";s:4:\"text\";s:3:\"req\";s:1:\"0\";s:5:\"items\";s:0:\"\";s:6:\"origen\";s:7:\"default\";s:11:\"description\";s:69:\"This is the subject of the mail the specified addresses will receive.\";}s:22:\"confirmation_mail_body\";a:6:{s:10:\"grouplabel\";s:22:\"Confirmation Mail Body\";s:4:\"type\";s:8:\"textarea\";s:3:\"req\";s:1:\"0\";s:5:\"items\";s:0:\"\";s:6:\"origen\";s:7:\"default\";s:11:\"description\";s:218:\"Add HTML or normal text here to be sent to addresses specified in above field (Mail to) after the form is submited.<br /><br />Use shortcode <strong>[form_data]</strong> were mail form entry details are to be inserted.\";}s:12:\"from_address\";a:6:{s:10:\"grouplabel\";s:12:\"From Address\";s:4:\"type\";s:4:\"text\";s:3:\"req\";s:1:\"0\";s:5:\"items\";s:0:\"\";s:6:\"origen\";s:7:\"default\";s:11:\"description\";s:42:\"The address from were the mail origenates.\";}s:9:\"from_name\";a:6:{s:10:\"grouplabel\";s:9:\"From Name\";s:4:\"type\";s:4:\"text\";s:3:\"req\";s:1:\"0\";s:5:\"items\";s:0:\"\";s:6:\"origen\";s:7:\"default\";s:11:\"description\";s:66:\"The name of the person/organization from were the mail origenates.\";}s:30:\"on_screen_confirmation_message\";a:6:{s:10:\"grouplabel\";s:30:\"On Screen Confirmation Message\";s:4:\"type\";s:8:\"textarea\";s:3:\"req\";s:1:\"0\";s:5:\"items\";s:0:\"\";s:6:\"origen\";s:7:\"default\";s:11:\"description\";s:65:\"The on-screen message to be displayed after the form is submited.\";}s:32:\"google_analytics_conversion_code\";a:6:{s:10:\"grouplabel\";s:32:\"Google Analytics Conversion Code\";s:4:\"type\";s:8:\"textarea\";s:3:\"req\";s:1:\"0\";s:5:\"items\";s:0:\"\";s:6:\"origen\";s:7:\"default\";s:11:\"description\";s:95:\"Paste your Google Analytics Coonversion Code here and it will be added after a form submission.\";}}}','yes'),(1494,'iz-modules-base','a:2:{i:0;s:15:\"wa_form_builder\";i:1;s:13:\"not installed\";}','yes'),(1495,'iz-firstrun','a:2:{i:0;s:15:\"wa_form_builder\";i:1;b:1;}','yes'),(1496,'iz-filters','a:1:{s:15:\"wa_form_builder\";a:1:{i:0;s:0:\"\";}}','yes'),(1497,'iz-active-modules','a:1:{s:15:\"wa_form_builder\";a:1:{i:0;s:0:\"\";}}','yes'),(1498,'iz-linked-modules','a:1:{s:15:\"wa_form_builder\";a:1:{i:0;s:0:\"\";}}','yes'),(1499,'iz-module-widgets','a:1:{s:15:\"wa_form_builder\";a:1:{i:0;s:0:\"\";}}','yes'),(1500,'iz-pluggables','a:2:{i:0;s:0:\"\";i:1;s:15:\"wa_form_builder\";}','yes'),(1501,'iz-menus','a:2:{i:0;s:0:\"\";s:15:\"WA Form Builder\";a:2:{s:9:\"menu_page\";a:7:{s:10:\"page_title\";s:15:\"WA Form Builder\";s:10:\"menu_title\";s:15:\"WA Form Builder\";s:10:\"capability\";s:13:\"administrator\";s:9:\"menu_slug\";s:23:\"WA-wa_form_builder-main\";s:8:\"function\";s:23:\"WAFormBuilder_main_page\";s:8:\"icon_url\";s:72:\"https://sofits.ca/wp-content/plugins/wa-form-builder/images/menu_icon.png\";s:9:\"position \";s:0:\"\";}s:13:\"sub_menu_page\";a:3:{s:12:\"Manage Forms\";a:6:{s:11:\"parent_slug\";s:23:\"WA-wa_form_builder-main\";s:10:\"page_title\";s:12:\"Manage Forms\";s:10:\"menu_title\";s:12:\"Manage Forms\";s:10:\"capability\";s:13:\"administrator\";s:9:\"menu_slug\";s:29:\"WA-wa_form_builder-view-forms\";s:8:\"function\";s:29:\"WAFormBuilder_view_forms_page\";}s:13:\"Forms entries\";a:6:{s:11:\"parent_slug\";s:23:\"WA-wa_form_builder-main\";s:10:\"page_title\";s:13:\"Forms entries\";s:10:\"menu_title\";s:13:\"Forms entries\";s:10:\"capability\";s:13:\"administrator\";s:9:\"menu_slug\";s:29:\"WA-wa_form_builder-forms-data\";s:8:\"function\";s:29:\"WAFormBuilder_forms_data_page\";}s:16:\"General Settings\";a:6:{s:11:\"parent_slug\";s:23:\"WA-wa_form_builder-main\";s:10:\"page_title\";s:16:\"General Settings\";s:10:\"menu_title\";s:16:\"General Settings\";s:10:\"capability\";s:13:\"administrator\";s:9:\"menu_slug\";s:33:\"WA-wa_form_builder-forms-settings\";s:8:\"function\";s:27:\"WAFormBuilder_settings_page\";}}}}','yes'),(1502,'iz-ui-positions','a:2:{i:0;s:0:\"\";s:15:\"wa_form_builder\";a:1:{i:0;s:0:\"\";}}','yes'),(1503,'wa-forms-default-settings','a:9:{s:13:\"display_title\";s:3:\"Yes\";s:19:\"display_description\";s:3:\"Yes\";s:14:\"send_user_mail\";s:2:\"No\";s:7:\"mail_to\";s:17:\"jholden@sofits.ca\";s:25:\"confirmation_mail_subject\";s:27:\"S.O.F.I.T.S Form Submission\";s:22:\"confirmation_mail_body\";s:76:\"Thank you for connecting with us. We will respond to you shortly.[form_data]\";s:12:\"from_address\";s:17:\"jholden@sofits.ca\";s:9:\"from_name\";s:11:\"S.O.F.I.T.S\";s:30:\"on_screen_confirmation_message\";s:65:\"Thank you for connecting with us. We will respond to you shortly.\";}','yes'),(1504,'iz-forms-custom-fields','a:1:{s:4:\"Name\";a:9:{s:10:\"grouplabel\";s:4:\"Name\";s:14:\"old_grouplabel\";s:0:\"\";s:4:\"type\";s:8:\"dropdown\";s:8:\"required\";s:8:\"required\";s:10:\"visibility\";N;s:6:\"format\";N;s:5:\"items\";a:20:{i:0;s:6:\"Yvonne\";i:1;s:8:\"Susan R.\";i:2;s:9:\"Susan O-N\";i:3;s:6:\"Sharon\";i:4;s:6:\"Sandra\";i:5;s:4:\"Rosy\";i:6;s:3:\"Pat\";i:7;s:7:\"Michele\";i:8;s:5:\"Meryl\";i:9;s:8:\"Mary Lou\";i:10;s:4:\"Marg\";i:11;s:11:\"Margaret K.\";i:12;s:5:\"Kathy\";i:13;s:5:\"Julie\";i:14;s:5:\"Janey\";i:15;s:3:\"Ila\";i:16;s:5:\"Carol\";i:17;s:4:\"Cary\";i:18;s:3:\"Bea\";i:19;s:4:\"Anne\";}s:9:\"old_items\";a:20:{i:0;s:6:\"Yvonne\";i:1;s:8:\"Susan R.\";i:2;s:9:\"Susan O-N\";i:3;s:6:\"Sharon\";i:4;s:6:\"Sandra\";i:5;s:4:\"Rosy\";i:6;s:3:\"Pat\";i:7;s:7:\"Michele\";i:8;s:5:\"Meryl\";i:9;s:8:\"Mary Lou\";i:10;s:4:\"Marg\";i:11;s:11:\"Margaret K.\";i:12;s:5:\"Kathy\";i:13;s:5:\"Julie\";i:14;s:5:\"Janey\";i:15;s:3:\"Ila\";i:16;s:5:\"Carol\";i:17;s:4:\"Cary\";i:18;s:3:\"Bea\";i:19;s:4:\"Anne\";}s:14:\"to_be_archived\";N;}}','yes'),(1517,'dbem_events_page','416','yes'),(1518,'dbem_locations_page','418','yes'),(1519,'dbem_categories_page','419','yes'),(1520,'dbem_tags_page','420','yes'),(1521,'dbem_my_bookings_page','421','yes'),(1522,'dbem_hello_to_user','1','yes'),(1523,'dbem_time_format','g:i a','yes'),(1524,'dbem_date_format','d/m/Y','yes'),(1525,'dbem_date_format_js','dd/mm/yy','yes'),(1526,'dbem_dates_separator',' - ','yes'),(1527,'dbem_times_separator',' - ','yes'),(1528,'dbem_default_category','0','yes'),(1529,'dbem_default_location','0','yes'),(1530,'dbem_events_default_orderby','event_start_date,event_start_time,event_name','yes'),(1531,'dbem_events_default_order','ASC','yes'),(1532,'dbem_events_default_limit','10','yes'),(1533,'dbem_serach_form_submit','Search','yes'),(1534,'dbem_search_form_advanced','1','yes'),(1535,'dbem_search_form_advanced_hidden','1','yes'),(1536,'dbem_search_form_advanced_show','Show Advanced Search','yes'),(1537,'dbem_search_form_advanced_hide','Hide Advanced Search','yes'),(1538,'dbem_search_form_text','1','yes'),(1539,'dbem_search_form_text_label','Search','yes'),(1540,'dbem_search_form_geo','1','yes'),(1541,'dbem_search_form_geo_label','Near...','yes'),(1542,'dbem_search_form_dates','1','yes'),(1543,'dbem_search_form_dates_label','Dates','yes'),(1544,'dbem_search_form_dates_separator','and','yes'),(1545,'dbem_search_form_categories','1','yes'),(1546,'dbem_search_form_categories_label','All Categories','yes'),(1547,'dbem_search_form_category_label','Category','yes'),(1548,'dbem_search_form_countries','1','yes'),(1549,'dbem_search_form_countries_label','All Countries','yes'),(1550,'dbem_search_form_country_label','Country','yes'),(1551,'dbem_search_form_regions','1','yes'),(1552,'dbem_search_form_regions_label','All Regions','yes'),(1553,'dbem_search_form_region_label','Region','yes'),(1554,'dbem_search_form_states','1','yes'),(1555,'dbem_search_form_states_label','All States','yes'),(1556,'dbem_search_form_state_label','State/County','yes'),(1557,'dbem_search_form_towns','0','yes'),(1558,'dbem_search_form_towns_label','All Cities/Towns','yes'),(1559,'dbem_search_form_town_label','City/Town','yes'),(1560,'dbem_events_form_editor','1','yes'),(1561,'dbem_events_form_reshow','1','yes'),(1562,'dbem_events_form_result_success','You have successfully submitted your event, which will be published pending approval.','yes'),(1563,'dbem_events_form_result_success_updated','You have successfully updated your event, which will be republished pending approval.','yes'),(1564,'dbem_events_anonymous_submissions','0','yes'),(1565,'dbem_events_anonymous_user','0','yes'),(1566,'dbem_events_anonymous_result_success','You have successfully submitted your event, which will be published pending approval.','yes'),(1567,'dbem_event_submitted_email_admin','','yes'),(1568,'dbem_event_submitted_email_subject','Submitted Event Awaiting Approval','yes'),(1569,'dbem_event_submitted_email_body','A new event has been submitted by #_CONTACTNAME.\n\rName : #_EVENTNAME \n\rDate : #_EVENTDATES \n\rTime : #_EVENTTIMES \n\rPlease visit https://sofits.ca/wp-admin/post.php?action=edit&post=#_EVENTPOSTID to review this event for approval.\n\r\n\r-------------------------------\n\rPowered by Events Manager - https://wp-events-plugin.com','yes'),(1570,'dbem_event_resubmitted_email_subject','Re-Submitted Event Awaiting Approval','yes'),(1571,'dbem_event_resubmitted_email_body','A previously published event has been modified by #_CONTACTNAME, and this event is now unpublished and pending your approval.\n\rName : #_EVENTNAME \n\rDate : #_EVENTDATES \n\rTime : #_EVENTTIMES \n\rPlease visit https://sofits.ca/wp-admin/post.php?action=edit&post=#_EVENTPOSTID to review this event for approval.\n\r\n\r-------------------------------\n\rPowered by Events Manager - https://wp-events-plugin.com','yes'),(1572,'dbem_event_published_email_subject','Published Event - #_EVENTNAME','yes'),(1573,'dbem_event_published_email_body','A new event has been published by #_CONTACTNAME.\n\rName : #_EVENTNAME \n\rDate : #_EVENTDATES \n\rTime : #_EVENTTIMES \n\rEdit this event - https://sofits.ca/wp-admin/post.php?action=edit&post=#_EVENTPOSTID \n\r View this event - #_EVENTURL\n\r\n\r-------------------------------\n\rPowered by Events Manager - https://wp-events-plugin.com','yes'),(1574,'dbem_event_approved_email_subject','Event Approved - #_EVENTNAME','yes'),(1575,'dbem_event_approved_email_body','Dear #_CONTACTNAME, \n\rYour event #_EVENTNAME on #_EVENTDATES has been approved.\n\rYou can view your event here: #_EVENTURL\n\r\n\r-------------------------------\n\rPowered by Events Manager - https://wp-events-plugin.com','yes'),(1576,'dbem_event_reapproved_email_subject','Event Approved - #_EVENTNAME','yes'),(1577,'dbem_event_reapproved_email_body','Dear #_CONTACTNAME, \n\rYour event #_EVENTNAME on #_EVENTDATES has been approved.\n\rYou can view your event here: #_EVENTURL\n\r\n\r-------------------------------\n\rPowered by Events Manager - https://wp-events-plugin.com','yes'),(1578,'dbem_events_page_title','Events','yes'),(1579,'dbem_events_page_scope','future','yes'),(1580,'dbem_events_page_search_form','1','yes'),(1581,'dbem_event_list_item_format_header','<table cellpadding=\"0\" cellspacing=\"0\" class=\"events-table\" >\r\n    <thead>\r\n        <tr>\r\n			<th class=\"event-time\" width=\"150\">Date/Time</th>\r\n			<th class=\"event-description\" width=\"*\">Event</th>\r\n		</tr>\r\n   	</thead>\r\n    <tbody>','yes'),(1582,'dbem_event_list_item_format','<tr>\r\n			<td>\r\n                #_EVENTDATES<br/>\r\n                #_EVENTTIMES\r\n            </td>\r\n            <td>\r\n                #_EVENTLINK\r\n                {has_location}<br/><i>#_LOCATIONNAME, #_LOCATIONTOWN #_LOCATIONSTATE</i>{/has_location}\r\n            </td>\r\n        </tr>','yes'),(1583,'dbem_event_list_item_format_footer','</tbody></table>','yes'),(1584,'dbem_display_calendar_in_events_page','0','yes'),(1585,'dbem_single_event_format','<div style=\"float:right; margin:0px 0px 15px 15px;\">#_LOCATIONMAP</div>\r\n<p>\r\n	<strong>Date/Time</strong><br/>\r\n	Date(s) - #_EVENTDATES<br /><i>#_EVENTTIMES</i>\r\n</p>\r\n{has_location}\r\n<p>\r\n	<strong>Location</strong><br/>\r\n	#_LOCATIONLINK\r\n</p>\r\n{/has_location}\r\n<p>\r\n	<strong>Categories</strong>\r\n	#_CATEGORIES\r\n</p>\r\n<br style=\"clear:both\" />\r\n#_EVENTNOTES\r\n{has_bookings}\r\n<h3>Bookings</h3>\r\n#_BOOKINGFORM\r\n{/has_bookings}','yes'),(1586,'dbem_event_page_title_format','#_EVENTNAME','yes'),(1587,'dbem_event_all_day_message','All Day','yes'),(1588,'dbem_no_events_message','No Events','yes'),(1589,'dbem_locations_default_orderby','location_name','yes'),(1590,'dbem_locations_default_order','ASC','yes'),(1591,'dbem_locations_default_limit','10','yes'),(1592,'dbem_locations_page_title','Event Locations','yes'),(1593,'dbem_locations_page_search_form','1','yes'),(1594,'dbem_no_locations_message','No Locations','yes'),(1595,'dbem_location_default_country','US','yes'),(1596,'dbem_location_list_item_format_header','<ul class=\"em-locations-list\">','yes'),(1597,'dbem_location_list_item_format','<li>#_LOCATIONLINK<ul><li>#_LOCATIONFULLLINE</li></ul></li>','yes'),(1598,'dbem_location_list_item_format_footer','</ul>','yes'),(1599,'dbem_location_page_title_format','#_LOCATIONNAME','yes'),(1600,'dbem_single_location_format','<div style=\"float:right; margin:0px 0px 15px 15px;\">#_LOCATIONMAP</div>\r\n<p>\r\n	<strong>Address</strong><br/>\r\n	#_LOCATIONADDRESS<br/>\r\n	#_LOCATIONTOWN<br/>\r\n	#_LOCATIONSTATE<br/>\r\n	#_LOCATIONREGION<br/>\r\n	#_LOCATIONPOSTCODE<br/>\r\n	#_LOCATIONCOUNTRY\r\n</p>\r\n<br style=\"clear:both\" />\r\n#_LOCATIONNOTES\r\n\r\n<h3>Upcoming Events</h3>\r\n<p>#_LOCATIONNEXTEVENTS</p>','yes'),(1601,'dbem_location_no_events_message','<li>No events in this location</li>','yes'),(1602,'dbem_location_event_list_item_header_format','<ul>','yes'),(1603,'dbem_location_event_list_item_format','<li>#_EVENTLINK - #_EVENTDATES - #_EVENTTIMES</li>','yes'),(1604,'dbem_location_event_list_item_footer_format','</ul>','yes'),(1605,'dbem_location_event_list_limit','20','yes'),(1606,'dbem_location_event_single_format','#_EVENTLINK - #_EVENTDATES - #_EVENTTIMES','yes'),(1607,'dbem_location_no_event_message','No events in this location','yes'),(1608,'dbem_categories_default_limit','10','yes'),(1609,'dbem_categories_default_orderby','name','yes'),(1610,'dbem_categories_default_order','ASC','yes'),(1611,'dbem_categories_list_item_format_header','<ul class=\"em-categories-list\">','yes'),(1612,'dbem_categories_list_item_format','<li>#_CATEGORYLINK</li>','yes'),(1613,'dbem_categories_list_item_format_footer','</ul>','yes'),(1614,'dbem_no_categories_message','No Categories','yes'),(1615,'dbem_category_page_title_format','#_CATEGORYNAME','yes'),(1616,'dbem_category_page_format','#_CATEGORYNOTES<h3>Upcoming Events</h3>#_CATEGORYNEXTEVENTS','yes'),(1617,'dbem_category_no_events_message','<li>No events in this category</li>','yes'),(1618,'dbem_category_event_list_item_header_format','<ul>','yes'),(1619,'dbem_category_event_list_item_format','<li>#_EVENTLINK - #_EVENTDATES - #_EVENTTIMES</li>','yes'),(1620,'dbem_category_event_list_item_footer_format','</ul>','yes'),(1621,'dbem_category_event_list_limit','20','yes'),(1622,'dbem_category_event_single_format','#_EVENTLINK - #_EVENTDATES - #_EVENTTIMES','yes'),(1623,'dbem_category_no_event_message','No events in this category','yes'),(1624,'dbem_tags_default_limit','10','yes'),(1625,'dbem_tags_default_orderby','name','yes'),(1626,'dbem_tags_default_order','ASC','yes'),(1627,'dbem_tags_list_item_format_header','<ul class=\"em-tags-list\">','yes'),(1628,'dbem_tags_list_item_format','<li>#_TAGLINK</li>','yes'),(1629,'dbem_tags_list_item_format_footer','</ul>','yes'),(1630,'dbem_no_tags_message','No Tags','yes'),(1631,'dbem_tag_page_title_format','#_TAGNAME','yes'),(1632,'dbem_tag_page_format','<h3>Upcoming Events</h3>#_TAGNEXTEVENTS','yes'),(1633,'dbem_tag_no_events_message','<li>No events with this tag</li>','yes'),(1634,'dbem_tag_event_list_item_header_format','<ul>','yes'),(1635,'dbem_tag_event_list_item_format','<li>#_EVENTLINK - #_EVENTDATES - #_EVENTTIMES</li>','yes'),(1636,'dbem_tag_event_list_item_footer_format','</ul>','yes'),(1637,'dbem_tag_event_single_format','#_EVENTLINK - #_EVENTDATES - #_EVENTTIMES','yes'),(1638,'dbem_tag_no_event_message','No events with this tag','yes'),(1639,'dbem_tag_event_list_limit','20','yes'),(1640,'dbem_rss_limit','0','yes'),(1641,'dbem_rss_scope','future','yes'),(1642,'dbem_rss_main_title','S.O.F.I.T.S - Events','yes'),(1643,'dbem_rss_main_description','Skiers over Fifty (in Training). - Events','yes'),(1644,'dbem_rss_description_format','#_EVENTDATES - #_EVENTTIMES <br/>#_LOCATIONNAME <br/>#_LOCATIONADDRESS <br/>#_LOCATIONTOWN','yes'),(1645,'dbem_rss_title_format','#_EVENTNAME','yes'),(1646,'em_rss_pubdate','Fri, 20 Sep 2013 18:42:34 +0000','yes'),(1647,'dbem_ical_limit','0','yes'),(1648,'dbem_ical_scope','future','yes'),(1649,'dbem_ical_description_format','#_EVENTNAME - #_LOCATIONNAME - #_EVENTDATES - #_EVENTTIMES','yes'),(1650,'dbem_ical_real_description_format','#_EVENTEXCERPT','yes'),(1651,'dbem_ical_location_format','#_LOCATION','yes'),(1652,'dbem_gmap_is_active','1','yes'),(1653,'dbem_map_default_width','400px','yes'),(1654,'dbem_map_default_height','300px','yes'),(1655,'dbem_location_baloon_format','<strong>#_LOCATIONNAME</strong><br/>#_LOCATIONADDRESS - #_LOCATIONTOWN<br/><a href=\"#_LOCATIONPAGEURL\">Events</a>','yes'),(1656,'dbem_map_text_format','<strong>#_LOCATIONNAME</strong><p>#_LOCATIONADDRESS</p><p>#_LOCATIONTOWN</p>','yes'),(1657,'dbem_email_disable_registration','0','yes'),(1658,'dbem_rsvp_mail_port','465','yes'),(1659,'dbem_smtp_host','localhost','yes'),(1660,'dbem_mail_sender_name','','yes'),(1661,'dbem_rsvp_mail_send_method','mail','yes'),(1662,'dbem_rsvp_mail_SMTPAuth','1','yes'),(1663,'dbem_smtp_html','1','yes'),(1664,'dbem_smtp_html_br','1','yes'),(1665,'dbem_image_max_width','700','yes'),(1666,'dbem_image_max_height','700','yes'),(1667,'dbem_image_min_width','50','yes'),(1668,'dbem_image_min_height','50','yes'),(1669,'dbem_image_max_size','204800','yes'),(1670,'dbem_list_date_title','Events - #j #M #y','yes'),(1671,'dbem_full_calendar_month_format','M Y','yes'),(1672,'dbem_full_calendar_event_format','<li>#_EVENTLINK</li>','yes'),(1673,'dbem_full_calendar_long_events','0','yes'),(1674,'dbem_full_calendar_initials_length','0','yes'),(1675,'dbem_full_calendar_abbreviated_weekdays','1','yes'),(1676,'dbem_display_calendar_day_single_yes','1','yes'),(1677,'dbem_small_calendar_month_format','M Y','yes'),(1678,'dbem_small_calendar_event_title_format','#_EVENTNAME','yes'),(1679,'dbem_small_calendar_event_title_separator',', ','yes'),(1680,'dbem_small_calendar_initials_length','1','yes'),(1681,'dbem_small_calendar_abbreviated_weekdays','','yes'),(1682,'dbem_display_calendar_order','ASC','yes'),(1683,'dbem_display_calendar_orderby','event_name,event_start_time','yes'),(1684,'dbem_display_calendar_events_limit','3','yes'),(1685,'dbem_display_calendar_events_limit_msg','more...','yes'),(1686,'dbem_calendar_direct_links','1','yes'),(1687,'dbem_require_location','0','yes'),(1688,'dbem_locations_enabled','1','yes'),(1689,'dbem_use_select_for_locations','0','yes'),(1690,'dbem_attributes_enabled','1','yes'),(1691,'dbem_recurrence_enabled','1','yes'),(1692,'dbem_rsvp_enabled','1','yes'),(1693,'dbem_categories_enabled','1','yes'),(1694,'dbem_tags_enabled','1','yes'),(1695,'dbem_placeholders_custom','','yes'),(1696,'dbem_location_attributes_enabled','1','yes'),(1697,'dbem_location_placeholders_custom','','yes'),(1698,'dbem_bookings_registration_disable','0','yes'),(1699,'dbem_bookings_registration_disable_user_emails','0','yes'),(1700,'dbem_bookings_registration_user','','yes'),(1701,'dbem_bookings_approval','1','yes'),(1702,'dbem_bookings_approval_reserved','0','yes'),(1703,'dbem_bookings_approval_overbooking','0','yes'),(1704,'dbem_bookings_double','0','yes'),(1705,'dbem_bookings_user_cancellation','1','yes'),(1706,'dbem_bookings_currency','USD','yes'),(1707,'dbem_bookings_currency_decimal_point','.','yes'),(1708,'dbem_bookings_currency_thousands_sep',',','yes'),(1709,'dbem_bookings_currency_format','@#','yes'),(1710,'dbem_bookings_tax','0','yes'),(1711,'dbem_bookings_tax_auto_add','0','yes'),(1712,'dbem_bookings_submit_button','Send your booking','yes'),(1713,'dbem_bookings_login_form','1','yes'),(1714,'dbem_bookings_anonymous','1','yes'),(1715,'dbem_bookings_form_max','20','yes'),(1716,'dbem_bookings_form_msg_disabled','Online bookings are not available for this event.','yes'),(1717,'dbem_bookings_form_msg_closed','Bookings are closed for this event.','yes'),(1718,'dbem_bookings_form_msg_full','This event is fully booked.','yes'),(1719,'dbem_bookings_form_msg_attending','You are currently attending this event.','yes'),(1720,'dbem_bookings_form_msg_bookings_link','Manage my bookings','yes'),(1721,'dbem_booking_warning_cancel','Are you sure you want to cancel your booking?','yes'),(1722,'dbem_booking_feedback_cancelled','Booking Cancelled','yes'),(1723,'dbem_booking_feedback_pending','Booking successful, pending confirmation (you will also receive an email once confirmed).','yes'),(1724,'dbem_booking_feedback','Booking successful.','yes'),(1725,'dbem_booking_feedback_full','Booking cannot be made, not enough spaces available!','yes'),(1726,'dbem_booking_feedback_log_in','You must log in or register to make a booking.','yes'),(1727,'dbem_booking_feedback_nomail','However, there were some problems whilst sending confirmation emails to you and/or the event contact person. You may want to contact them directly and letting them know of this error.','yes'),(1728,'dbem_booking_feedback_error','Booking could not be created:','yes'),(1729,'dbem_booking_feedback_email_exists','This email already exists in our system, please log in to register to proceed with your booking.','yes'),(1730,'dbem_booking_feedback_new_user','A new user account has been created for you. Please check your email for access details.','yes'),(1731,'dbem_booking_feedback_reg_error','There was a problem creating a user account, please contact a website administrator.','yes'),(1732,'dbem_booking_feedback_already_booked','You already have booked a seat at this event.','yes'),(1733,'dbem_booking_feedback_min_space','You must request at least one space to book an event.','yes'),(1734,'dbem_booking_feedback_spaces_limit','You cannot book more than %d spaces for this event.','yes'),(1735,'dbem_booking_button_msg_book','Book Now','yes'),(1736,'dbem_booking_button_msg_booking','Booking...','yes'),(1737,'dbem_booking_button_msg_booked','Booking Submitted','yes'),(1738,'dbem_booking_button_msg_already_booked','Already Booked','yes'),(1739,'dbem_booking_button_msg_error','Booking Error. Try again?','yes'),(1740,'dbem_booking_button_msg_full','Sold Out','yes'),(1741,'dbem_booking_button_msg_cancel','Cancel','yes'),(1742,'dbem_booking_button_msg_canceling','Canceling...','yes'),(1743,'dbem_booking_button_msg_cancelled','Cancelled','yes'),(1744,'dbem_booking_button_msg_cancel_error','Cancellation Error. Try again?','yes'),(1745,'dbem_bookings_notify_admin','0','yes'),(1746,'dbem_bookings_contact_email','1','yes'),(1747,'dbem_bookings_contact_email_subject','New Booking','yes'),(1748,'dbem_bookings_contact_email_body','#_BOOKINGNAME (#_BOOKINGEMAIL) will attend #_EVENTNAME on #_EVENTDATES. He wants to reserve #_BOOKINGSPACES spaces.\n\r Now there are #_BOOKEDSPACES spaces reserved, #_AVAILABLESPACES are still available.\n\rYours faithfully,\n\rEvents Manager - https://wp-events-plugin.com\n\r\n\r-------------------------------\n\rPowered by Events Manager - https://wp-events-plugin.com','yes'),(1749,'dbem_contactperson_email_cancelled_subject','Booking Cancelled','yes'),(1750,'dbem_contactperson_email_cancelled_body','#_BOOKINGNAME (#_BOOKINGEMAIL) cancelled his booking at #_EVENTNAME on #_EVENTDATES. He wanted to reserve #_BOOKINGSPACES spaces.\n\r Now there are #_BOOKEDSPACES spaces reserved, #_AVAILABLESPACES are still available.\n\rYours faithfully,\n\rEvents Manager - https://wp-events-plugin.com\n\r\n\r-------------------------------\n\rPowered by Events Manager - https://wp-events-plugin.com','yes'),(1751,'dbem_bookings_email_pending_subject','Booking Pending','yes'),(1752,'dbem_bookings_email_pending_body','Dear #_BOOKINGNAME, \n\rYou have requested #_BOOKINGSPACES space/spaces for #_EVENTNAME.\n\rWhen : #_EVENTDATES @ #_EVENTTIMES\n\rWhere : #_LOCATIONNAME - #_LOCATIONFULLLINE\n\rYour booking is currently pending approval by our administrators. Once approved you will receive an automatic confirmation.\n\rYours faithfully,\n\r#_CONTACTNAME\n\r\n\r-------------------------------\n\rPowered by Events Manager - https://wp-events-plugin.com','yes'),(1753,'dbem_bookings_email_rejected_subject','Booking Rejected','yes'),(1754,'dbem_bookings_email_rejected_body','Dear #_BOOKINGNAME, \n\rYour requested booking for #_BOOKINGSPACES spaces at #_EVENTNAME on #_EVENTDATES has been rejected.\n\rYours faithfully,\n\r#_CONTACTNAME\n\r\n\r-------------------------------\n\rPowered by Events Manager - https://wp-events-plugin.com','yes'),(1755,'dbem_bookings_email_confirmed_subject','Booking Confirmed','yes'),(1756,'dbem_bookings_email_confirmed_body','Dear #_BOOKINGNAME, \n\rYou have successfully reserved #_BOOKINGSPACES space/spaces for #_EVENTNAME.\n\rWhen : #_EVENTDATES @ #_EVENTTIMES\n\rWhere : #_LOCATIONNAME - #_LOCATIONFULLLINE\n\rYours faithfully,\n\r#_CONTACTNAME\n\r\n\r-------------------------------\n\rPowered by Events Manager - https://wp-events-plugin.com','yes'),(1757,'dbem_bookings_email_cancelled_subject','Booking Cancelled','yes'),(1758,'dbem_bookings_email_cancelled_body','Dear #_BOOKINGNAME, \n\rYour requested booking for #_BOOKINGSPACES spaces at #_EVENTNAME on #_EVENTDATES has been cancelled.\n\rYours faithfully,\n\r#_CONTACTNAME\n\r\n\r-------------------------------\n\rPowered by Events Manager - https://wp-events-plugin.com','yes'),(1759,'dbem_bookings_email_registration_subject','[S.O.F.I.T.S] Your username and password','yes'),(1760,'dbem_bookings_email_registration_body','You have successfully created an account at S.O.F.I.T.S\n\rYou can log into our site here : https://sofits.ca/wp-login.php\n\rUsername : %username%\n\rPassword : %password%\n\rTo view your bookings, please visit https://sofits.ca/events/my-bookings/ after logging in.','yes'),(1761,'dbem_bookings_tickets_orderby','ticket_price DESC, ticket_name ASC','yes'),(1762,'dbem_bookings_tickets_priority','0','yes'),(1763,'dbem_bookings_tickets_show_unavailable','0','yes'),(1764,'dbem_bookings_tickets_show_loggedout','1','yes'),(1765,'dbem_bookings_tickets_single','0','yes'),(1766,'dbem_bookings_tickets_single_form','0','yes'),(1767,'dbem_bookings_my_title_format','My Bookings','yes'),(1768,'dbem_bp_events_list_format_header','<ul class=\"em-events-list\">','yes'),(1769,'dbem_bp_events_list_format','<li>#_EVENTLINK - #_EVENTDATES - #_EVENTTIMES<ul><li>#_LOCATIONLINK - #_LOCATIONADDRESS, #_LOCATIONTOWN</li></ul></li>','yes'),(1770,'dbem_bp_events_list_format_footer','</ul>','yes'),(1771,'dbem_bp_events_list_none_format','<p class=\"em-events-list\">No Events</p>','yes'),(1772,'dbem_css_editors','1','yes'),(1773,'dbem_css_rsvp','1','yes'),(1774,'dbem_css_rsvpadmin','1','yes'),(1775,'dbem_css_evlist','1','yes'),(1776,'dbem_css_search','1','yes'),(1777,'dbem_css_loclist','1','yes'),(1778,'dbem_css_catlist','1','yes'),(1779,'dbem_css_taglist','1','yes'),(1780,'dbem_cp_events_slug','events','yes'),(1781,'dbem_cp_locations_slug','locations','yes'),(1782,'dbem_taxonomy_category_slug','events/categories','yes'),(1783,'dbem_taxonomy_tag_slug','events/tags','yes'),(1784,'dbem_cp_events_template','','yes'),(1785,'dbem_cp_events_body_class','','yes'),(1786,'dbem_cp_events_post_class','','yes'),(1787,'dbem_cp_events_formats','1','yes'),(1788,'dbem_cp_events_has_archive','1','yes'),(1789,'dbem_events_default_archive_orderby','_start_ts','yes'),(1790,'dbem_events_default_archive_order','ASC','yes'),(1791,'dbem_events_archive_scope','past','yes'),(1792,'dbem_cp_events_archive_formats','1','yes'),(1793,'dbem_cp_events_search_results','0','yes'),(1794,'dbem_cp_events_custom_fields','0','yes'),(1795,'dbem_cp_events_comments','1','yes'),(1796,'dbem_cp_locations_template','','yes'),(1797,'dbem_cp_locations_body_class','','yes'),(1798,'dbem_cp_locations_post_class','','yes'),(1799,'dbem_cp_locations_formats','1','yes'),(1800,'dbem_cp_locations_has_archive','1','yes'),(1801,'dbem_locations_default_archive_orderby','title','yes'),(1802,'dbem_locations_default_archive_order','ASC','yes'),(1803,'dbem_cp_locations_archive_formats','1','yes'),(1804,'dbem_cp_locations_search_results','0','yes'),(1805,'dbem_cp_locations_custom_fields','0','yes'),(1806,'dbem_cp_locations_comments','1','yes'),(1807,'dbem_cp_categories_formats','1','yes'),(1808,'dbem_categories_default_archive_orderby','event_start_date,event_start_time,event_name','yes'),(1809,'dbem_categories_default_archive_order','ASC','yes'),(1810,'dbem_cp_tags_formats','1','yes'),(1811,'dbem_tags_default_archive_orderby','event_start_date,event_start_time,event_name','yes'),(1812,'dbem_tags_default_archive_order','ASC','yes'),(1813,'dbem_credits','1','yes'),(1814,'dbem_version','5.51','yes'),(1817,'em_last_modified','1379702955','yes'),(1821,'hc_rse_db_version','1.4','yes'),(1822,'hc_rse_date_format','jS M Y','yes'),(1823,'hc_rse_time_format','H:i','yes'),(1824,'hc_rse_first_run','woot','yes'),(1837,'yop_poll_options','a:95:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";N;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";}','yes'),(1838,'yop_poll_optin_box_modal_options','a:4:{s:4:\"show\";s:2:\"no\";s:14:\"last_show_date\";s:19:\"2013-09-20 20:20:41\";s:16:\"modal_had_submit\";s:2:\"no\";s:18:\"sidebar_had_submit\";s:2:\"no\";}','yes'),(1839,'yop_poll_pro_options','a:4:{s:7:\"pro_key\";s:0:\"\";s:11:\"pro_api_key\";s:0:\"\";s:18:\"pro_api_server_url\";s:27:\"https://www.yop-poll.com/pro\";s:8:\"pro_user\";s:2:\"no\";}','yes'),(1840,'yop_poll_first_install_date','2013-09-20 20:20:24','yes'),(1841,'yop_poll_admin_notices_donate','no','yes'),(1861,'poll_template_voteheader','<p style=\"text-align: center;\"><strong>%POLL_QUESTION%</strong></p><div id=\"polls-%POLL_ID%-ans\" class=\"wp-polls-ans\"><ul class=\"wp-polls-ul\">','yes'),(1862,'poll_template_votebody','<li><input type=\"%POLL_CHECKBOX_RADIO%\" id=\"poll-answer-%POLL_ANSWER_ID%\" name=\"poll_%POLL_ID%\" value=\"%POLL_ANSWER_ID%\" /> <label for=\"poll-answer-%POLL_ANSWER_ID%\">%POLL_ANSWER%</label></li>','yes'),(1863,'poll_template_votefooter','</ul><p style=\"text-align: center;\"><input type=\"button\" name=\"vote\" value=\"   Vote   \" class=\"Buttons\" onclick=\"poll_vote(%POLL_ID%);\" /></p><p style=\"text-align: center;\"><a href=\"#ViewPollResults\" onclick=\"poll_result(%POLL_ID%); return false;\" title=\"View Results Of This Poll\">View Results</a></p></div>','yes'),(1864,'poll_template_resultheader','<p style=\"text-align: center;\"><strong>%POLL_QUESTION%</strong></p><div id=\"polls-%POLL_ID%-ans\" class=\"wp-polls-ans\"><ul class=\"wp-polls-ul\">','yes'),(1865,'poll_template_resultbody','<li>%POLL_ANSWER% <small>(%POLL_ANSWER_PERCENTAGE%%, %POLL_ANSWER_VOTES% Votes)</small><div class=\"pollbar\" style=\"width: %POLL_ANSWER_IMAGEWIDTH%%;\" title=\"%POLL_ANSWER_TEXT% (%POLL_ANSWER_PERCENTAGE%% | %POLL_ANSWER_VOTES% Votes)\"></div></li>','yes'),(1866,'poll_template_resultbody2','<li><strong><i>%POLL_ANSWER% <small>(%POLL_ANSWER_PERCENTAGE%%, %POLL_ANSWER_VOTES% Votes)</small></i></strong><div class=\"pollbar\" style=\"width: %POLL_ANSWER_IMAGEWIDTH%%;\" title=\"You Have Voted For This Choice - %POLL_ANSWER_TEXT% (%POLL_ANSWER_PERCENTAGE%% | %POLL_ANSWER_VOTES% Votes)\"></div></li>','yes'),(1867,'poll_template_resultfooter','</ul><p style=\"text-align: center;\">Total Voters: <strong>%POLL_TOTALVOTERS%</strong></p></div>','yes'),(1868,'poll_template_resultfooter2','</ul><p style=\"text-align: center;\">Total Voters: <strong>%POLL_TOTALVOTERS%</strong></p><p style=\"text-align: center;\"><a href=\"#VotePoll\" onclick=\"poll_booth(%POLL_ID%); return false;\" title=\"Vote For This Poll\">Vote</a></p></div>','yes'),(1869,'poll_template_disable','Sorry, there are no polls available at the moment.','yes'),(1870,'poll_template_error','An error has occurred when processing your poll.','yes'),(1871,'poll_currentpoll','0','yes'),(1872,'poll_latestpoll','2','yes'),(1873,'poll_archive_perpage','5','yes'),(1874,'poll_ans_sortby','polla_aid','yes'),(1875,'poll_ans_sortorder','asc','yes'),(1876,'poll_ans_result_sortby','polla_votes','yes'),(1877,'poll_ans_result_sortorder','desc','yes'),(1878,'poll_logging_method','4','yes'),(1879,'poll_allowtovote','2','yes'),(1880,'poll_archive_url','https://sofits.ca/pollsarchive','yes'),(1881,'poll_bar','a:4:{s:5:\"style\";s:7:\"default\";s:10:\"background\";s:6:\"d8e1eb\";s:6:\"border\";s:6:\"c8c8c8\";s:6:\"height\";i:8;}','yes'),(1882,'poll_close','1','yes'),(1883,'poll_ajax_style','a:2:{s:7:\"loading\";i:1;s:6:\"fading\";i:1;}','yes'),(1884,'poll_template_pollarchivelink','<ul><li><a href=\"%POLL_ARCHIVE_URL%\">Polls Archive</a></li></ul>','yes'),(1885,'poll_archive_displaypoll','2','yes'),(1886,'poll_template_pollarchiveheader','','yes'),(1887,'poll_template_pollarchivefooter','<p>Start Date: %POLL_START_DATE%<br />End Date: %POLL_END_DATE%</p>','yes'),(1888,'poll_cookielog_expiry','0','yes'),(1889,'poll_template_pollarchivepagingheader','','yes'),(1890,'poll_template_pollarchivepagingfooter','','yes'),(1891,'poll_archive_show','0','yes'),(2030,'wptreehouse_badges','a:3:{s:20:\"wptreehouse_username\";s:2:\"JH\";s:19:\"wptreehouse_profile\";N;s:12:\"last_updated\";i:1379954105;}','yes'),(2069,'cb_aggregation_aggregator','a:2:{s:19:\"aggregation_enabled\";b:1;s:14:\"excluded_blogs\";a:0:{}}','yes'),(2070,'cb_disablecomments','a:1:{s:17:\"comments_disabled\";b:0;}','yes'),(2071,'cb_aggregation_sitewidetags','a:1:{s:11:\"tag_page_id\";N;}','yes'),(2072,'cb_plugin_pages','a:4:{i:0;i:522;i:1;i:524;i:2;i:526;i:3;i:528;}','yes'),(2073,'cb_youtubeclassplaylist','a:2:{s:10:\"info_queue\";a:0:{}s:16:\"playlist_page_id\";N;}','yes'),(2074,'cb_aggregation_sitewideposts','a:4:{s:18:\"root_excerpt_words\";i:50;s:15:\"root_show_posts\";b:1;s:21:\"root_strip_formatting\";b:1;s:16:\"root_use_excerpt\";b:1;}','yes'),(2075,'cb_sw_cache_keys','a:2:{s:38:\"cb_aggregation_sitewideposts_all_posts\";b:1;s:44:\"cb_aggregation_sitewidecomments_comments_all\";b:1;}','yes'),(2078,'cb_version','0.5.1','yes'),(2082,'_site_transient_timeout_cb_aggregation_sitewidecomments_comments','1380043125','yes'),(2083,'_site_transient_cb_aggregation_sitewidecomments_comments_all','a:0:{}','yes'),(2084,'cb_wordcounter','a:1:{s:21:\"required_weekly_words\";i:0;}','yes'),(2167,'groups_options','a:2:{s:7:\"general\";a:1:{s:22:\"read_post_capabilities\";a:1:{i:0;s:16:\"groups_read_post\";}}i:1;a:1:{s:17:\"groups_group_name\";s:2:\"me\";}}','no'),(2168,'groups_plugin_version','1.3.14','yes'),(3438,'embedplusopt_alloptions','a:7:{s:15:\"enhance_youtube\";i:1;s:10:\"show_react\";i:0;s:7:\"auto_hd\";i:1;s:9:\"sweetspot\";i:1;s:3:\"emb\";i:1;s:7:\"version\";s:3:\"3.6\";s:3:\"pro\";s:0:\"\";}','yes'),(3820,'fvwpflowplayer','a:46:{s:3:\"tgt\";s:15:\"backgroundColor\";s:15:\"backgroundColor\";s:7:\"#333333\";s:13:\"timelineColor\";s:7:\"#666666\";s:6:\"canvas\";s:7:\"#000000\";s:13:\"progressColor\";s:7:\"#00a7c8\";s:11:\"sliderColor\";s:7:\"#ffffff\";s:11:\"bufferColor\";s:7:\"#eeeeee\";s:11:\"buttonColor\";s:7:\"#ffffff\";s:9:\"timeColor\";s:7:\"#eeeeee\";s:15:\"buttonOverColor\";s:7:\"#ffffff\";s:13:\"durationColor\";s:7:\"#eeeeee\";s:9:\"hasBorder\";s:5:\"false\";s:11:\"borderColor\";s:7:\"#666666\";s:11:\"adTextColor\";s:7:\"#888888\";s:12:\"adLinksColor\";s:7:\"#ff3333\";s:9:\"font-face\";s:26:\"Tahoma, Geneva, sans-serif\";s:12:\"allowuploads\";s:4:\"true\";s:9:\"interface\";a:11:{s:8:\"playlist\";s:5:\"false\";s:5:\"popup\";s:4:\"true\";s:8:\"redirect\";s:5:\"false\";s:8:\"autoplay\";s:5:\"false\";s:4:\"loop\";s:5:\"false\";s:9:\"splashend\";s:5:\"false\";s:5:\"embed\";s:5:\"false\";s:9:\"subtitles\";s:5:\"false\";s:3:\"ads\";s:5:\"false\";s:6:\"mobile\";s:5:\"false\";s:5:\"align\";s:5:\"false\";}s:8:\"autoplay\";s:5:\"false\";s:11:\"auto_buffer\";s:5:\"false\";s:8:\"popupbox\";s:5:\"false\";s:15:\"allowfullscreen\";s:4:\"true\";s:7:\"scaling\";s:4:\"true\";s:16:\"disableembedding\";s:5:\"false\";s:13:\"postthumbnail\";s:5:\"false\";s:12:\"parse_commas\";s:5:\"false\";s:6:\"engine\";s:5:\"false\";s:10:\"fixed_size\";s:5:\"false\";s:20:\"disable_videochecker\";s:5:\"false\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"400\";s:15:\"googleanalytics\";s:5:\"false\";s:3:\"key\";s:5:\"false\";s:4:\"logo\";s:5:\"false\";s:4:\"rtmp\";s:5:\"false\";s:23:\"fv-wp-flowplayer-submit\";s:14:\"SaveAllChanges\";s:13:\"amazon_expire\";s:1:\"5\";s:13:\"amazon_bucket\";a:1:{i:0;s:0:\"\";}s:10:\"amazon_key\";a:1:{i:0;s:0:\"\";}s:13:\"amazon_secret\";a:1:{i:0;s:0:\"\";}s:2:\"ad\";s:0:\"\";s:8:\"ad_width\";s:0:\"\";s:9:\"ad_height\";s:0:\"\";s:6:\"ad_css\";s:160:\".wpfp_custom_ad { position: absolute; bottom: 10%; z-index: 2; width: 100%; }\r\n.wpfp_custom_ad_content { background: white; margin: 0 auto; position: relative }\";s:20:\"closedpostboxesnonce\";s:10:\"92efa88438\";s:20:\"meta-box-order-nonce\";s:10:\"6b46989acc\";}','yes'),(3822,'fvwpflowplayer_core_ver','5.4.4','yes'),(4003,'ftp_credentials','a:3:{s:8:\"hostname\";s:13:\"www.sofits.ca\";s:8:\"username\";s:6:\"sofits\";s:15:\"connection_type\";s:3:\"ftp\";}','yes'),(5912,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"musicianonskis@gmail.com\";s:7:\"version\";s:5:\"5.5.3\";s:9:\"timestamp\";i:1604130898;}','no'),(8704,'WPLANG','','yes'),(16587,'yop_poll_optin_box_modal_options_yop','a:5:{s:4:\"show\";s:2:\"no\";s:14:\"last_show_date\";s:19:\"2013-09-20 20:20:41\";s:16:\"modal_had_submit\";s:3:\"yes\";s:18:\"sidebar_had_submit\";s:3:\"yes\";s:11:\"modal_email\";s:19:\"pennye@sympatico.ca\";}','yes'),(16588,'yop_poll_archive_order','a:8:{i:0;i:60;i:1;i:61;i:2;i:64;i:3;i:65;i:4;i:66;i:5;i:67;i:6;i:68;i:7;i:0;}','yes'),(20361,'finished_splitting_shared_terms','1','yes'),(20369,'category_children','a:0:{}','yes'),(20370,'_split_terms','a:2:{i:8;a:1:{s:8:\"post_tag\";i:22;}i:20;a:1:{s:8:\"post_tag\";i:23;}}','yes'),(20622,'widget_akismet_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(20623,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(20624,'widget_links','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(20625,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(20626,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(20628,'widget_yop_poll_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(20630,'FontSettings','a:4:{s:18:\"fontPluginSettings\";s:574:\"{\"presets\":[{\"name\":\"PICK AN ELEMENT\",\"fontid\":\"\",\"fontName\":\"\",\"selector\":\"PICK AN ELEMENT NOW - or type CSS selector(advanced)\",\"styles\":{\"fontSize\":\"30\",\"color\":\"#444\"}}],\"settingFields\":[{\"type\":\"text\",\"label\":\"Selector\",\"name\":\"selector\",\"settingType\":\"general\",\"settingName\":\"selector\",\"extendWith\":\"selectorPicker\"},{\"type\":\"text\",\"label\":\"Font size\",\"name\":\"font-size\",\"settingType\":\"css\",\"settingName\":\"fontSize\",\"extendWith\":\"slider\",\"unit\":\"px\"},{\"type\":\"text\",\"label\":\"Color\",\"name\":\"color\",\"settingType\":\"css\",\"settingName\":\"color\",\"extendWith\":\"colorPicker\"}]}\";s:16:\"fontGeneratedCSS\";s:109:\"PICK AN ELEMENT NOW - or type CSS selector(advanced) {\nfont-size: 30px !important;\ncolor: #444 !important;\n}\n\";s:17:\"fontPluginVersion\";s:3:\"7.5\";s:13:\"upgradeNotice\";b:0;}','yes'),(20631,'plugin_error','Activation result: ','yes'),(20633,'afc_general_settings','a:2:{s:15:\"show_editor_btn\";s:3:\"yes\";s:17:\"use_webfontloader\";s:2:\"no\";}','yes'),(20634,'afc_db_vertion','1.0','yes'),(23891,'akismet_spam_count','51','yes'),(24046,'site_icon','0','yes'),(24047,'medium_large_size_w','768','yes'),(24048,'medium_large_size_h','0','yes'),(30101,'text-color','#e500a8','yes'),(30102,'text-bg-color','','yes'),(31595,'fresh_site','0','yes'),(36271,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(36272,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(36273,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(36274,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(41494,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(44824,'classic-editor-replace','block','yes'),(49450,'akismet_comment_form_privacy_notice','hide','yes'),(49451,'akismet_strictness','1','yes'),(49452,'wp_page_for_privacy_policy','0','yes'),(49453,'show_comments_cookies_opt_in','0','yes'),(54960,'tribe_events_calendar_options','a:45:{s:14:\"schema-version\";s:3:\"3.9\";s:27:\"recurring_events_are_hidden\";s:6:\"hidden\";s:21:\"previous_ecp_versions\";a:1:{i:0;s:1:\"0\";}s:18:\"latest_ecp_version\";s:5:\"4.8.2\";s:39:\"last-update-message-the-events-calendar\";s:5:\"4.8.2\";s:11:\"donate-link\";b:1;s:12:\"postsPerPage\";s:2:\"10\";s:17:\"liveFiltersUpdate\";b:1;s:20:\"toggle_blocks_editor\";b:1;s:33:\"toggle_blocks_editor_hidden_field\";b:0;s:12:\"showComments\";b:1;s:29:\"disable_metabox_custom_fields\";b:1;s:20:\"showEventsInMainLoop\";b:1;s:10:\"eventsSlug\";s:10:\"happenings\";s:15:\"singleEventSlug\";s:5:\"event\";s:14:\"multiDayCutoff\";s:5:\"00:00\";s:21:\"defaultCurrencySymbol\";s:1:\"$\";s:23:\"reverseCurrencyPosition\";b:0;s:17:\"trash-past-events\";s:0:\"\";s:18:\"delete-past-events\";s:0:\"\";s:15:\"embedGoogleMaps\";b:1;s:19:\"embedGoogleMapsZoom\";s:2:\"10\";s:11:\"debugEvents\";b:0;s:26:\"tribe_events_timezone_mode\";s:5:\"event\";s:32:\"tribe_events_timezones_show_zone\";b:0;s:13:\"earliest_date\";s:19:\"2019-04-26 09:30:00\";s:21:\"earliest_date_markers\";a:1:{i:0;s:4:\"3280\";}s:11:\"latest_date\";s:19:\"2019-04-26 13:30:00\";s:19:\"latest_date_markers\";a:1:{i:0;s:4:\"3280\";}s:16:\"stylesheetOption\";s:4:\"full\";s:19:\"tribeEventsTemplate\";s:0:\"\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:20:\"tribeDisableTribeBar\";b:0;s:16:\"monthEventAmount\";s:1:\"2\";s:23:\"enable_month_view_cache\";b:1;s:18:\"dateWithYearFormat\";s:6:\"F j, Y\";s:21:\"dateWithoutYearFormat\";s:3:\"F j\";s:18:\"monthAndYearFormat\";s:3:\"F Y\";s:17:\"dateTimeSeparator\";s:3:\" @ \";s:18:\"timeRangeSeparator\";s:3:\" - \";s:16:\"datepickerFormat\";s:1:\"0\";s:21:\"tribeEventsBeforeHTML\";s:0:\"\";s:20:\"tribeEventsAfterHTML\";s:0:\"\";s:22:\"google_maps_js_api_key\";s:39:\"AIzaSyDNsicAsP6-VuGtAb1O9riI3oc_NOb7IOU\";s:10:\"viewOption\";s:5:\"month\";}','yes'),(54961,'widget_tribe-events-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(54962,'tribe_last_save_post','1567301837','yes'),(54988,'calendarjsupdated','0','no'),(54989,'jswidgetupdated','0','no'),(55050,'tribe_events_cat_children','a:0:{}','yes'),(55089,'external_updates-event-aggregator','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1555249398;s:14:\"checkedVersion\";N;s:6:\"update\";O:19:\"Tribe__PUE__Utility\":13:{s:2:\"id\";i:0;s:6:\"plugin\";N;s:4:\"slug\";N;s:7:\"version\";s:3:\"1.0\";s:8:\"homepage\";N;s:12:\"download_url\";N;s:8:\"sections\";O:8:\"stdClass\":1:{s:9:\"changelog\";s:0:\"\";}s:14:\"upgrade_notice\";N;s:13:\"custom_update\";N;s:11:\"api_invalid\";b:1;s:19:\"api_invalid_message\";s:214:\"<p>You are using %plugin_name% but your license key is invalid. Visit the Events Calendar website to check your <a href=\"httpss://theeventscalendar.com/license-keys/?utm_medium=pue&utm_campaign=in-app\">licenses</a>.\";s:26:\"api_inline_invalid_message\";s:196:\"<p>Your %plugin_name% license key is invalid. Visit the Events Calendar website to check your <a href=\"httpss://theeventscalendar.com/license-keys/?utm_medium=pue&utm_campaign=in-app\">licenses</a>.\";s:13:\"license_error\";s:203:\"<p>Your Event Aggregator license key is invalid. Visit the Events Calendar website to check your <a href=\"httpss://theeventscalendar.com/license-keys/?utm_medium=pue&amp;utm_campaign=in-app\">licenses</a>.\";}}','no'),(55090,'tribe_pue_key_notices','a:0:{}','yes'),(55237,'gd_calendar_default_calendar','0','yes'),(55238,'gd_calendar_default_event','0','yes'),(55239,'gd_calendar_default_venue','0','yes'),(55240,'gd_calendar_default_organizer','0','yes'),(55242,'gd_calendar_version','1.0.9','yes'),(55243,'gd_calendar_plugin_installed','2019-04-14 16:40:10','yes'),(55244,'widget_calendarwidgetcontroller','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(55247,'ecwd_old_events','0','yes'),(55248,'ecwd_default_calendar','3306','yes'),(55249,'ecwd_settings_events','a:17:{s:20:\"event_count_per_cell\";s:1:\"3\";s:17:\"category_and_tags\";s:1:\"1\";s:25:\"events_archive_page_order\";s:1:\"0\";s:36:\"change_events_archive_page_post_date\";s:1:\"1\";s:25:\"event_default_description\";s:36:\"No additional detail for this event.\";s:11:\"events_date\";s:1:\"1\";s:11:\"long_events\";s:1:\"1\";s:20:\"related_events_count\";s:1:\"1\";s:15:\"events_in_popup\";s:1:\"1\";s:11:\"events_slug\";s:6:\"events\";s:10:\"event_slug\";s:8:\"activity\";s:14:\"event_comments\";s:1:\"1\";s:18:\"show_events_detail\";s:1:\"1\";s:14:\"events_new_tab\";s:1:\"1\";s:14:\"related_events\";s:1:\"1\";s:15:\"hide_old_events\";s:1:\"0\";s:19:\"use_custom_template\";s:1:\"0\";}','yes'),(55250,'ecwd_version','1.1.27','yes'),(55251,'ecwd_scripts_key','5cb3634cdc603','yes'),(55252,'ecwd_settings_general','a:15:{s:9:\"time_zone\";s:16:\"America/New_York\";s:11:\"date_format\";s:5:\"Y-m-d\";s:18:\"custom_date_format\";s:6:\"F j, Y\";s:11:\"time_format\";s:3:\"H:i\";s:9:\"time_type\";s:0:\"\";s:16:\"list_date_format\";s:5:\"Y-m-d\";s:23:\"custom_list_date_format\";s:6:\"F j, Y\";s:11:\"week_starts\";s:1:\"1\";s:14:\"enable_rewrite\";s:1:\"1\";s:9:\"cpt_order\";s:2:\"ID\";s:12:\"social_icons\";s:1:\"1\";s:15:\"cat_title_color\";s:1:\"1\";s:16:\"move_first_image\";s:1:\"1\";s:28:\"event_description_max_length\";s:3:\"150\";s:13:\"save_settings\";i:1;}','yes'),(55253,'widget_ecwd_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(55254,'ecwd_slug_changed','0','yes'),(55255,'ecwd_single_slug','activity','yes'),(55256,'ecwd_slug','events','yes'),(55257,'ecwd_cpt_setup','1','yes'),(55258,'ecwd_settings','','yes'),(55259,'ecwd_admin_notice','a:1:{s:15:\"two_week_review\";a:2:{s:5:\"start\";s:9:\"4/28/2019\";s:3:\"int\";i:14;}}','yes'),(55262,'ecwd_subscribe_done','1','yes'),(55433,'sp_calendar_version','1.5.62','yes'),(55434,'widget_spider_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(55435,'widget_upcoming_events','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(55436,'sp_calendar_admin_notice','a:1:{s:15:\"two_week_review\";a:3:{s:5:\"start\";s:10:\"11/29/2019\";s:3:\"int\";i:14;s:9:\"dismissed\";i:0;}}','yes'),(55468,'classic-editor-allow-users','allow','yes'),(55485,'ect-v','1.3.2','yes'),(55486,'ect-type','FREE','yes'),(55487,'ect-installDate','2019-04-15 10:18:15','yes'),(55488,'ect-ratingDiv','no','yes'),(58222,'recovery_keys','a:0:{}','yes'),(67092,'rewrite_rules','a:97:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=3317&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(67101,'recovery_mode_email_last_sent','1567302379','yes'),(67529,'widget_eme_list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(67530,'widget_eme_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(68877,'digital-climate-strike-wp','a:10:{s:26:\"show_digital_strike_widget\";s:1:\"1\";s:8:\"language\";s:2:\"en\";s:22:\"cookie_expiration_days\";s:1:\"1\";s:11:\"iframe_host\";s:39:\"httpss://assets.digitalclimatestrike.net\";s:24:\"disable_google_analytics\";i:1;s:18:\"always_show_widget\";i:0;s:22:\"force_full_page_widget\";i:0;s:37:\"show_close_button_on_full_page_widget\";i:1;s:25:\"footer_display_start_date\";s:10:\"2019-09-23\";s:28:\"full_page_display_start_date\";s:10:\"2019-09-27\";}','yes'),(70060,'wd_seo_notice_status','1','no'),(72051,'admin_email_lifespan','1612205751','yes'),(72081,'styleguide_character_set','latin','yes'),(84915,'_transient_health-check-site-status-result','{\"good\":\"9\",\"recommended\":\"10\",\"critical\":\"1\"}','yes'),(86999,'disallowed_keys','','no'),(87000,'comment_previously_approved','1','yes'),(87001,'auto_plugin_theme_update_emails','a:0:{}','no'),(87002,'finished_updating_comment_type','1','yes'),(87005,'can_compress_scripts','0','no'),(87010,'action_scheduler_hybrid_store_demarkation','3559','yes'),(87011,'schema-ActionScheduler_StoreSchema','3.0.1600540112','yes'),(87012,'schema-ActionScheduler_LoggerSchema','2.0.1600540112','yes'),(87013,'wpforms_version','1.6.2.3','yes'),(87014,'wpforms_version_lite','1.6.2.3','yes'),(87015,'wpforms_activated','a:1:{s:4:\"lite\";i:1600540112;}','yes'),(87018,'action_scheduler_lock_async-request-runner','1600540424','yes'),(87019,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(87023,'wpforms_review','a:2:{s:4:\"time\";i:1600540113;s:9:\"dismissed\";b:0;}','yes'),(87026,'wpforms_notifications','a:4:{s:6:\"update\";i:1600540173;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(88903,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"httpss://downloads.wordpress.org/release/wordpress-5.6.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"httpss://downloads.wordpress.org/release/wordpress-5.6.zip\";s:10:\"no_content\";s:68:\"httpss://downloads.wordpress.org/release/wordpress-5.6-no-content.zip\";s:11:\"new_bundled\";s:69:\"httpss://downloads.wordpress.org/release/wordpress-5.6-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"5.6\";s:7:\"version\";s:3:\"5.6\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"httpss://downloads.wordpress.org/release/wordpress-5.6.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"httpss://downloads.wordpress.org/release/wordpress-5.6.zip\";s:10:\"no_content\";s:68:\"httpss://downloads.wordpress.org/release/wordpress-5.6-no-content.zip\";s:11:\"new_bundled\";s:69:\"httpss://downloads.wordpress.org/release/wordpress-5.6-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"5.6\";s:7:\"version\";s:3:\"5.6\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1610820199;s:15:\"version_checked\";s:5:\"5.5.3\";s:12:\"translations\";a:0:{}}','no'),(89613,'auto_update_plugins','a:6:{i:0;s:19:\"akismet/akismet.php\";i:1;s:33:\"classic-editor/classic-editor.php\";i:2;s:25:\"duplicator/duplicator.php\";i:3;s:20:\"styleguide/index.php\";i:4;s:24:\"inpost-gallery/index.php\";i:5;s:45:\"text-selection-color/text-selection-color.php\";}','no'),(89614,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1610820200;s:7:\"checked\";a:1:{s:8:\"curation\";s:3:\"1.1\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:8:\"curation\";a:6:{s:5:\"theme\";s:8:\"curation\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:38:\"httpss://wordpress.org/themes/curation/\";s:7:\"package\";s:54:\"httpss://downloads.wordpress.org/theme/curation.1.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}}','no'),(90153,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1610820200;s:7:\"checked\";a:6:{s:19:\"akismet/akismet.php\";s:5:\"4.1.8\";s:33:\"classic-editor/classic-editor.php\";s:3:\"1.6\";s:25:\"duplicator/duplicator.php\";s:8:\"1.3.40.1\";s:24:\"inpost-gallery/index.php\";s:5:\"2.1.4\";s:20:\"styleguide/index.php\";s:3:\"1.8\";s:45:\"text-selection-color/text-selection-color.php\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:6:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{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:\"4.1.8\";s:3:\"url\";s:38:\"httpss://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"httpss://downloads.wordpress.org/plugin/akismet.4.1.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"httpss://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"httpss://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"httpss://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"httpss://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:61:\"httpss://downloads.wordpress.org/plugin/classic-editor.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"httpss://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"httpss://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"httpss://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"httpss://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/duplicator\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:8:\"1.3.40.1\";s:3:\"url\";s:41:\"httpss://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:62:\"httpss://downloads.wordpress.org/plugin/duplicator.1.3.40.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"httpss://ps.w.org/duplicator/assets/icon-256x256.png?rev=2083921\";s:2:\"1x\";s:63:\"httpss://ps.w.org/duplicator/assets/icon-128x128.png?rev=2083921\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"httpss://ps.w.org/duplicator/assets/banner-772x250.png?rev=2085472\";}s:11:\"banners_rtl\";a:0:{}}s:24:\"inpost-gallery/index.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/inpost-gallery\";s:4:\"slug\";s:14:\"inpost-gallery\";s:6:\"plugin\";s:24:\"inpost-gallery/index.php\";s:11:\"new_version\";s:5:\"2.1.4\";s:3:\"url\";s:45:\"httpss://wordpress.org/plugins/inpost-gallery/\";s:7:\"package\";s:57:\"httpss://downloads.wordpress.org/plugin/inpost-gallery.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"httpss://ps.w.org/inpost-gallery/assets/icon-256x256.png?rev=1485855\";s:2:\"1x\";s:67:\"httpss://ps.w.org/inpost-gallery/assets/icon-128x128.png?rev=1485854\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"httpss://ps.w.org/inpost-gallery/assets/banner-772x250.png?rev=1485849\";}s:11:\"banners_rtl\";a:0:{}}s:20:\"styleguide/index.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/styleguide\";s:4:\"slug\";s:10:\"styleguide\";s:6:\"plugin\";s:20:\"styleguide/index.php\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:41:\"httpss://wordpress.org/plugins/styleguide/\";s:7:\"package\";s:53:\"httpss://downloads.wordpress.org/plugin/styleguide.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:63:\"httpss://ps.w.org/styleguide/assets/icon-128x128.png?rev=2149042\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"httpss://ps.w.org/styleguide/assets/banner-1544x500.png?rev=2149042\";s:2:\"1x\";s:65:\"httpss://ps.w.org/styleguide/assets/banner-772x250.png?rev=2149042\";}s:11:\"banners_rtl\";a:0:{}}s:45:\"text-selection-color/text-selection-color.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/text-selection-color\";s:4:\"slug\";s:20:\"text-selection-color\";s:6:\"plugin\";s:45:\"text-selection-color/text-selection-color.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:51:\"httpss://wordpress.org/plugins/text-selection-color/\";s:7:\"package\";s:67:\"httpss://downloads.wordpress.org/plugin/text-selection-color.1.6.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"httpss://s.w.org/plugins/geopattern-icon/text-selection-color.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}}}','no'),(90154,'_site_transient_timeout_php_check_a5907c2ea4d6fbd7e531b3aa7734f0e4','1611413247','no'),(90155,'_site_transient_php_check_a5907c2ea4d6fbd7e531b3aa7734f0e4','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(90156,'_transient_timeout_feed_270966b53b809ea7a2b880ee470f19e1','1610852098','no'),(90157,'_transient_feed_270966b53b809ea7a2b880ee470f19e1','a:3:{s:3:\"url\";s:17:\"https://sofits.ca/\";s:8:\"feed_url\";s:23:\"httpss://sofits.ca/feed/\";s:5:\"build\";s:14:\"20201105205514\";}','no'),(90158,'_transient_timeout_feed_mod_270966b53b809ea7a2b880ee470f19e1','1610852098','no'),(90159,'_transient_feed_mod_270966b53b809ea7a2b880ee470f19e1','1610808898','no'),(90160,'_transient_timeout_feed_bc02571af3984e40823b69b5389b6168','1610852098','no'),(90161,'_transient_feed_bc02571af3984e40823b69b5389b6168','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:28:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"S.O.F.I.T.S\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"httpss://sofits.ca\";s: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:32:\"Skiers over Fifty (in Training).\";s: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:\"Mon, 04 Jan 2016 15:59:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:30:\"httpss://wordpress.org/?v=5.5.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:\"item\";a:3:{i:0;a:6:{s:4:\"data\";s:46:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n		\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"FRIDAY TRAINING JANUARY 8, 2016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"httpss://sofits.ca/2016/01/04/on-snow-training-january-2016/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 04 Jan 2016 15:18: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:12:\"Ski Training\";s: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:13:\"Weekly Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://sofits.ca/?p=2354\";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:306:\"&#160; FRIDAY TRAINING:   This week is a little bit different, so please read it carefully!  Note that there is a choice of classic or skate, and that the classic has an earlier start option for those who can make it.  Please choose either classic or skate, but not both.   When you arrive at [&#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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jo-Ann Holden\";s: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:62:\"\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:29:\"Discount at Greg Christie’s\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://sofits.ca/2014/11/21/discount-at-greg-christies/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"httpss://sofits.ca/2014/11/21/discount-at-greg-christies/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Nov 2014 21:11: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"equipment\";s: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:4:\"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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://sofits.ca/?p=1665\";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:321:\"For the month of November Greg Christie is offering a 20% discount to Sofits members, as well as  Julbo Sniper special pricing. In order to get the 20% discount on ski equipment, members must bring in the 20% discount flyer to the shop.  This discount is only valid for the month of November!!! UPDATE:  This [&#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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jo-Ann Holden\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"https://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"httpss://sofits.ca/2014/11/21/discount-at-greg-christies/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"https://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:59:\"\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:16:\"SOME SOFIT STATS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://sofits.ca/2014/09/27/sofit-stats/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"httpss://sofits.ca/2014/09/27/sofit-stats/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 28 Sep 2014 01:38: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://sofits.ca/?p=1516\";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:219:\"57% of Sofits indicate that classic skiing is &#8220;Their Thing&#8221;. 37% mix skate and classic equally. 29% of Sofits ski  5-10 k on an average ski outing, 63% ski 10-20 k 6% ski 20-30 k &#160; &#160; &#160; &#160;\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jo-Ann Holden\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"https://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"httpss://sofits.ca/2014/09/27/sofit-stats/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"https://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"https://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:23:\"httpss://sofits.ca/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:\"https://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	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:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:10:{s:13:\"last-modified\";s:29:\"Sun, 15 Mar 2020 23:18:52 GMT\";s:4:\"etag\";s:34:\"\"609a5a64f03bcdcedb76e1638c3d466e\"\";s:4:\"link\";s:54:\"<httpss://sofits.ca/wp-json/>; rel=\"httpss://api.w.org/\"\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:14:\"content-length\";s:4:\"1274\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:4:\"date\";s:29:\"Sat, 16 Jan 2021 14:54:58 GMT\";s:6:\"server\";s:9:\"LiteSpeed\";s:7:\"alt-svc\";s:170:\"quic=\":443\"; ma=2592000; v=\"43,46\", h3-Q043=\":443\"; ma=2592000, h3-Q046=\":443\"; ma=2592000, h3-Q050=\":443\"; ma=2592000, h3-25=\":443\"; ma=2592000, h3-27=\":443\"; ma=2592000\";}}s:5:\"build\";s:14:\"20201105205514\";}','no'),(90162,'_transient_timeout_feed_mod_bc02571af3984e40823b69b5389b6168','1610852098','no'),(90163,'_transient_feed_mod_bc02571af3984e40823b69b5389b6168','1610808898','no'),(90194,'_site_transient_timeout_theme_roots','1610822000','no'),(90195,'_site_transient_theme_roots','a:1:{s:8:\"curation\";s:7:\"/themes\";}','no'),(90196,'_site_transient_timeout_browser_2c129f86f872c5672a380bd7ea7a2cad','1611425036','no'),(90197,'_site_transient_browser_2c129f86f872c5672a380bd7ea7a2cad','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"84.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:32:\"httpss://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"https://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"httpss://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(90198,'_site_transient_timeout_community-events-47bb4ecc553147e1b317d8dd87d2245e','1610863440','no'),(90199,'_site_transient_community-events-47bb4ecc553147e1b317d8dd87d2245e','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"117.96.216.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:42:\"Discussion group: Custom CSS in the Editor\";s:3:\"url\";s:68:\"httpss://www.meetup.com/learn-wordpress-discussions/events/275746097/\";s:6:\"meetup\";s:27:\"Learn WordPress Discussions\";s:10:\"meetup_url\";s:51:\"httpss://www.meetup.com/learn-wordpress-discussions/\";s:4:\"date\";s:19:\"2021-01-19 01:00:00\";s:8:\"end_date\";s:19:\"2021-01-19 02:00:00\";s:20:\"start_unix_timestamp\";i:1611046800;s:18:\"end_unix_timestamp\";i:1611050400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:37.7799987792970028976924368180334568023681640625;s:9:\"longitude\";d:-122.419998168950002082056016661226749420166015625;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:23:\"WordCamp India (Online)\";s:3:\"url\";s:32:\"httpss://india.wordcamp.org/2021/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2021-01-30 00:00:00\";s:8:\"end_date\";s:19:\"2021-02-14 00:00:00\";s:20:\"start_unix_timestamp\";i:1611945000;s:18:\"end_unix_timestamp\";i:1613241000;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:20.593683999999999656438376405276358127593994140625;s:9:\"longitude\";d:78.9628799999999984038367983885109424591064453125;}}}}','no'),(90200,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1610863441','no'),(90201,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','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:27:\"News –  – 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"httpss://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:\"Fri, 15 Jan 2021 21:06: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: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:\"httpss://wordpress.org/?v=5.7-alpha-49963\";s:7:\"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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: December 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://wordpress.org/news/2021/01/the-month-in-wordpress-december-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Jan 2021 10:55:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:\"httpss://wordpress.org/news/?p=9508\";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:333:\"We bid goodbye to 2020 in style with the release of WordPress 5.6 and the launch of Learn WordPress. But these weren’t the only exciting updates from WordPress in December. Read on to learn more! WordPress 5.6 is here The latest major WordPress release, version 5.6 “Simone”, came out on December 8. The release ships [&#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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s: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:\"https://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11612:\"\n<p>We bid goodbye to 2020 in style with the release of WordPress 5.6 and the launch of Learn WordPress. But these weren’t the only exciting updates from WordPress in December. Read on to learn more!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.6 is here</h2>\n\n\n\n<p>The latest major WordPress release,<a href=\"httpss://wordpress.org/news/2020/12/simone/\"> version 5.6</a> “Simone”, came out on December 8. The release ships with a new default theme called <a href=\"httpss://wordpress.org/themes/twentytwentyone/\">Twenty Twenty One</a>. It offers a host of features, including:</p>\n\n\n\n<ul><li>Greater layout flexibility</li><li>More block patterns</li><li>Video captioning support</li><li>Auto-updates</li><li>Beta-compatibility for PHP 8.0</li><li>Application password support for the REST API</li><li>Updates to jQuery</li></ul>\n\n\n\n<p>In addition, WordPress 5.6 is now available in 55 languages. You can find more information about the release in the <a href=\"httpss://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">field guide</a>, and you can update to the latest version directly from your WordPress dashboard or by <a href=\"httpss://wordpress.org/download/\">downloading</a> it directly from WordPress.org. A total of 605 people hailing from 57 different countries contributed to the development of WordPress 5.6. <a href=\'httpss://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a> has <a href=\"httpss://jeanbaptisteaudras.com/en/2020/12/wordpress-5-6-core-stats-contributions-by-country-company/\">compiled many more stats like that</a>, showing what a tremendous group effort this was—they’re well worth a read!</p>\n\n\n\n<p>Want to contribute to upcoming WordPress releases? Join the WordPress <a href=\"httpss://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel on the <a href=\"httpss://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"httpss://make.wordpress.org/core/\">Core team blog</a> to learn the <a href=\"httpss://make.wordpress.org/core/2020/12/21/wordpress-5-7-planning-roundup/\">latest on WordPress 5.7</a>, which is <a href=\"httpss://wordpress.org/about/roadmap/\">slated to be out by March 9, 2021</a>. The Core team hosts weekly chats on Wednesdays at <a href=\"httpss://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 a.m.</a> and <a href=\"httpss://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 p.m.</a> UTC.</p>\n\n\n\n<h2>Watch the State of the Word 2020 recording</h2>\n\n\n\n<p><a href=\"httpss://wordpress.org/news/\">State of the Word 2020</a>, the annual keynote address delivered by WordPress co-founder Matt Mullenweg, was streamed online for the first time on December 17. It was followed by a live Q&amp;A from community members all across the world. You can find the stream recording on <a href=\"httpss://www.youtube.com/watch?v=QI3qCoiuG3w\">YouTube</a>, <a href=\"httpss://www.facebook.com/WordPress/videos/1281447442248369\">Facebook</a>, and <a href=\"httpss://twitter.com/i/broadcasts/1dRKZNvnrmdKB\">Twitter</a>. The <a href=\"httpss://wordpress.tv/2020/12/17/matt-mullenweg-2020-state-of-the-word/\">State of the Word</a> video and the <a href=\"httpss://wordpress.tv/2020/12/17/matt-mullenweg-2020-state-of-the-word-qa/\">Q&amp;A session</a> are also available on WordPress.tv.&nbsp;</p>\n\n\n\n<h2>Learn WordPress has launched</h2>\n\n\n\n<p>Learn WordPress, a new free, on-demand WordPress learning resource, launched officially on December 15. It offers <a href=\"httpss://learn.wordpress.org/workshops/\">workshops</a>, <a href=\"httpss://learn.wordpress.org/lesson-plans/\">lesson plans</a>, quizzes, and <a href=\"httpss://learn.wordpress.org/courses/\">courses</a> for anyone interested in publishing with, building for, or contributing to WordPress. WordPress enthusiasts can also <a href=\"httpss://www.meetup.com/learn-wordpress-discussions/\">participate in discussion groups</a> focused on specific topics to learn with and from each other.</p>\n\n\n\n<p>Want to participate in Learn WordPress? <a href=\"httpss://learn.wordpress.org/contribute/\">Here are four ways you can do so</a>! Additionally, contributors have <a href=\"httpss://make.wordpress.org/training/2020/12/03/learn-wordpress-blue-sky-thinking/\">launched a discussion</a> on the future of <a href=\"httpss://learn.wordpress.org/\">Learn WordPress</a>—feel free to share your thoughts in the comments. To help promote Learn WordPress, check out the <a href=\"httpss://make.wordpress.org/marketing/\">Marketing Team</a>’s <a href=\"httpss://make.wordpress.org/marketing/2020/12/09/help-us-promote-learn-wordpress/\">materials</a>, which detail a <a href=\"httpss://make.wordpress.org/marketing/2020/12/09/help-us-promote-learn-wordpress/\">range of fun and creative ways</a> to share this new resource.</p>\n\n\n\n<h2>Give feedback on the Full Site Editing project</h2>\n\n\n\n<p>Contributor teams have kicked off the <a href=\"httpss://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">Full Site Editing (FSE) outreach program</a> for anyone who is building or maintaining a WordPress site so that they can give feedback on the upcoming <a href=\"httpss://make.wordpress.org/design/handbook/focuses/full-site-editing/\">FSE feature</a> that will be part of Gutenberg Phase 2. Your feedback will go a long way in improving FSE user flows. To participate, <a href=\"httpss://make.wordpress.org/test/2020/12/23/fse-program-testing-call-1-template-editing/\">check out the initial testing call</a> on the <a href=\"httpss://make.wordpress.org/test/\">Make/Test blog</a> and join the <a href=\"httpss://make.wordpress.org/core/tag/fse-outreach-experiment/\">#fse-outreach-experiment</a> Slack channel.<br><br>Want to follow updates on the FSE project? Check out <a href=\"httpss://make.wordpress.org/core/2020/05/20/ways-to-keep-up-with-full-site-editing-fse/\">this blog post</a>. You can find <a href=\"httpss://make.wordpress.org/core/2020/12/10/status-check-site-editing-and-customization/\">2020 updates to the FSE project</a> in the Make/Core blog.</p>\n\n\n\n<h2>BuddyPress 7.0 “Filippi” and 7.10 are now available</h2>\n\n\n\n<p><a href=\"httpss://buddypress.org/2020/12/buddypress-7-0-0-filippi/\">BuddyPress version 7.0</a> went live on December 9. Its features include:&nbsp;</p>\n\n\n\n<ul><li>New administration screens to manage Member and Group Types</li><li>New BP blocks for posts and pages</li><li>A default profile image for network sites</li><li>Improved BuddyPress Noveau support for the Twenty Twenty One theme.&nbsp;</li></ul>\n\n\n\n<p>A BuddyPress maintenance release (<a href=\"httpss://buddypress.org/2020/12/buddypress-7-1-0-maintenance-release/\">version 7.1</a>) launched on December 21.&nbsp;</p>\n\n\n\n<p>Want to provide feedback or suggestions for BuddyPress? Share your comments on the announcement posts for <a href=\"httpss://buddypress.org/2020/12/buddypress-7-0-0-filippi/\">7.0</a> or <a href=\"httpss://buddypress.org/2020/12/buddypress-7-1-0-maintenance-release/\">7.1</a>. If you find a bug, please report it in the <a href=\"httpss://buddypress.org/support/\">support forums</a>.&nbsp;</p>\n\n\n\n<h2>Gutenberg 9.5 and 9.6 released</h2>\n\n\n\n<p>The Core team launched <a href=\"httpss://make.wordpress.org/core/2020/12/02/whats-new-in-gutenberg-2-december/\">version 9.5</a> and <a href=\"httpss://make.wordpress.org/core/2020/12/23/whats-new-in-gutenberg-23-december/\">9.6</a> of Gutenberg last month. Both versions include several improvements to FSE flows, bug fixes, and feature upgrades. Version 9.5 introduces features like full height alignment and support for font sizes in the code block. Version 9.6 includes features like the ability to drag blocks from the inserter and a vertical layout for buttons.&nbsp;</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"httpss://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"httpss://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"httpss://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"httpss://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>The Community team <a href=\"httpss://make.wordpress.org/community/2020/12/01/discussion-how-can-the-wordpress-community-return-to-hosting-safe-in-person-events/\">kicked off a discussion</a> about what the WordPress Community can do to host safe, in-person events again, in light of the continuing pandemic. </li><li>The Polyglots team published its <a href=\"httpss://make.wordpress.org/polyglots/2020/12/30/polyglots-team-end-of-year-post-2020/\">end-of-year post</a>, along with the <a href=\"httpss://make.wordpress.org/polyglots/author/evarlese/\">results of its 2020 translator survey</a>.</li><li><a href=\"httpss://sevilla.wordcamp.org/2020/\">WordCamp Sevilla 2020</a> was held online from December 26-29. You can catch the recorded livestream playback on <a href=\"httpss://www.youtube.com/c/wordpresssevilla/live\">YouTube</a>. Videos of the event will <a href=\"httpss://wordpress.tv/event/wordcamp-sevilla-2020/\">soon be available on WordPress.tv</a>.</li><li>WordPress project executive director <a href=\"httpss://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> and project co-founder <a href=\"httpss://profiles.wordpress.org/matt/\">Matt Mullenweg</a> will be jointly hosting <a href=\"httpss://make.wordpress.org/core/2020/12/15/regular-office-and-listening-hours/\">quarterly office and listening hours</a> in 2021. Sign-ups for the <a href=\"httpss://make.wordpress.org/core/2020/12/15/regular-office-and-listening-hours/\">first ones in January 2021</a> are almost filled up.</li><li>The Core team <a href=\"httpss://make.wordpress.org/core/2020/12/02/wp-notify-project-review/\">published updates</a> on the <a href=\"httpss://make.wordpress.org/core/tag/feature-notifications/\">WP Notify project</a>, which seeks to <a href=\"httpss://make.wordpress.org/core/2019/08/05/feature-project-proposal-wp-notify/\">improve the notifications system</a> in WordPress Core.</li><li>The Support team <a href=\"httpss://make.wordpress.org/support/2020/12/handling-potential-jquery-issues-in-wordpress-5-6/\">published a post</a> detailing jQuery issues in WordPress 5.6.</li><li><a href=\"httpss://india.wordcamp.org/2021/\">WordCamp India Online 2021</a> will be held over three weekends between January 30 and February 14. There will be workshops, a contributor event, and sessions (in that order). The calls for <a href=\"httpss://india.wordcamp.org/2021/call-for-sponsors/\">sponsors</a>, <a href=\"httpss://india.wordcamp.org/2021/call-for-workshops/\">workshop presenters</a>, <a href=\"httpss://india.wordcamp.org/2021/call-for-contributor-team-leads/\">contributor team leads</a>, and <a href=\"httpss://india.wordcamp.org/2021/call-for-volunteers/\">volunteers</a> are now open. Don’t forget to grab your <a href=\"httpss://india.wordcamp.org/2021/tickets/\">free tickets</a>!</li><li>The Documentation team <a href=\"httpss://make.wordpress.org/docs/2020/12/01/external-linking-policy-1st-review-of-plugin-developer-handbook/\">shared a first review</a> of its <a href=\"httpss://make.wordpress.org/docs/tag/external-linking-policy/\">external linking policy</a>. It is using the <a href=\"httpss://developer.wordpress.org/plugins/\">plugin developer handbook</a> as a test.</li></ul>\n\n\n\n<p><br><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"httpss://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.</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:\"9508\";s: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:63:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Introducing Learn WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"httpss://wordpress.org/news/2020/12/introducing-learn-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Dec 2020 13:00: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:7:\"Updates\";s: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:14:\"learnwordpress\";s: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:7:\"learnwp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://wordpress.org/news/?p=9444\";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:133:\"Learn WordPress is a learning resource providing workshops, quizzes, courses, and lesson plans to help you to do more with WordPress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://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:\"https://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10336:\"\n<p><strong><a href=\"httpss://learn.wordpress.org/\">Learn WordPress</a> is a learning resource providing workshops, quizzes, courses, lesson plans, and discussion groups so that anyone, from beginners to advanced users, can learn to do more with WordPress. Learning how to use, build for, and contribute to WordPress is essential for anyone wanting to dive deeper into the software and its community.&nbsp;</strong></p>\n\n\n\n<div class=\"wp-block-buttons aligncenter\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link\" href=\"httpss://learn.wordpress.org/\">Learn WordPress</a></div>\n</div>\n\n\n\n<p>This cross-team initiative is part of the WordPress.org network and features content from contributors from the global community. It will be updated weekly and will help connect new and existing WordPress users with the broader community while they learn.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"331\" src=\"httpss://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?resize=632%2C331&#038;ssl=1\" alt=\"\" class=\"wp-image-9457\" srcset=\"httpss://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?resize=1024%2C537&amp;ssl=1 1024w, httpss://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?resize=300%2C157&amp;ssl=1 300w, httpss://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?resize=768%2C403&amp;ssl=1 768w, httpss://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?resize=1536%2C806&amp;ssl=1 1536w, httpss://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?w=1700&amp;ssl=1 1700w, httpss://i1.wp.com/wordpress.org/news/files/2020/12/learn-link-preview.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>What can you learn about WordPress?</h2>\n\n\n\n<p>On Learn WordPress you can find a range of material and opportunities to use at the time which works for you.</p>\n\n\n\n<p><a href=\"httpss://learn.wordpress.org/workshops/\"><strong>Workshops</strong></a> are practical, skills-based videos that show viewers how to do new things with WordPress, whether you publish, manage, develop with, or contribute to WordPress. Most workshops include quizzes for you to test your newly gained knowledge.</p>\n\n\n\n<p><a href=\"httpss://learn.wordpress.org/discussion-groups/\"><strong>Discussion groups</strong></a> provide an opportunity for further collaborative learning with participants meeting together to discuss the workshop content &#8211; they take place online, either in video calls or Slack and accommodate all time zones.</p>\n\n\n\n<p><a href=\"httpss://learn.wordpress.org/lesson-plans/\"><strong>Lesson plans</strong></a> are guides for facilitators to use while presenting at events or within educational environments. Facilitators will find learning objectives (telling people what they are going to learn), any prerequisite skills, assets such as screenshots and slide decks, and learning assessments.&nbsp;</p>\n\n\n\n<p><a href=\"httpss://learn.wordpress.org/courses/\"><strong>Courses</strong></a> are a series of interconnected lesson plans to be presented by a facilitator that will strategically focus on defined learning outcomes. Participants can go through these courses individually or as part of a group. After completing the learning, attendees should be able to apply their skills in the real world.</p>\n\n\n\n<p>In addition to the wealth of valuable content available on Learn WordPress, the platform provides an opportunity for individuals to learn alongside other community members and become connected with a global network of WordPress users, developers, and contributors.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\'youtube-player\' width=\'632\' height=\'356\' src=\'httpss://www.youtube.com/embed?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent&#038;listType=playlist&#038;list=PLCVEqsAbLffeEXhn9T1yBVTMaHIMtlzFj\' allowfullscreen=\'true\' style=\'border:0;\' sandbox=\'allow-scripts allow-same-origin allow-popups allow-presentation\'></iframe>\n</div></figure>\n\n\n\n<p><a href=\"httpss://www.youtube.com/playlist?list=PLCVEqsAbLffeEXhn9T1yBVTMaHIMtlzFj\">Why you should use Learn WordPress</a> &#8211; videos from our community.</p>\n\n\n\n<h2>How can you get involved?</h2>\n\n\n\n<div class=\"wp-block-buttons aligncenter\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link\" href=\"httpss://learn.wordpress.org/\">Start learning today!</a></div>\n</div>\n\n\n\n<p>Learn WordPress is an open-source platform available for anyone to contribute content in any areas mentioned above. <a href=\"httpss://learn.wordpress.org/contribute/\">Find out more about how you can get involved</a> with this initiative.</p>\n\n\n\n<p><a href=\"httpss://make.wordpress.org/marketing/2020/12/09/help-us-promote-learn-wordpress/\">Take part in our fun promotion campaigns</a> on social and with your local community.</p>\n\n\n\n<p><em>Hundreds of people spanning a number of years have contributed to the development of learning materials. Thanks to everyone who worked so hard to make Learn WordPress a reality.&nbsp;</em></p>\n\n\n\n<p><strong><em>Particular thanks to</em></strong>:</p>\n\n\n\n<p><strong><em>Training:</em></strong><em> <a href=\'httpss://profiles.wordpress.org/courane01/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>courane01</a>, <a href=\'httpss://profiles.wordpress.org/azhiyadev/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>azhiyadev</a>, <a href=\'httpss://profiles.wordpress.org/geheren/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>geheren</a>, <a href=\'httpss://profiles.wordpress.org/webtechpooja/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webtechpooja</a>, <a href=\'httpss://profiles.wordpress.org/jessecowens/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jessecowens</a>, <a href=\'httpss://profiles.wordpress.org/onealtr/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>onealtr</a>, <a href=\'httpss://profiles.wordpress.org/rastaban/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rastaban</a>, <a href=\'httpss://profiles.wordpress.org/evarlese/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>evarlese</a>, <a href=\'httpss://profiles.wordpress.org/manzwebdesigns/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>manzwebdesigns</a></em><br><strong><em>Meta: </em></strong><em><a href=\'httpss://profiles.wordpress.org/coreymckrill/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>coreymckrill</a>, <a href=\'httpss://profiles.wordpress.org/dufresnesteven/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dufresnesteven</a>, <em><a href=\'httpss://profiles.wordpress.org/jonoaldersonwp/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jonoaldersonwp</a></em></em><br><strong><em>Community:</em></strong><em> <a href=\'httpss://profiles.wordpress.org/hlashbrooke/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hlashbrooke</a>, <a href=\'httpss://profiles.wordpress.org/camikaos/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>camikaos</a>, <a href=\'httpss://profiles.wordpress.org/harishanker/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>harishanker</a>, <a href=\'httpss://profiles.wordpress.org/angelasjin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>angelasjin</a>, <a href=\'httpss://profiles.wordpress.org/nao/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nao</a>, <a href=\'httpss://profiles.wordpress.org/courtneypk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>courtneypk</a>, <a href=\'httpss://profiles.wordpress.org/andreamiddleton/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>andreamiddleton</a>, <a href=\'httpss://profiles.wordpress.org/rmarks/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmarks</a>, <a href=\'httpss://profiles.wordpress.org/sippis/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sippis</a></em><br><strong><em>Marketing: </em></strong><em><a href=\'httpss://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>,  <a href=\'httpss://profiles.wordpress.org/oglekler/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>oglekler</a>, <a href=\'httpss://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>, <a href=\'httpss://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a>, <a href=\'httpss://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, <a href=\'httpss://profiles.wordpress.org/nalininonstopnewsuk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nalininonstopnewsuk</a>, <a href=\'httpss://profiles.wordpress.org/megphillips91/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>megphillips91</a>, <a href=\'httpss://profiles.wordpress.org/marks99/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marks99</a>, <em><a href=\'httpss://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a></em></em>, <em><a href=\'httpss://profiles.wordpress.org/antialiasfactory/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>antialiasfactory</a>, <a href=\'httpss://profiles.wordpress.org/herculespekkas/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>herculespekkas</a>, <a href=\'httpss://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a></em><br><strong><em>Design:</em></strong><em> <a href=\'httpss://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a> </em></p>\n\n\n\n<p><em>For a fuller list of the contributors who have been involved in training and Learn WordPress, visit <a href=\"httpss://make.wordpress.org/community/2020/08/12/learn-wordpress-is-live/\">the initial beta launch post</a>. Thanks to everyone who has been involved to date and will be in the future.&nbsp;</em></p>\n\n\n\n<p><a href=\"httpss://learn.wordpress.org/tag/learnwordpress\">#LearnWordPress</a> <a href=\"httpss://learn.wordpress.org/tag/learnwp\">#LearnWP</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:\"9444\";s: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:60:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 5.6 “Simone”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://wordpress.org/news/2020/12/simone/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Dec 2020 19:46: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: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:\"5.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://wordpress.org/news/?p=9325\";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:206:\"Meet Simone, our latest and greatest WordPress release. Named for the legendary performer Nina Simone. Fire up a playlist with her best work and read on to discover what WordPress 5.6 has in store for you. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s: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:\"https://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:63933:\"\n<p>Meet Simone, our latest and greatest WordPress release. Named for the legendary performer Nina Simone, who is known for tunes like &#8220;Feeling Good&#8221;, &#8220;Young, Gifted and Black&#8221;, and &#8220;Four Women&#8221;. Fire up a playlist with her best work and read on to discover what we have in store for you. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"633\" src=\"httpss://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=632%2C633&#038;ssl=1\" alt=\"WordPress 5.6 Simone with a photo of Nina Simone\" class=\"wp-image-9416\" srcset=\"httpss://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=1022%2C1024&amp;ssl=1 1022w, httpss://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=300%2C300&amp;ssl=1 300w, httpss://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=150%2C150&amp;ssl=1 150w, httpss://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?resize=768%2C769&amp;ssl=1 768w, httpss://i2.wp.com/wordpress.org/news/files/2020/12/wordpress-5-6_cover-a11y.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#d1e4dd;min-height:300px\"><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-black-color has-text-color has-background has-large-font-size\" style=\"background-color:#d1e4dd;padding: 10px\">Welcome to WordPress 5.6</p>\n<h3 class=\"has-text-align-center has-black-color has-text-color\">Sharing your stories has never been easier.</h3>\n</div></div>\n\n\n\n<p>WordPress 5.6 brings you countless ways to set your ideas free and bring them to life. With a brand-new default theme as your canvas, it supports an ever-growing collection of blocks as your brushes. Paint with words. Pictures. Sound. Or rich embedded media.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"234\" src=\"httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=632%2C234&#038;ssl=1\" alt=\"colored circles\" class=\"wp-image-9346\" srcset=\"httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=1024%2C379&amp;ssl=1 1024w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=300%2C111&amp;ssl=1 300w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?resize=768%2C284&amp;ssl=1 768w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-1.jpeg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3>Greater layout flexibility</h3>\n\n\n\n<p>Bring your stories to life with more tools that let you edit your layout with or without code. Single column blocks, designs using mixed widths and columns, full-width headers, and gradients in your cover block—make small changes or big statements with equal ease!</p>\n\n\n\n<h3>More block patterns</h3>\n\n\n\n<p>In some themes, preconfigured block patterns make setting up standard pages on your site a breeze. Let the power of patterns streamline your workflow and save you clicks. Plus, share these features with clients, editors, and more.</p>\n\n\n\n<h3>Better video captioning</h3>\n\n\n\n<p>To help you add subtitles or captions to your videos, you can now upload them within your post or page. This makes it easier than ever to make your videos accessible for anyone who needs or prefers to use subtitles.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"120\" src=\"httpss://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=632%2C120&#038;ssl=1\" alt=\"black vertical line\" class=\"wp-image-9347\" srcset=\"httpss://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=1024%2C194&amp;ssl=1 1024w, httpss://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=300%2C57&amp;ssl=1 300w, httpss://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?resize=768%2C146&amp;ssl=1 768w, httpss://i2.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-2.jpeg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>Twenty Twenty-One is here!</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"httpss://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"714\" src=\"httpss://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=632%2C714&#038;ssl=1\" alt=\"Examples of block patterns available in Twenty Twenty-One.\" class=\"wp-image-9426\" srcset=\"httpss://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=907%2C1024&amp;ssl=1 907w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=266%2C300&amp;ssl=1 266w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=768%2C867&amp;ssl=1 768w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=1360%2C1536&amp;ssl=1 1360w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?resize=1814%2C2048&amp;ssl=1 1814w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?w=1975&amp;ssl=1 1975w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?w=1264&amp;ssl=1 1264w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/TT1-Screenshots-Compressed.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>Twenty Twenty-One is a blank canvas for your ideas, and the block editor is the best brush. It is built for the block editor and packed with brand-new block patterns you can only get in the default themes. Try different layouts in a matter of seconds, and let the theme’s eye-catching, yet timeless design make your work shine.&nbsp;</p>\n\n\n\n<p>What’s more, this default theme puts accessibility at the heart of your website. It conforms to the <a href=\"httpss://make.wordpress.org/themes/handbook/review/accessibility/\">WordPress accessibility-ready guidelines</a> and addresses several more specialized standards from the <a href=\"httpss://www.w3.org/WAI/WCAG2AAA-Conformance\">Web Content Accessibility Guidelines (WCAG) 2.1 at level AAA</a>. It will help you meet the highest level of international accessibility standards when you create accessible content and choose plugins which are accessible too!</p>\n\n\n\n<h3>A rainbow of soft pastels</h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"httpss://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"167\" src=\"httpss://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=632%2C167&#038;ssl=1\" alt=\"A mobile screenshot of each included color palette in Twenty Twenty-One, going in ROYGBIV order.\" class=\"wp-image-9424\" srcset=\"httpss://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=1024%2C270&amp;ssl=1 1024w, httpss://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=300%2C79&amp;ssl=1 300w, httpss://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=768%2C202&amp;ssl=1 768w, httpss://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=1536%2C405&amp;ssl=1 1536w, httpss://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?resize=2048%2C540&amp;ssl=1 2048w, httpss://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?w=1264&amp;ssl=1 1264w, httpss://i2.wp.com/wordpress.org/news/files/2020/12/Rainbow-Compressed.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>Perfect for a new year, Twenty Twenty-One gives you a range of pre-selected color palettes in pastel, all of which conform to AAA standards for contrast. You can also choose your own background color for the theme, and the theme chooses accessibility-conscious text colors for you — automatically!</p>\n\n\n\n<p>Need more flexibility than that? You can also choose your own color palette from the color picker.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"151\" src=\"httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=632%2C151&#038;ssl=1\" alt=\"colored circles\" class=\"wp-image-9351\" srcset=\"httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=1024%2C245&amp;ssl=1 1024w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=300%2C72&amp;ssl=1 300w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?resize=768%2C183&amp;ssl=1 768w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress5-6-3.jpeg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>Improvements for everyone</h2>\n\n\n\n<h3>Expanding auto-updates</h3>\n\n\n\n<p>For years, only developers have been able to update WordPress automatically. But now you have that option, right in your dashboard. If this is your first site, you have auto-updates ready to go, right now! Upgrading an existing site? No problem! Everything is the same as it was before.</p>\n\n\n\n<h3>Accessibility Statement&nbsp;</h3>\n\n\n\n<p>Even if you’re not an expert, you can start letting others know about your site’s commitment to accessibility! The new <a href=\"httpss://github.com/10degrees/accessibility-statement-plugin\">feature plugin</a> includes template copy for you to edit and publish, and it’s written to support different contexts and jurisdictions.&nbsp;&nbsp;</p>\n\n\n\n<h3>Built-in Patterns</h3>\n\n\n\n<p>If you’ve not had the chance to play with block patterns yet, all default themes now feature a range of block patterns that let you master complex layouts with minimal effort. Customize the patterns to your liking with the copy, images, and colors that fit your story or brand.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"185\" src=\"httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=632%2C185&#038;ssl=1\" alt=\"colored and textured rectangles\" class=\"wp-image-9352\" srcset=\"httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=1024%2C300&amp;ssl=1 1024w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=300%2C88&amp;ssl=1 300w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?resize=768%2C225&amp;ssl=1 768w, httpss://i0.wp.com/wordpress.org/news/files/2020/12/WordPress-5-6-4.jpeg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2>For developers</h2>\n\n\n\n<h3>REST API authentication with Application Passwords</h3>\n\n\n\n<p>Thanks to the API’s new Application Passwords authorization feature, third-party apps can connect to your site seamlessly and securely. This new REST API feature lets you see what apps are connecting to your site and control what they do.&nbsp;</p>\n\n\n\n<h3>More PHP 8 support</h3>\n\n\n\n<p>5.6 marks the first steps toward WordPress Core support for PHP 8. Now is a great time to start planning how your WordPress products, services, and sites can support the latest PHP version. For more information about what to expect next, <a href=\"httpss://make.wordpress.org/core/2020/11/23/wordpress-and-php-8-0/\">read the PHP 8 developer note</a>.</p>\n\n\n\n<h3>jQuery</h3>\n\n\n\n<p>Updates to jQuery in WordPress take place across three releases 5.5, 5.6, and 5.7. As we reach the mid-point of this process, <a href=\"httpss://wordpress.org/plugins/wp-jquery-update-test/\">run the update test plugin to check your sites for errors</a> ahead of time.&nbsp;&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<p>If you find issues with the way your site looks ( e.g. a slider doesn’t work, a button is stuck — that sort of thing), install <a href=\"httpss://wordpress.org/plugins/enable-jquery-migrate-helper/\">the jQuery Migrate plugin</a>.</p>\n\n\n\n<h3>Check out the Field Guide</h3>\n\n\n\n<p><a href=\"httpss://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">Read about the latest version of WordPress in this guide.</a> It highlights developer notes for each change in the release.&nbsp;</p>\n\n\n\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#d1e4dd;min-height:300px\"><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-black-color has-text-color has-background has-large-font-size\" style=\"background-color:#d1e4dd;padding: 10px\">“It’s a new day, it’s a new life for me&#8230;.and I’m feeling good.”</p>\n<h3 class=\"has-text-align-center has-black-color has-text-color\">~Nina Simone</h3>\n</div></div>\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>The WordPress 5.6 release comes to you from an all-women and non-binary identifying release squad:  </p>\n\n\n\n<ul><li><strong>Release Lead:</strong> Josepha Haden (<a href=\"httpss://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>).&nbsp; Cohort: Chloé Bringmann (<a href=\"httpss://profiles.wordpress.org/cbringmann/\">@cbringmann</a>) and Angela Jin (<a href=\"httpss://profiles.wordpress.org/angelasjin/\">@angelasjin</a>).</li><li><strong>Release Coordinator:</strong> Dee Teal (<a href=\"httpss://profiles.wordpress.org/thewebprincess/\">@thewebprincess</a>).&nbsp; Cohort: Thelma Mutete (<a href=\"httpss://profiles.wordpress.org/thelmachido/\">@thelmachido</a>) and Laura Nelson (<a href=\"httpss://profiles.wordpress.org/laurora/\">@laurora</a>).</li><li><strong>Triage Lead:</strong> Tonya Mork (<a href=\"httpss://profiles.wordpress.org/hellofromtonya/\">@hellofromtonya</a>).&nbsp;</li><li><strong>Core Tech Lead:</strong> Helen Hou-Sandì (<a href=\"httpss://profiles.wordpress.org/helen/\">@helen</a>).&nbsp; Cohort: Amy Kamala (<a href=\"httpss://profiles.wordpress.org/amykamala/\">@amykamala</a>) and Ebonie Butler (<a href=\"httpss://profiles.wordpress.org/metalandcoffee/\">@metalandcoffee</a>).</li><li><strong>Editor Tech Lead:</strong> Isabel Brison (<a href=\"httpss://profiles.wordpress.org/isabel_brison/\">@isabel_brison</a>).&nbsp; Cohort: Chandrika Guntur (<a href=\"httpss://profiles.wordpress.org/cguntur/\">@cguntur</a>), Anchen le Roux (<a href=\"httpss://profiles.wordpress.org/anchenlr/\">@anchenlr</a>), and Rebecca Hum (<a href=\"httpss://profiles.wordpress.org/rebasaurus/\">@rebasaurus</a>).</li><li><strong>Design Leads:</strong> Ellen Bauer (<a href=\"httpss://profiles.wordpress.org/elmastudio/\">@elmastudio</a>) and Tammie Lister (<a href=\"httpss://profiles.wordpress.org/karmatosed/\">@karmatosed</a>).&nbsp; Cohort: Anyssa Ferreira (<a href=\"httpss://profiles.wordpress.org/anyssa/\">@anyssa</a>), Estela Rueda (<a href=\"httpss://profiles.wordpress.org/estelaris/\">@estelaris</a>), Tracy Apps (<a href=\"httpss://profiles.wordpress.org/tray/\">@tray</a>), and Sophia DeRosia (<a href=\"httpss://profiles.wordpress.org/eringoblog/\">@eringoblog</a>).</li><li><strong>Design Tech Lead:</strong> Shital Marakana (<a href=\"httpss://profiles.wordpress.org/shital-patel/\">@shital-patel</a>).</li><li><strong>Accessibility Lead:</strong> Sarah Ricker (<a href=\"httpss://profiles.wordpress.org/sarahricker/\">@sarahricke<strong>r</strong></a>).&nbsp;Cohort: Hauwa Abashiya (<a href=\"httpss://profiles.wordpress.org/azhiyadev/\">@azhiyadev</a>).</li><li><strong>Marketing &amp; Communications Leads:</strong> Abha Thakor (<a href=\"httpss://profiles.wordpress.org/webcommsat/\">@webcommsat</a>) and Yvette Sonneveld (<a href=\"httpss://profiles.wordpress.org/yvettesonneveld/\">@yvettesonneveld</a>).&nbsp;Cohort: Nalini Thakor (<a href=\"httpss://profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), Meher Bala (<a href=\"httpss://profiles.wordpress.org/meher/\">@meher</a>), Olga Gleckler (<a href=\"httpss://profiles.wordpress.org/oglekler/\">@ogleckler</a>), Larissa Murrillo (<a href=\"httpss://profiles.wordpress.org/lmurillom/\">@lmurillom</a>), Michelle Frechette (<a href=\"httpss://profiles.wordpress.org/michelleames/\">@michelleames</a>), Breann McDede (<a href=\"httpss://profiles.wordpress.org/bmcdede/\">@bmcdede</a>), and Afshana Diya (<a href=\"httpss://profiles.wordpress.org/afshanadiya/\">@afshanadiya</a>).</li><li><strong>Documentation Lead: </strong>Shawntelle Coker (<a href=\"httpss://profiles.wordpress.org/sncoker/\">@sncoker</a>). Cohort: Daisy Olsen (<a href=\"httpss://profiles.wordpress.org/daisyo/\">@DaisyO</a>), Meher Bala (<a href=\"httpss://profiles.wordpress.org/meher/\">@meher</a>), Winstina Hughes (<a href=\"httpss://profiles.wordpress.org/planningwrite/\">@planningwrite</a>).</li><li><strong>Documentation Review Lead:</strong> Michele Butcher-Jones (<a href=\"httpss://profiles.wordpress.org/m_butcher/\">@m_butcher</a>).&nbsp; Cohort: Nidhi Jain (<a href=\"httpss://profiles.wordpress.org/jainnidhi/\">@jainnidhi</a>), Laura Byrne Cristiano (<a href=\"httpss://wordpress.org/support/users/newyorkerlaura/\">@newyorkerlaura</a>).</li><li><strong>Default Theme Design Lead:</strong> Mel Choyce-Dwan (<a href=\"httpss://profiles.wordpress.org/melchoyce/\">@melchoyce</a>).&nbsp; Cohort: Ellen Bauer (<a href=\"httpss://profiles.wordpress.org/elmastudio/\">@elmastudio</a>).</li><li><strong>Default Theme Development Lead:</strong> Carolina Nymark (<a href=\"httpss://profiles.wordpress.org/poena/\">@poena</a>).&nbsp; Cohort: Kelly Choyce-Dwan (<a href=\"httpss://profiles.wordpress.org/ryelle/\">@ryelle</a>) and Jessica Lyschik (<a href=\"httpss://profiles.wordpress.org/luminuu/\">@luminuu</a>).</li><li><strong>Default Theme Wrangler:</strong> Jessica Lyschik (<a href=\"httpss://profiles.wordpress.org/luminuu/\">@luminuu</a>).</li><li><strong>Test Lead:</strong> Monika Rao (<a href=\"httpss://profiles.wordpress.org/monikarao/\">@monikarao</a>).&nbsp; Cohort: Allie Nimmons (<a href=\"httpss://profiles.wordpress.org/alliennimmons/\">@alliennimmons</a>).</li><li><strong>Support Lead:</strong> Bet Hannon (<a href=\"httpss://profiles.wordpress.org/bethannon1/\">@bethannon1</a>).</li></ul>\n\n\n\n<p>As always, this release reflects the hard work of 605 generous volunteer contributors. They collaborated on nearly 350 tickets on Trac and over 1,000 pull requests on GitHub.</p>\n\n\n\n<a href=\"httpss://profiles.wordpress.org/zgrkaralar/\">&#214;zg&#252;r KARALAR</a>, <a href=\"httpss://profiles.wordpress.org/1naveengiri/\">1naveengiri</a>, <a href=\"httpss://profiles.wordpress.org/a5hleyrich/\">A5hleyRich</a>, <a href=\"httpss://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"httpss://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"httpss://profiles.wordpress.org/aaronrobertshaw/\">aaronrobertshaw</a>, <a href=\"httpss://profiles.wordpress.org/abderrahman/\">abderrahman</a>, <a href=\"httpss://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"httpss://profiles.wordpress.org/abhijitrakas/\">Abhijit Rakas</a>, <a href=\"httpss://profiles.wordpress.org/pokhriyal/\">Abhishek Pokhriyal</a>, <a href=\"httpss://profiles.wordpress.org/acosmin/\">acosmin</a>, <a href=\"httpss://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"httpss://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"httpss://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"httpss://profiles.wordpress.org/adriandegrafreak/\">Adri&#225;n de Grafreak</a>, <a href=\"httpss://profiles.wordpress.org/adriantirusli/\">Adrianti Rusli</a>, <a href=\"httpss://profiles.wordpress.org/afshanadiya/\">Afshana Diya</a>, <a href=\"httpss://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a>, <a href=\"httpss://profiles.wordpress.org/elgameel/\">Ahmed Elgameel</a>, <a href=\"httpss://profiles.wordpress.org/ajensen/\">ajensen</a>, <a href=\"httpss://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>, <a href=\"httpss://profiles.wordpress.org/atachibana/\">Akira Tachibana</a>, <a href=\"httpss://profiles.wordpress.org/aktasfatih/\">aktasfatih</a>, <a href=\"httpss://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a>, <a href=\"httpss://profiles.wordpress.org/albertomake/\">albertomake</a>, <a href=\"httpss://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"httpss://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"httpss://profiles.wordpress.org/cawa-93/\">Alex Kozack</a>, <a href=\"httpss://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"httpss://profiles.wordpress.org/viper007bond/\">Alex Mills</a>, <a href=\"httpss://profiles.wordpress.org/alexstandiford/\">Alex Standiford</a>, <a href=\"httpss://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"httpss://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"httpss://profiles.wordpress.org/alliennimmons/\">Allie Nimmons</a>, <a href=\"httpss://profiles.wordpress.org/ambienthack/\">ambienthack</a>, <a href=\"httpss://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"httpss://profiles.wordpress.org/amolv/\">Amol Vhankalas</a>, <a href=\"httpss://profiles.wordpress.org/amykamala/\">Amy Kamala</a>, <a href=\"httpss://profiles.wordpress.org/anandau14/\">Anand Upadhyay</a>, <a href=\"httpss://profiles.wordpress.org/anchenlr/\">Anchen le Roux</a>, <a href=\"httpss://profiles.wordpress.org/anlino/\">Anders Nor&#233;n</a>, <a href=\"httpss://profiles.wordpress.org/nosolosw/\">Andr&#233; Maneiro</a>, <a href=\"httpss://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"httpss://profiles.wordpress.org/andreamiddleton/\">Andrea Middleton</a>, <a href=\"httpss://profiles.wordpress.org/baicusandrei/\">Andrei Baicus</a>, <a href=\"httpss://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"httpss://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"httpss://profiles.wordpress.org/nacin/\">Andrew Nacin</a>, <a href=\"httpss://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"httpss://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a>, <a href=\"httpss://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"httpss://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"httpss://profiles.wordpress.org/andy/\">Andy Skelton</a>, <a href=\"httpss://profiles.wordpress.org/andystitt829/\">Andy Stitt</a>, <a href=\"httpss://profiles.wordpress.org/akissz/\">Angel Hess</a>, <a href=\"httpss://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, <a href=\"httpss://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a>, <a href=\"httpss://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"httpss://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"httpss://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"httpss://profiles.wordpress.org/ahortin/\">Anthony Hortin</a>, <a href=\"httpss://profiles.wordpress.org/antonlukin/\">Anton Lukin</a>, <a href=\"httpss://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"httpss://profiles.wordpress.org/anuj2/\">anuj2</a>, <a href=\"httpss://profiles.wordpress.org/anyssa/\">Anyssa Ferreira</a>, <a href=\"httpss://profiles.wordpress.org/apedog/\">apedog</a>, <a href=\"httpss://profiles.wordpress.org/apermo/\">Apermo</a>, <a href=\"httpss://profiles.wordpress.org/archduck/\">archduck</a>, <a href=\"httpss://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"httpss://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"httpss://profiles.wordpress.org/arippberger/\">arippberger</a>, <a href=\"httpss://profiles.wordpress.org/arjendejong/\">arjendejong</a>, <a href=\"httpss://profiles.wordpress.org/arnaudban/\">ArnaudBan</a>, <a href=\"httpss://profiles.wordpress.org/arpitgshah/\">Arpit G Shah</a>, <a href=\"httpss://profiles.wordpress.org/passoniate/\">Arslan Ahmed</a>, <a href=\"httpss://profiles.wordpress.org/akkspro/\">Arslan Ahmed Kalwar</a>, <a href=\"httpss://profiles.wordpress.org/asvinballoo/\">Asvin Balloo</a>, <a href=\"httpss://profiles.wordpress.org/tacitonic/\">Atharva Dhekne</a>, <a href=\"httpss://profiles.wordpress.org/austyfrosty/\">Austin Passy</a>, <a href=\"httpss://profiles.wordpress.org/austin880625/\">austin880625</a>, <a href=\"httpss://profiles.wordpress.org/avixansa/\">avixansa</a>, <a href=\"httpss://profiles.wordpress.org/ayesh/\">ayesh</a>, <a href=\"httpss://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"httpss://profiles.wordpress.org/backups/\">BackuPs</a>, <a href=\"httpss://profiles.wordpress.org/barry/\">Barry</a>, <a href=\"httpss://profiles.wordpress.org/bartczyz/\">Bart Czyz</a>, <a href=\"httpss://profiles.wordpress.org/bduclos/\">bduclos</a>, <a href=\"httpss://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"httpss://profiles.wordpress.org/benmeredithgmailcom/\">Ben Meredith</a>, <a href=\"httpss://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a>, <a href=\"httpss://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"httpss://profiles.wordpress.org/bethannon1/\">Bet Hannon</a>, <a href=\"httpss://profiles.wordpress.org/bethsoderberg/\">Beth Soderberg</a>, <a href=\"httpss://profiles.wordpress.org/bgermann/\">bgermann</a>, <a href=\"httpss://profiles.wordpress.org/hareshlive/\">Bhagvan Mangukiya</a>, <a href=\"httpss://profiles.wordpress.org/bhautikvirani/\">bhautikvirani</a>, <a href=\"httpss://profiles.wordpress.org/bananastalktome/\">Billy S</a>, <a href=\"httpss://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"httpss://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"httpss://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"httpss://profiles.wordpress.org/boldgrid/\">BoldGrid</a>, <a href=\"httpss://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"httpss://profiles.wordpress.org/ibdz/\">Boy Witthaya</a>, <a href=\"httpss://profiles.wordpress.org/bradyvercher/\">Brady Vercher</a>, <a href=\"httpss://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"httpss://profiles.wordpress.org/bpayton/\">Brandon Payton</a>, <a href=\"httpss://profiles.wordpress.org/bmcdede/\">Breann McDede</a>, <a href=\"httpss://profiles.wordpress.org/bmillersw/\">Brent Miller</a>, <a href=\"httpss://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"httpss://profiles.wordpress.org/brianhenryie/\">Brian Henry</a>, <a href=\"httpss://profiles.wordpress.org/brianhogg/\">Brian Hogg</a>, <a href=\"httpss://profiles.wordpress.org/bridgetwillard/\">bridgetwillard</a>, <a href=\"httpss://profiles.wordpress.org/brijeshb42/\">brijeshb42</a>, <a href=\"httpss://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"httpss://profiles.wordpress.org/icaleb/\">Caleb Burks</a>, <a href=\"httpss://profiles.wordpress.org/calin/\">Calin Don</a>, <a href=\"httpss://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"httpss://profiles.wordpress.org/campusboy1987/\">campusboy</a>, <a href=\"httpss://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"httpss://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"httpss://profiles.wordpress.org/carolinegeven/\">Caroline</a>, <a href=\"httpss://profiles.wordpress.org/ceyhun0/\">ceyhun0</a>, <a href=\"httpss://profiles.wordpress.org/chadreitsma/\">Chad Reitsma</a>, <a href=\"httpss://profiles.wordpress.org/cguntur/\">Chandrika Guntur</a>, <a href=\"httpss://profiles.wordpress.org/cpapazoglou/\">Charalampos Papazoglou</a>, <a href=\"httpss://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"httpss://profiles.wordpress.org/chexwarrior/\">chexwarrior</a>, <a href=\"httpss://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"httpss://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"httpss://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"httpss://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"httpss://profiles.wordpress.org/alexandec/\">Chris Alexander</a>, <a href=\"httpss://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"httpss://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"httpss://profiles.wordpress.org/ctmartin0/\">Christian Martin</a>, <a href=\"httpss://profiles.wordpress.org/christophherr/\">Christoph Herr</a>, <a href=\"httpss://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a>, <a href=\"httpss://profiles.wordpress.org/chunkysteveo/\">chunkysteveo</a>, <a href=\"httpss://profiles.wordpress.org/claudiulodro/\">Claudiu Lodromanean</a>, <a href=\"httpss://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"httpss://profiles.wordpress.org/collizo4sky/\">Collins Agbonghama</a>, <a href=\"httpss://profiles.wordpress.org/commeuneimage/\">Commeuneimage</a>, <a href=\"httpss://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"httpss://profiles.wordpress.org/salzano/\">Corey Salzano</a>, <a href=\"httpss://profiles.wordpress.org/cranewest/\">cranewest</a>, <a href=\"httpss://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"httpss://profiles.wordpress.org/ctmartin/\">ctmartin</a>, <a href=\"httpss://profiles.wordpress.org/davidszabo/\">D&#225;vid Szab&#243;</a>, <a href=\"httpss://profiles.wordpress.org/daisyo/\">Daisy Olsen</a>, <a href=\"httpss://profiles.wordpress.org/danfarrow/\">Dan Farrow</a>, <a href=\"httpss://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"httpss://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"httpss://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"httpss://profiles.wordpress.org/danieltj/\">danieltj</a>, <a href=\"httpss://profiles.wordpress.org/dantahoua/\">dantahoua</a>, <a href=\"httpss://profiles.wordpress.org/dkotter/\">Darin Kotter</a>, <a href=\"httpss://profiles.wordpress.org/dmchale/\">Dave McHale</a>, <a href=\"httpss://profiles.wordpress.org/davilera/\">David Aguilera</a>, <a href=\"httpss://profiles.wordpress.org/davidanderson/\">David Anderson</a>, <a href=\"httpss://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"httpss://profiles.wordpress.org/dgwyer/\">David Gwyer</a>, <a href=\"httpss://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"httpss://profiles.wordpress.org/dshanske/\">David Shanske</a>, <a href=\"httpss://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"httpss://profiles.wordpress.org/davidjlaietta/\">David Wolfpaw</a>, <a href=\"httpss://profiles.wordpress.org/davidbinda/\">david.binda</a>, <a href=\"httpss://profiles.wordpress.org/davisshaver/\">Davis Shaver</a>, <a href=\"httpss://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"httpss://profiles.wordpress.org/p00ya/\">Dean</a>, <a href=\"httpss://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"httpss://profiles.wordpress.org/thewebprincess/\">Dee Teal</a>, <a href=\"httpss://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a>, <a href=\"httpss://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"httpss://profiles.wordpress.org/demetris/\">demetris (Demetris Kikizas)</a>, <a href=\"httpss://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a>, <a href=\"httpss://profiles.wordpress.org/valendesigns/\">Derek Herman</a>, <a href=\"httpss://profiles.wordpress.org/designer023/\">Designer023</a>, <a href=\"httpss://profiles.wordpress.org/dfenton/\">dfenton</a>, <a href=\"httpss://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a>, <a href=\"httpss://profiles.wordpress.org/dharmin16/\">Dharmin Shah</a>, <a href=\"httpss://profiles.wordpress.org/dhruvin/\">Dhruvin</a>, <a href=\"httpss://profiles.wordpress.org/dhulwells/\">Dhul Wells</a>, <a href=\"httpss://profiles.wordpress.org/dietpawel/\">dietpawel</a>, <a href=\"httpss://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"httpss://profiles.wordpress.org/dingo_d/\">dingo-d</a>, <a href=\"httpss://profiles.wordpress.org/djzone/\">DjZoNe</a>, <a href=\"httpss://profiles.wordpress.org/dogwithblog/\">dogwithblog</a>, <a href=\"httpss://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"httpss://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"httpss://profiles.wordpress.org/donsony/\">donsony</a>, <a href=\"httpss://profiles.wordpress.org/dossy/\">Dossy Shiobara</a>, <a href=\"httpss://profiles.wordpress.org/dpacks/\">dpacks</a>, <a href=\"httpss://profiles.wordpress.org/raubvogel/\">Dr. Ronny Harbich</a>, <a href=\"httpss://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"httpss://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"httpss://profiles.wordpress.org/dsifford/\">dsifford</a>, <a href=\"httpss://profiles.wordpress.org/dushakov/\">dushakov</a>, <a href=\"httpss://profiles.wordpress.org/dushanthi/\">dushanthi</a>, <a href=\"httpss://profiles.wordpress.org/dyrer/\">dyrer</a>, <a href=\"httpss://profiles.wordpress.org/elrae/\">Earle Davies</a>, <a href=\"httpss://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"httpss://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"httpss://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"httpss://profiles.wordpress.org/elmastudio/\">Ellen Bauer</a>, <a href=\"httpss://profiles.wordpress.org/enej/\">Enej Bajgori?</a>, <a href=\"httpss://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a>, <a href=\"httpss://profiles.wordpress.org/epiqueras/\">epiqueras</a>, <a href=\"httpss://profiles.wordpress.org/kebbet/\">Erik Betshammar</a>, <a href=\"httpss://profiles.wordpress.org/erikjandelange/\">erikjandelange</a>, <a href=\"httpss://profiles.wordpress.org/folletto/\">Erin \'Folletto\' Casali</a>, <a href=\"httpss://profiles.wordpress.org/eringoblog/\">eringoblog</a>, <a href=\"httpss://profiles.wordpress.org/eroraghav/\">eroraghav</a>, <a href=\"httpss://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"httpss://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"httpss://profiles.wordpress.org/thegp/\">EugeneBos</a>, <a href=\"httpss://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"httpss://profiles.wordpress.org/fabifott/\">Fabian</a>, <a href=\"httpss://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a>, <a href=\"httpss://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"httpss://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"httpss://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"httpss://profiles.wordpress.org/ferkho/\">Ferenc Forgacs</a>, <a href=\"httpss://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"httpss://profiles.wordpress.org/flymike/\">flymike</a>, <a href=\"httpss://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"httpss://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"httpss://profiles.wordpress.org/fjarrett/\">Frankie Jarrett</a>, <a href=\"httpss://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"httpss://profiles.wordpress.org/ecgan/\">Gan Eng Chin</a>, <a href=\"httpss://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"httpss://profiles.wordpress.org/garyc40/\">Gary Cao</a>, <a href=\"httpss://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"httpss://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"httpss://profiles.wordpress.org/gchtr/\">gchtr</a>, <a href=\"httpss://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"httpss://profiles.wordpress.org/subscriptiongroup/\">George</a>, <a href=\"httpss://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"httpss://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"httpss://profiles.wordpress.org/glauberglauber/\">Glauber Mota</a>, <a href=\"httpss://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"httpss://profiles.wordpress.org/goldenapples/\">goldenapples</a>, <a href=\"httpss://profiles.wordpress.org/gziolo/\">Greg Zi&#243;?kowski</a>, <a href=\"httpss://profiles.wordpress.org/guidooffermans/\">guidooffermans</a>, <a href=\"httpss://profiles.wordpress.org/gumacahin/\">gumacahin</a>, <a href=\"httpss://profiles.wordpress.org/hvar/\">H-var</a>, <a href=\"httpss://profiles.wordpress.org/hakre/\">hakre</a>, <a href=\"httpss://profiles.wordpress.org/happiryu/\">happiryu</a>, <a href=\"httpss://profiles.wordpress.org/hareesh-pillai/\">Hareesh</a>, <a href=\"httpss://profiles.wordpress.org/isharis/\">Haris Zulfiqar</a>, <a href=\"httpss://profiles.wordpress.org/harrym/\">harrym</a>, <a href=\"httpss://profiles.wordpress.org/harshbarach/\">harshbarach</a>, <a href=\"httpss://profiles.wordpress.org/azhiyadev/\">Hauwa Abashiya</a>, <a href=\"httpss://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"httpss://profiles.wordpress.org/helen/\">Helen Hou-Sandí</a>, <a href=\"httpss://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"httpss://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"httpss://profiles.wordpress.org/hoasi/\">HoaSi</a>, <a href=\"httpss://profiles.wordpress.org/hongnizzle/\">Hong Nga Nguyen</a>, <a href=\"httpss://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"httpss://profiles.wordpress.org/hlashbrooke/\">Hugh Lashbrooke</a>, <a href=\"httpss://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"httpss://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a>, <a href=\"httpss://profiles.wordpress.org/gsayed786/\">Imran Sayed</a>, <a href=\"httpss://profiles.wordpress.org/ingereck/\">ingereck</a>, <a href=\"httpss://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"httpss://profiles.wordpress.org/iqbalbary/\">iqbalbary</a>, <a href=\"httpss://profiles.wordpress.org/ireneyoast/\">Irene Strikkers</a>, <a href=\"httpss://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"httpss://profiles.wordpress.org/jagirbaheshwp/\">jagirbaheshwp</a>, <a href=\"httpss://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"httpss://profiles.wordpress.org/twentyzerotwo/\">Jake Whiteley</a>, <a href=\"httpss://profiles.wordpress.org/jamescollins/\">James Collins</a>, <a href=\"httpss://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"httpss://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"httpss://profiles.wordpress.org/jamesros161/\">James Rosado</a>, <a href=\"httpss://profiles.wordpress.org/jameslnewell/\">jameslnewell</a>, <a href=\"httpss://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"httpss://profiles.wordpress.org/javidalkaruzi/\">Janvo Aldred</a>, <a href=\"httpss://profiles.wordpress.org/jaredcobb/\">Jared Cobb</a>, <a href=\"httpss://profiles.wordpress.org/jaswrks/\">Jason Caldwell</a>, <a href=\"httpss://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"httpss://profiles.wordpress.org/javorszky/\">javorszky</a>, <a href=\"httpss://profiles.wordpress.org/jaydeep-rami/\">Jaydip Rami</a>, <a href=\"httpss://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"httpss://profiles.wordpress.org/jeffmatson/\">Jeff Matson</a>, <a href=\"httpss://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"httpss://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"httpss://profiles.wordpress.org/jeffikus/\">jeffikus</a>, <a href=\"httpss://profiles.wordpress.org/jellypixel/\">jellypixel</a>, <a href=\"httpss://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"httpss://profiles.wordpress.org/jeremyescott/\">Jeremy Scott</a>, <a href=\"httpss://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"httpss://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"httpss://profiles.wordpress.org/jeryj/\">jeryj</a>, <a href=\"httpss://profiles.wordpress.org/jeslen/\">Jeslen Bucci</a>, <a href=\"httpss://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"httpss://profiles.wordpress.org/jfoulquier/\">jfoulquier</a>, <a href=\"httpss://profiles.wordpress.org/jimyaghi/\">jimyaghi</a>, <a href=\"httpss://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"httpss://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"httpss://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"httpss://profiles.wordpress.org/joelyoder/\">Joel Yoder</a>, <a href=\"httpss://profiles.wordpress.org/joelclimbsthings/\">joelclimbsthings</a>, <a href=\"httpss://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"httpss://profiles.wordpress.org/johannadevos/\">Johanna de Vos</a>, <a href=\"httpss://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"httpss://profiles.wordpress.org/johnny5/\">John Godley</a>, <a href=\"httpss://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"httpss://profiles.wordpress.org/jb510/\">Jon Brown</a>, <a href=\"httpss://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"httpss://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"httpss://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"httpss://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"httpss://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"httpss://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"httpss://profiles.wordpress.org/jordesign/\">jordesign</a>, <a href=\"httpss://profiles.wordpress.org/koke/\">Jorge Bernal</a>, <a href=\"httpss://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"httpss://profiles.wordpress.org/joseaneto/\">joseaneto</a>, <a href=\"httpss://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"httpss://profiles.wordpress.org/joshlevinson/\">Josh Levinson</a>, <a href=\"httpss://profiles.wordpress.org/shelob9/\">Josh Pollock</a>, <a href=\"httpss://profiles.wordpress.org/joshuatf/\">joshuatf</a>, <a href=\"httpss://profiles.wordpress.org/tai/\">JOTAKI, Taisuke</a>, <a href=\"httpss://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"httpss://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"httpss://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"httpss://profiles.wordpress.org/junaidbhura/\">Junaid Bhura</a>, <a href=\"httpss://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"httpss://profiles.wordpress.org/justlevine/\">justlevine</a>, <a href=\"httpss://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"httpss://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"httpss://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a>, <a href=\"httpss://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"httpss://profiles.wordpress.org/karthikbhatb/\">Karthik Bhat</a>, <a href=\"httpss://profiles.wordpress.org/kasparsd/\">Kaspars</a>, <a href=\"httpss://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"httpss://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"httpss://profiles.wordpress.org/kelsu02/\">Kelly R</a>, <a href=\"httpss://profiles.wordpress.org/kellybleck/\">kellybleck</a>, <a href=\"httpss://profiles.wordpress.org/kellylawrence/\">kellylawrence</a>, <a href=\"httpss://profiles.wordpress.org/khag7/\">Kevin Hagerty</a>, <a href=\"httpss://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a>, <a href=\"httpss://profiles.wordpress.org/kipperlenny/\">Kipperlenny</a>, <a href=\"httpss://profiles.wordpress.org/kirilzh/\">Kiril Zhelyazkov</a>, <a href=\"httpss://profiles.wordpress.org/kburgoine/\">Kirsty Burgoine</a>, <a href=\"httpss://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a>, <a href=\"httpss://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"httpss://profiles.wordpress.org/kittmedia/\">KittMedia</a>, <a href=\"httpss://profiles.wordpress.org/kjbenk/\">kjbenk</a>, <a href=\"httpss://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"httpss://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"httpss://profiles.wordpress.org/komagain/\">komagain</a>, <a href=\"httpss://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"httpss://profiles.wordpress.org/krupajnanda/\">Krupa</a>, <a href=\"httpss://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a>, <a href=\"httpss://profiles.wordpress.org/landau/\">landau</a>, <a href=\"httpss://profiles.wordpress.org/lmurillom/\">Larissa Murillo</a>, <a href=\"httpss://profiles.wordpress.org/latifi/\">latifi</a>, <a href=\"httpss://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a>, <a href=\"httpss://profiles.wordpress.org/laurora/\">Laura Nelson</a>, <a href=\"httpss://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"httpss://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"httpss://profiles.wordpress.org/gamerz/\">Lester Chan</a>, <a href=\"httpss://profiles.wordpress.org/leutrimh/\">Leutrim Husaj</a>, <a href=\"httpss://profiles.wordpress.org/limera1n/\">lim3ra</a>, <a href=\"httpss://profiles.wordpress.org/lpointet/\">Lionel Pointet</a>, <a href=\"httpss://profiles.wordpress.org/llizard/\">llizard</a>, <a href=\"httpss://profiles.wordpress.org/louislaugesen/\">Louis</a>, <a href=\"httpss://profiles.wordpress.org/lucagrandicelli/\">Luca Grandicelli</a>, <a href=\"httpss://profiles.wordpress.org/_luigi/\">Luigi Cavalieri</a>, <a href=\"httpss://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"httpss://profiles.wordpress.org/lumne/\">Lumne</a>, <a href=\"httpss://profiles.wordpress.org/mager19/\">mager19</a>, <a href=\"httpss://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a>, <a href=\"httpss://profiles.wordpress.org/mahesh901122/\">Mahesh Waghmare</a>, <a href=\"httpss://profiles.wordpress.org/mailnew2ster/\">mailnew2ster</a>, <a href=\"httpss://profiles.wordpress.org/shamimmoeen/\">Mainul Hassan Main</a>, <a href=\"httpss://profiles.wordpress.org/malinajirka/\">malinajirka</a>, <a href=\"httpss://profiles.wordpress.org/manzwebdesigns/\">manzwebdesigns</a>, <a href=\"httpss://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"httpss://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"httpss://profiles.wordpress.org/chaton666/\">Marie Comet</a>, <a href=\"httpss://profiles.wordpress.org/marijnkoopman/\">Marijn Koopman</a>, <a href=\"httpss://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"httpss://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"httpss://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"httpss://profiles.wordpress.org/markparnell/\">Mark Parnell</a>, <a href=\"httpss://profiles.wordpress.org/markscottrobson/\">Mark Robson</a>, <a href=\"httpss://profiles.wordpress.org/marks99/\">Mark Smallman</a>, <a href=\"httpss://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"httpss://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"httpss://profiles.wordpress.org/markshep/\">markshep</a>, <a href=\"httpss://profiles.wordpress.org/m-e-h/\">Marty Helmick</a>, <a href=\"httpss://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"httpss://profiles.wordpress.org/wetah/\">Mateus Machado Luna</a>, <a href=\"httpss://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"httpss://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"httpss://profiles.wordpress.org/webdevmattcrom/\">Matt Cromwell</a>, <a href=\"httpss://profiles.wordpress.org/gothickgothickorguk/\">Matt Gibson</a>, <a href=\"httpss://profiles.wordpress.org/mattkeys/\">Matt Keys</a>, <a href=\"httpss://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"httpss://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"httpss://profiles.wordpress.org/mattchowning/\">mattchowning</a>, <a href=\"httpss://profiles.wordpress.org/pfefferle/\">Matthias Pfefferle</a>, <a href=\"httpss://profiles.wordpress.org/mattoperry/\">mattoperry</a>, <a href=\"httpss://profiles.wordpress.org/mayankmajeji/\">Mayank Majeji</a>, <a href=\"httpss://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>, <a href=\"httpss://profiles.wordpress.org/megphillips91/\">Meg Phillips</a>, <a href=\"httpss://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"httpss://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"httpss://profiles.wordpress.org/mgol/\">mgol</a>, <a href=\"httpss://profiles.wordpress.org/mgrenierfarmmedia/\">mgrenierfarmmedia</a>, <a href=\"httpss://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a>, <a href=\"httpss://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"httpss://profiles.wordpress.org/m_butcher/\">Michele Butcher-Jones</a>, <a href=\"httpss://profiles.wordpress.org/michelleames/\">Michelle Frechette</a>, <a href=\"httpss://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"httpss://profiles.wordpress.org/mihdan/\">mihdan</a>, <a href=\"httpss://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"httpss://profiles.wordpress.org/mikelopez/\">mikelopez</a>, <a href=\"httpss://profiles.wordpress.org/mikeyarce/\">Mikey Arce</a>, <a href=\"httpss://profiles.wordpress.org/dimadin/\">Milan Dini?</a>, <a href=\"httpss://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"httpss://profiles.wordpress.org/eemitch/\">Mitchell Bennis</a>, <a href=\"httpss://profiles.wordpress.org/mmarco9/\">mmarco9</a>, <a href=\"httpss://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"httpss://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"httpss://profiles.wordpress.org/mopsyd/\">mopsyd</a>, <a href=\"httpss://profiles.wordpress.org/morganestes/\">Morgan Estes</a>, <a href=\"httpss://profiles.wordpress.org/gwendydd/\">Morgan Kay</a>, <a href=\"httpss://profiles.wordpress.org/man4toman/\">Morteza Geransayeh</a>, <a href=\"httpss://profiles.wordpress.org/computerguru/\">mqudsi</a>, <a href=\"httpss://profiles.wordpress.org/mreishus/\">mreishus</a>, <a href=\"httpss://profiles.wordpress.org/mrgrt/\">mrgrt</a>, <a href=\"httpss://profiles.wordpress.org/mrjoeldean/\">mrjoeldean</a>, <a href=\"httpss://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"httpss://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"httpss://profiles.wordpress.org/musicaljoeker/\">musicaljoeker</a>, <a href=\"httpss://profiles.wordpress.org/mweichert/\">mweichert</a>, <a href=\"httpss://profiles.wordpress.org/n5hzr/\">n5hzr</a>, <a href=\"httpss://profiles.wordpress.org/nabilmoqbel/\">Nabil Moqbel</a>, <a href=\"httpss://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>, <a href=\"httpss://profiles.wordpress.org/naoki0h/\">Naoki Ohashi</a>, <a href=\"httpss://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"httpss://profiles.wordpress.org/nateinaction/\">Nate Gay</a>, <a href=\"httpss://profiles.wordpress.org/nathanatmoz/\">Nathan Johnson</a>, <a href=\"httpss://profiles.wordpress.org/navanathbhosale/\">Navanath Bhosale</a>, <a href=\"httpss://profiles.wordpress.org/naveenkharwar/\">Naveen Kharwar</a>, <a href=\"httpss://profiles.wordpress.org/lcyh78/\">Neil James (lcyh78)</a>, <a href=\"httpss://profiles.wordpress.org/nendeb55/\">nendeb</a>, <a href=\"httpss://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"httpss://profiles.wordpress.org/arealnobrainer/\">Netravnen</a>, <a href=\"httpss://profiles.wordpress.org/nicomollet/\">nicomollet</a>, <a href=\"httpss://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"httpss://profiles.wordpress.org/nielslange/\">Niels Lange</a>, <a href=\"httpss://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"httpss://profiles.wordpress.org/nikolam/\">Nikola</a>, <a href=\"httpss://profiles.wordpress.org/nbachiyski/\">Nikolay Bachiyski</a>, <a href=\"httpss://profiles.wordpress.org/njbrown/\">njbrown</a>, <a href=\"httpss://profiles.wordpress.org/nlpro/\">nlpro</a>, <a href=\"httpss://profiles.wordpress.org/noahtallen/\">Noah Allen</a>, <a href=\"httpss://profiles.wordpress.org/noahshrader/\">noahshrader</a>, <a href=\"httpss://profiles.wordpress.org/nourma/\">nourma</a>, <a href=\"httpss://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"httpss://profiles.wordpress.org/oguzkocer/\">oguzkocer</a>, <a href=\"httpss://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"httpss://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"httpss://profiles.wordpress.org/omarreiss/\">Omar Reiss</a>, <a href=\"httpss://profiles.wordpress.org/oolleegg55/\">oolleegg55</a>, <a href=\"httpss://profiles.wordpress.org/optimizingmatters/\">Optimizing Matters</a>, <a href=\"httpss://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"httpss://profiles.wordpress.org/ovann86/\">ovann86</a>, <a href=\"httpss://profiles.wordpress.org/ovenall/\">ovenall</a>, <a href=\"httpss://profiles.wordpress.org/oxyc/\">oxyc</a>, <a href=\"httpss://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"httpss://profiles.wordpress.org/jhonqwerty/\">pabloselin</a>, <a href=\"httpss://profiles.wordpress.org/paddy/\">Paddy</a>, <a href=\"httpss://profiles.wordpress.org/pankajmohale/\">Pankaj Mohale</a>, <a href=\"httpss://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"httpss://profiles.wordpress.org/casiepa/\">Pascal Casier</a>, <a href=\"httpss://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"httpss://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"httpss://profiles.wordpress.org/pabline/\">Paul Bunkham</a>, <a href=\"httpss://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"httpss://profiles.wordpress.org/paulstonier/\">Paul Stonier</a>, <a href=\"httpss://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"httpss://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a>, <a href=\"httpss://profiles.wordpress.org/pentatonicfunk/\">pentatonicfunk</a>, <a href=\"httpss://profiles.wordpress.org/pputzer/\">pepe</a>, <a href=\"httpss://profiles.wordpress.org/pekz0r/\">Peter Elmered</a>, <a href=\"httpss://profiles.wordpress.org/psmits1567/\">Peter Smits</a>, <a href=\"httpss://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"httpss://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"httpss://profiles.wordpress.org/pierlo/\">Pierre Gordon</a>, <a href=\"httpss://profiles.wordpress.org/decrecementofeliz/\">Pilar Mera</a>, <a href=\"httpss://profiles.wordpress.org/wppinar/\">Pinar</a>, <a href=\"httpss://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a>, <a href=\"httpss://profiles.wordpress.org/pishmishy/\">pishmishy</a>, <a href=\"httpss://profiles.wordpress.org/pkvillanueva/\">pkvillanueva</a>, <a href=\"httpss://profiles.wordpress.org/prashanttholia/\">prashanttholia</a>, <a href=\"httpss://profiles.wordpress.org/pratikkry/\">Pratik K. Yadav</a>, <a href=\"httpss://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"httpss://profiles.wordpress.org/presstoke/\">presstoke</a>, <a href=\"httpss://profiles.wordpress.org/prionkor/\">prionkor</a>, <a href=\"httpss://profiles.wordpress.org/psealock/\">psealock</a>, <a href=\"httpss://profiles.wordpress.org/puneetsahalot/\">Puneet Sahalot</a>, <a href=\"httpss://profiles.wordpress.org/itsjonq/\">Q</a>, <a href=\"httpss://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"httpss://profiles.wordpress.org/rajanit2000/\">Rajan Vijayan</a>, <a href=\"httpss://profiles.wordpress.org/rajeshsingh520/\">rajeshsingh520</a>, <a href=\"httpss://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"httpss://profiles.wordpress.org/jontyravi/\">Ravi Vaghela</a>, <a href=\"httpss://profiles.wordpress.org/ravipatel/\">ravipatel</a>, <a href=\"httpss://profiles.wordpress.org/rebasaurus/\">rebasaurus</a>, <a href=\"httpss://profiles.wordpress.org/redstar504/\">redstar504</a>, <a href=\"httpss://profiles.wordpress.org/regankhadgi/\">Regan Khadgi</a>, <a href=\"httpss://profiles.wordpress.org/renehermi/\">Rene Hermenau</a>, <a href=\"httpss://profiles.wordpress.org/retlehs/\">retlehs</a>, <a href=\"httpss://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"httpss://profiles.wordpress.org/riaanlom/\">riaanlom</a>, <a href=\"httpss://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"httpss://profiles.wordpress.org/ribaricplusplus/\">ribaricplusplus</a>, <a href=\"httpss://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"httpss://profiles.wordpress.org/rnaby/\">Rnaby</a>, <a href=\"httpss://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"httpss://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a>, <a href=\"httpss://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"httpss://profiles.wordpress.org/rogerlos/\">rogerlos</a>, <a href=\"httpss://profiles.wordpress.org/roikles/\">roikles</a>, <a href=\"httpss://profiles.wordpress.org/rolfsiebers/\">Rolf Siebers</a>, <a href=\"httpss://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a>, <a href=\"httpss://profiles.wordpress.org/roo2/\">roo2</a>, <a href=\"httpss://profiles.wordpress.org/rtagliento/\">rtagliento</a>, <a href=\"httpss://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a>, <a href=\"httpss://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a>, <a href=\"httpss://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"httpss://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"httpss://profiles.wordpress.org/soean/\">S&#246;ren Wrede</a>, <a href=\"httpss://profiles.wordpress.org/sabrinazeidan/\">Sabrina Zeidan</a>, <a href=\"httpss://profiles.wordpress.org/saeedfard/\">Saeed Fard</a>, <a href=\"httpss://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a>, <a href=\"httpss://profiles.wordpress.org/samful/\">Sam Fullalove</a>, <a href=\"httpss://profiles.wordpress.org/sswebster/\">Sam Webster</a>, <a href=\"httpss://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"httpss://profiles.wordpress.org/sanzeeb3/\">Sanjeev Aryal</a>, <a href=\"httpss://profiles.wordpress.org/saqibameen/\">Saqib Ameen</a>, <a href=\"httpss://profiles.wordpress.org/sarahricker/\">Sarah Ricker</a>, <a href=\"httpss://profiles.wordpress.org/sarayourfriend/\">sarayourfriend</a>, <a href=\"httpss://profiles.wordpress.org/sawanoboly/\">sawanoboly</a>, <a href=\"httpss://profiles.wordpress.org/scarolan/\">scarolan</a>, <a href=\"httpss://profiles.wordpress.org/l3rady/\">Scott Cariss</a>, <a href=\"httpss://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"httpss://profiles.wordpress.org/scribu/\">scribu</a>, <a href=\"httpss://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"httpss://profiles.wordpress.org/seanpaulrasmussen/\">seanpaulrasmussen</a>, <a href=\"httpss://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"httpss://profiles.wordpress.org/sebsz/\">SeBsZ</a>, <a href=\"httpss://profiles.wordpress.org/senning/\">Senning</a>, <a href=\"httpss://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"httpss://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"httpss://profiles.wordpress.org/sergioestevao/\">SergioEstevao</a>, <a href=\"httpss://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"httpss://profiles.wordpress.org/sncoker/\">Shawntelle Coker</a>, <a href=\"httpss://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"httpss://profiles.wordpress.org/shramee/\">shramee</a>, <a href=\"httpss://profiles.wordpress.org/sresok/\">Simon Resok</a>, <a href=\"httpss://profiles.wordpress.org/sirreal/\">sirreal</a>, <a href=\"httpss://profiles.wordpress.org/smerriman/\">smerriman</a>, <a href=\"httpss://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"httpss://profiles.wordpress.org/sproutchris/\">sproutchris</a>, <a href=\"httpss://profiles.wordpress.org/stulab/\">St&#233;phane Treilhou</a>, <a href=\"httpss://profiles.wordpress.org/metodiew/\">Stanko Metodiev</a>, <a href=\"httpss://profiles.wordpress.org/garubi/\">Stefano Garuti</a>, <a href=\"httpss://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"httpss://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"httpss://profiles.wordpress.org/sterndata/\">Steven Stern (sterndata)</a>, <a href=\"httpss://profiles.wordpress.org/stevenlinx/\">stevenlinx</a>, <a href=\"httpss://profiles.wordpress.org/stoyangeorgiev/\">Stoyan Georgiev</a>, <a href=\"httpss://profiles.wordpress.org/sudoshreyansh/\">sudoshreyansh</a>, <a href=\"httpss://profiles.wordpress.org/smub/\">Syed Balkhi</a>, <a href=\"httpss://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"httpss://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"httpss://profiles.wordpress.org/utz119/\">TeBenachi</a>, <a href=\"httpss://profiles.wordpress.org/techboyg5/\">techboyg5</a>, <a href=\"httpss://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"httpss://profiles.wordpress.org/thefarlilacfield/\">thefarlilacfield</a>, <a href=\"httpss://profiles.wordpress.org/thelmachido/\">Thelma Mutete</a>, <a href=\"httpss://profiles.wordpress.org/thib3113/\">thib3113</a>, <a href=\"httpss://profiles.wordpress.org/thijsvanloef/\">thijsvanloef</a>, <a href=\"httpss://profiles.wordpress.org/webzunft/\">Thomas M</a>, <a href=\"httpss://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a>, <a href=\"httpss://profiles.wordpress.org/thomaslhotta/\">thomaslhotta</a>, <a href=\"httpss://profiles.wordpress.org/timhavinga/\">Tim Havinga</a>, <a href=\"httpss://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"httpss://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"httpss://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"httpss://profiles.wordpress.org/timotijhof/\">TimoTijhof</a>, <a href=\"httpss://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"httpss://profiles.wordpress.org/tmdesigned/\">tmdesigned</a>, <a href=\"httpss://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"httpss://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"httpss://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"httpss://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"httpss://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"httpss://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"httpss://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a>, <a href=\"httpss://profiles.wordpress.org/tray/\">tracy apps</a>, <a href=\"httpss://profiles.wordpress.org/treibstoff/\">treibstoff</a>, <a href=\"httpss://profiles.wordpress.org/trisha_cornelius/\">Trisha Cornelius</a>, <a href=\"httpss://profiles.wordpress.org/dinhtungdu/\">Tung Du</a>, <a href=\"httpss://profiles.wordpress.org/tzafrir/\">tzafrir</a>, <a href=\"httpss://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"httpss://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"httpss://profiles.wordpress.org/uxkai/\">uxkai</a>, <a href=\"httpss://profiles.wordpress.org/valentinbora/\">Valentin Bora</a>, <a href=\"httpss://profiles.wordpress.org/contact-banker/\">Varun Sharma</a>, <a href=\"httpss://profiles.wordpress.org/vcanales/\">vcanales</a>, <a href=\"httpss://profiles.wordpress.org/ravivaddweb/\">vidhiaddweb</a>, <a href=\"httpss://profiles.wordpress.org/vinayakanivase/\">Vinayak Anivase</a>, <a href=\"httpss://profiles.wordpress.org/vinita29/\">Vinita Tandulkar</a>, <a href=\"httpss://profiles.wordpress.org/usestrict/\">Vinny</a>, <a href=\"httpss://profiles.wordpress.org/virgodesign/\">virgodesign</a>, <a href=\"httpss://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"httpss://profiles.wordpress.org/webmigrates/\">Webmigrates Technologies</a>, <a href=\"httpss://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"httpss://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"httpss://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"httpss://profiles.wordpress.org/planningwrite/\">Winstina Hughes</a>, <a href=\"httpss://profiles.wordpress.org/wittich/\">wittich</a>, <a href=\"httpss://profiles.wordpress.org/worldweb/\">worldweb</a>, <a href=\"httpss://profiles.wordpress.org/y_kolev/\">Y_Kolev</a>, <a href=\"httpss://profiles.wordpress.org/yansern/\">Yan Sern</a>, <a href=\"httpss://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>, <a href=\"httpss://profiles.wordpress.org/yscik/\">yscik</a>, <a href=\"httpss://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"httpss://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, and <a href=\"httpss://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>.\n\n\n\n<p></p>\n\n\n\n<p>In addition, many thanks to all of the community volunteers who contribute in the <a href=\"httpss://wordpress.org/support/\">support forums</a>. They answer questions from people across the world, whether they are using WordPress for the first time, or they’ve been around since the first release all the way back in 2003. These releases are as successful as they are because of their efforts!</p>\n\n\n\n<p>Finally, thanks to all the community translators who helped make WordPress 5.6. available in 38 languages at the time of release. Our community translators are hard at work ensuring more languages are on their way (70 are already at 90%). If contributing to WordPress appeals to you, it’s easy to learn more. Check out <a href=\"httpss://make.wordpress.org/\">Make WordPress</a> or the <a href=\"httpss://make.wordpress.org/core/\">core development blog</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:\"9325\";s: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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"State of the Word 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"httpss://wordpress.org/news/2020/12/state-of-the-word-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 04 Dec 2020 22:55: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:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://wordpress.org/news/?p=9296\";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:110:\"State of the Word will be streamed on Facebook, YouTube, and Twitter on Thursday, Dec 17th, 2020  at 1600 UTC.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s: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:\"https://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1225:\"\n<p>State of the Word is an annual keynote address delivered by the project co-founder, Matt Mullenweg. Catch this year&#8217;s keynote in the video below!</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\'youtube-player\' width=\'632\' height=\'356\' src=\'httpss://www.youtube.com/embed/QI3qCoiuG3w?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\' sandbox=\'allow-scripts allow-same-origin allow-popups allow-presentation\'></iframe>\n</div></figure>\n\n\n\n<h3>New to State of the Word?</h3>\n\n\n\n<p>If this is your first time hearing of this talk, you’re in luck! Check out previous recordings below.</p>\n\n\n\n<ul><li><a href=\"httpss://wordpress.tv/2019/11/03/2019-state-of-the-word/\">State of the Word 2019 &#8211; WordCamp US, St. Louis</a></li><li><a href=\"httpss://wordpress.tv/2018/12/27/state-of-the-word-2018/\">State of the Word 2018 &#8211; WordCamp US, Nashville</a></li><li><a href=\"httpss://wordpress.tv/tag/state-of-the-word/\">All recordings</a></li></ul>\n\";s: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:\"9296\";s: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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: November 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://wordpress.org/news/2020/12/the-month-in-wordpress-november-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 02 Dec 2020 09:13:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:\"httpss://wordpress.org/news/?p=9283\";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:304:\"November 2020 saw several updates to the WordPress 5.6 release. Read on to follow all the latest news from the WordPress world! WordPress 5.6 updates The Core team released WordPress 5.6 Beta 3 on Nov. 2, Beta 4 on Nov. 12, release candidate 1 on Nov. 17, and release candidate 2 on Dec. 1. You [&#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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s: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:\"https://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10892:\"\n<p>November 2020 saw several updates to the WordPress 5.6 release. Read on to follow all the latest news from the WordPress world!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.6 updates</h2>\n\n\n\n<p>The Core team released WordPress 5.6 <a href=\"httpss://wordpress.org/news/2020/11/wordpress-5-6-beta-3/\">Beta 3</a> on Nov. 2, <a href=\"httpss://wordpress.org/news/2020/11/wordpress-5-6-beta-4/\">Beta 4</a> on Nov. 12, <a href=\"httpss://wordpress.org/news/2020/11/wordpress-5-6-release-candidate/\">release candidate</a> 1 on Nov. 17, and <a href=\"httpss://wordpress.org/news/2020/12/wordpress-5-6-release-candidate-2/\">release candidate 2</a> on Dec. 1. You can test the Beta versions and the release candidates by <a href=\"httpss://wordpress.org/wordpress-5.6-beta2.zip\">downloading them from WordPress.org</a> or by using the <a href=\"httpss://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin. Check out the <a href=\"httpss://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">WordPress 5.6 field guide</a> to understand the features of WordPress 5.6 and learn how you can incorporate them into your websites. WordPress 5.6 <a href=\"httpss://make.wordpress.org/core/5-6/\">will be out by Dec. 9, 2020</a>. </p>\n\n\n\n<p>But our work is never done: You can submit <a href=\"httpss://make.wordpress.org/core/2020/11/23/wordpress-5-7-whats-on-your-wishlist/\">feature suggestions for WordPress 5.7</a> by Dec. 15.&nbsp;</p>\n\n\n\n<p>Want to contribute to upcoming WordPress releases? Join the WordPress Core dev chats on Wednesdays at 5 a.m. and 8 p.m. UTC in the <a href=\"httpss://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel on the <a href=\"httpss://make.wordpress.org/chat/\">Make WordPress Slack</a>, and <a href=\"httpss://make.wordpress.org/core/tag/dev-chat/\">catch up with recaps</a> on the <a href=\"httpss://make.wordpress.org/core/\">Core team blog</a>. If you would like to help with WordPress 5.6 outreach, contact the <a href=\"httpss://make.wordpress.org/marketing/\">WordPress Marketing team</a> on the <a href=\"httpss://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> channel.</p>\n\n\n\n<h2>Gutenberg 9.3 and 9.4 are out</h2>\n\n\n\n<p>Contributor teams released Gutenberg <a href=\"httpss://make.wordpress.org/core/2020/11/04/whats-new-in-gutenberg-4-november/\">Version 9.3</a> on Nov. 4 and <a href=\"httpss://make.wordpress.org/core/2020/11/19/whats-new-in-gutenberg-18-november-2/\">Version 9.4</a> on Nov. 18. Both versions include&nbsp; several improvements to Full Site Editing (FSE) flows, in addition to bug fixes and feature upgrades. Version 9.3 is the first release that isn’t included entirely in WordPress 5.6; the version automatically enables FSE experiments when a block-based theme is active. Version 9.4 introduces some new features like percentage width for button blocks, block variation transformations, social icon support, and font size support for the list block. You can find out more about the Gutenberg roadmap in the <a href=\"httpss://make.wordpress.org/core/2020/11/02/whats-next-in-gutenberg-november-2020/\">What’s next in Gutenberg blog post</a>.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"httpss://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"httpss://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"httpss://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"httpss://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Learn WordPress updates</h2>\n\n\n\n<p>WordPress contributor teams are all set to launch <a href=\"httpss://learn.wordpress.org/\">Learn WordPress</a> in December. Community members can now watch<a href=\"httpss://learn.wordpress.org/workshops\"> video workshops</a> to learn about various WordPress topics, <a href=\"httpss://www.meetup.com/learn-wordpress-discussions/\">participate in discussion groups</a>, and use <a href=\"httpss://learn.wordpress.org/lesson-plans/\">lesson plans</a> for organizing their own workshops. Contributor teams have launched <a href=\"httpss://make.wordpress.org/community/2020/11/18/quizzes-are-now-live-on-learn-wordpress/\">quizzes</a> and are also working on <a href=\"httpss://make.wordpress.org/community/2020/11/18/standards-for-learn-wordpress-workshop-content/\">setting standards</a> for workshops.<br></p>\n\n\n\n<p>Want to contribute to Learn WordPress? You can now submit a <a href=\"httpss://learn.wordpress.org/workshop-presenter-application/\">workshop application</a> (submissions in languages other than English are welcome!), apply to become a <a href=\"httpss://learn.wordpress.org/discussion-group-leader-application/\">discussion group leader</a>, organize <a href=\"httpss://make.wordpress.org/community/handbook/virtual-events/organize-learn-wordpress-discussion-groups-for-your-wordpress-meetup/\">discussions for your local WordPress meetup group</a>, or <a href=\"httpss://make.wordpress.org/training/2020/11/25/high-priority-items-before-learn-wordpress-org-launch-part-2/\">help fix issues with existing lesson plans</a>.</p>\n\n\n\n<h2>WordPress 5.6 Translations and Polyglots survey</h2>\n\n\n\n<p>WordPress 5.6 is ready to be translated and is now at <a href=\"httpss://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a>. If you would like to contribute, <a href=\"httpss://make.wordpress.org/polyglots/2020/11/07/wordpress-5-6-ready-to-be-translated/\">check out these instructions</a> and ensure that <a href=\"httpss://make.wordpress.org/polyglots/handbook/translating/packaging-localized-wordpress/automated-release-packages/\">your locale is ready for an automated release</a>. The Polyglots team has also kicked off its <a href=\"httpss://wordpressdotorg.survey.fm/polyglots-translator-research\">translator research survey</a>. Please <a href=\"httpss://wordpressdotorg.survey.fm/polyglots-translator-research\">participate in the survey</a>, share the <a href=\"httpss://wordpressdotorg.survey.fm/polyglots-translator-research\">survey link</a> with members of your locale, and help amplify the <a href=\"httpss://www.facebook.com/WPTranslationDay/posts/1275404086174610\">Facebook</a>, <a href=\"httpss://twitter.com/TranslateWP/status/1333342595913834496\">Twitter</a>, and <a href=\"httpss://www.linkedin.com/posts/wptranslationday_makewordpress-wordpress-activity-6739110862650523648-fX8R/\">LinkedIn</a> posts about it.</p>\n\n\n\n<p>Want to help WordPress speak your language? Follow <a href=\"httpss://make.wordpress.org/polyglots\">the Polyglots team blog</a> and join the <a href=\"httpss://wordpress.slack.com/archives/C02RP50LK\">#polyglots</a> channel in <a href=\"httpss://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li><a href=\"httpss://www.php.net/releases/8.0/en.php\">PHP 8</a> is out, and WordPress 5.6 <a href=\"httpss://make.wordpress.org/core/2020/11/23/wordpress-and-php-8-0/\">aims to be &#8220;beta-compatible&#8221; with the latest PHP version</a>.</li><li>Contributor teams have kicked off <a href=\"httpss://make.wordpress.org/themes/2020/11/18/theme-previews-in-the-time-of-blocks/\">an ongoing discussion on starter content for WordPress themes</a>. Starter content for the <a href=\"https://wp-themes.com/twentytwentyone/\">Twenty Twenty One</a>, <a href=\"https://wp-themes.com/twentytwenty/\">Twenty Twenty</a>, and <a href=\"https://wp-themes.com/twentyseventeen/\">Twenty Seventeen</a> themes are now available.</li><li>The Accessibility team is <a href=\"httpss://github.com/10degrees/accessibility-statement-plugin\">testing a tool</a> to generate the structure of an accessibility statement for WordPress websites based on <a href=\"httpss://www.w3.org/WAI/planning/statements/generator/#create\">W3C standards</a>, and it is <a href=\"httpss://github.com/10degrees/accessibility-statement-plugin/issues\">requesting feedback from the community</a>.</li><li>The <a href=\"httpss://wordpressfoundation.org/\">WordPress Foundation</a> has published a <a href=\"httpss://wordpressfoundation.org/2020/open-source-workshops-november-2020-report/\">report on Open Source workshops</a> that were held online in 2020, based on the <a href=\"httpss://learn.wordpress.org/\">Learn WordPress</a> platform.</li><li>The Docs team is actively <a href=\"httpss://make.wordpress.org/docs/2020/11/12/follow-up-on-gutenberg-developer-documentation-restructuring-proposal/\">following up</a> on a proposal to <a href=\"httpss://make.wordpress.org/docs/2020/08/13/plan-proposal-for-a-new-better-structured-gutenberg-developer-documentation/\">restructure the Gutenberg developer documentation</a>.</li><li>The Community team is back with <a href=\"httpss://make.wordpress.org/community/tag/tuesdaytrainings/\">Tuesday Trainings</a>. The team is <a href=\"httpss://make.wordpress.org/community/2020/11/16/community-team-goals-for-2021-share-your-suggestions/\">also inviting suggestions on team goals for 2021</a> with a deadline of Dec. 14.</li><li>The Support team is <a href=\"httpss://make.wordpress.org/support/2020/11/changing-up-the-forum-front-page/\">making changes to the forum page</a> to improve discoverability. </li><li>Two online WordCamps took place in November: <a href=\"httpss://finland.wordcamp.org/2020/\">WordCamp Finland Online</a> and <a href=\"httpss://mexico.wordcamp.org/2020/\">WordCamp Mexico Online</a>. You can find Livestream recaps of the events on their websites. Videos will soon be available on WordPress.tv as well.</li><li>The Themes team <a href=\"httpss://make.wordpress.org/themes/2020/11/11/meeting-notes-tuesday-november-10-2020/\">made some changes to WordPress theme requirements</a>. These include removing updated CSS guidelines and a proposed plan to make WordPress themes accessibility-ready. The team is also <a href=\"httpss://make.wordpress.org/themes/2020/11/19/feedback-requested-resolution-process-for-issues-found-in-live-themes/\">requesting feedback</a> on the resolution process for issues found in live themes.</li><li>WordPress 5.6 will feature a <a href=\"httpss://make.wordpress.org/core/2020/11/05/updating-core-jquery-to-version-3-part-2/\">major jQuery change</a>, with the bundled jQuery version being updated to Version 3.5.1 and jQuery Migrate being updated to Version 3.3.2.</li><li>The <a href=\"httpss://make.wordpress.org/community/tag/wpdiversity/\">Diversity speaker training group</a> of the Community team is requesting feedback on reimagining their work. Please <a href=\"httpss://make.wordpress.org/community/2020/11/12/input-requested-re-imagining-the-work-of-the-diverse-speaker-training-group-wpdiversity/\">share your feedback as comments on the post</a> by Dec. 18.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"httpss://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</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:\"9283\";s: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:63:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 5.6 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:\"httpss://wordpress.org/news/2020/12/wordpress-5-6-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:\"Tue, 01 Dec 2020 22:09: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://wordpress.org/news/?p=9274\";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:388:\"The second release candidate for WordPress 5.6 is here! WordPress 5.6 is slated for release on December 8, 2020, and we need your help to get there—if you haven’t tried 5.6 yet, now is the time! You can test WordPress 5.6 release candidate 2 in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge nightlies” option). Or download the release [&#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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s: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:\"https://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2249:\"\n<p>The second release candidate for WordPress 5.6 is here!</p>\n\n\n\n<p>WordPress 5.6 is slated for release on <strong>December 8, 2020</strong>, and we need <em>your</em> help to get there—if you haven’t tried 5.6 yet, now is the time!</p>\n\n\n\n<p>You can test WordPress 5.6 release candidate 2 in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"httpss://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option).</li><li>Or <a href=\"httpss://wordpress.org/wordpress-5.6-RC2.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the&nbsp;Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.6 and update the <em>Tested up to</em> version in the readme file to 5.6. If you find compatibility problems, please be sure to post to the <a href=\"httpss://wordpress.org/support/forum/alphabeta/\">support forums</a>. That way, those can be figured out before the final release. </p>\n\n\n\n<p>For a more detailed breakdown of the changes included in WordPress 5.6, check out the <a href=\"httpss://wordpress.org/news/2020/10/wordpress-5-6-beta-1/\">WordPress 5.6 beta 1 post</a>. The <a href=\"httpss://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">WordPress 5.6 Field Guide</a> is also out! It’s your source for details on all the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"httpss://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>Think you found a bug?</strong> Post it to the <a href=\"httpss://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We would love to hear from you! If you’re comfortable writing a reproducible bug report you can <a href=\"httpss://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>. Don&#8217;t forget to check <a href=\"httpss://core.trac.wordpress.org/tickets/major\">the list of known bugs</a></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:\"9274\";s: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:63:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 5.6 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:\"httpss://wordpress.org/news/2020/11/wordpress-5-6-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:\"Tue, 17 Nov 2020 22:43:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://wordpress.org/news/?p=9258\";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:49:\"WordPress 5.6 Release Candidate is 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:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s: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:\"https://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3349:\"\n<p>The first release candidate for WordPress 5.6 is now available!</p>\n\n\n\n<p>This is an important milestone in the community’s progress toward the final release of WordPress 5.6.</p>\n\n\n\n<p>“Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.6 is slated for release&nbsp;on&nbsp;<strong>December 8, 2020</strong>, but we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.6 yet,&nbsp;<strong>now is the time</strong>!</p>\n\n\n\n<p>You can test the WordPress 5.6 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"httpss://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “Bleeding edge&#8221; channel and Beta/RC Only” stream options)</li><li>Or <a href=\"httpss://wordpress.org/wordpress-5.6-RC1.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the&nbsp;Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>What’s in WordPress 5.6?</h2>\n\n\n\n<p>The final release of 2020 continues the annual tradition of a new default theme that is custom built to showcase the new features and functionality of the software. Continued progress on the block editor is especially clear in this release, which brings more blocks to more places, and fewer clicks to implement your layouts.</p>\n\n\n\n<p>WordPress 5.6 also has lots of refinements to polish the developer experience. To learn more, subscribe to the&nbsp;<a href=\"httpss://make.wordpress.org/core/\">Make WordPress Core blog</a>&nbsp;and pay special attention to the&nbsp;<a href=\"httpss://make.wordpress.org/core/tag/5-6+dev-notes/\">developer notes</a>&nbsp;tag for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.6 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme file to 5.6. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"httpss://wordpress.org/support/forum/alphabeta/\">support forums</a>,&nbsp;so those can be figured out before the final release.</p>\n\n\n\n<p>The&nbsp;WordPress 5.6 Field Guide, due very shortly, will give you a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"httpss://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;This release also marks the&nbsp;<a href=\"httpss://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a>&nbsp;point of the 5.6 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the&nbsp;<a href=\"httpss://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"httpss://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"httpss://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</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:\"9258\";s: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:63:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.6 Beta 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"httpss://wordpress.org/news/2020/11/wordpress-5-6-beta-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, 12 Nov 2020 23:49:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://wordpress.org/news/?p=9249\";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:363:\"WordPress 5.6 Beta 4 is now available for testing! This software is still in development,&#160;so we recommend that you run this version on a test site. You can test the WordPress 5.6 beta in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge nightlies” option). Or download the beta here (zip). The current target for 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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s: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:\"https://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5658:\"\n<p>WordPress 5.6 Beta 4 is now available for testing!</p>\n\n\n\n<p><strong>This software is still in development,</strong>&nbsp;so we recommend that you run this version on a test site.</p>\n\n\n\n<p>You can test the WordPress 5.6 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"httpss://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option).</li><li>Or <a href=\"httpss://wordpress.org/wordpress-5.6-beta4.zip\">download the beta here (zip)</a>.</li></ul>\n\n\n\n<p>The current target for the final release is December 8, 2020. This is just over<strong> three weeks away</strong>, so your help is needed to ensure this release is tested properly.</p>\n\n\n\n<p>Thank you to all of the contributors that tested the <a href=\"httpss://wordpress.org/news/2020/11/wordpress-5-6-beta-3/\">beta 3</a> development release and provided feedback. Testing for bugs is an important part of polishing each release and a great way to contribute to WordPress.</p>\n\n\n\n<h2><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since beta 3, <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"httpss://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F04%2F2020..11%2F12%2F2020&amp;milestone=5.6&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">42 bugs</a> have been fixed. Here is a summary of a few changes included in beta 4:</p>\n\n\n\n<ul><li>There was a change to the auto-updates implementation for new installations of the software (<a href=\"httpss://core.trac.wordpress.org/ticket/50907\">#50907</a>). <em><a href=\"httpss://make.wordpress.org/core/2020/11/10/upgrade-install-component-meeting-summary-november-10-2020/\">Next steps</a>, and <a href=\"httpss://make.wordpress.org/core/2020/11/10/wp5-6-auto-update-implementation-change/\">rationale</a> are both available.</em></li><li>Added better handling of unexpected values in Site Health (<a href=\"httpss://core.trac.wordpress.org/ticket/50145\">#50145</a>).</li><li>Added a way for developers to filter the available authors list in Quick Edit (<a href=\"httpss://core.trac.wordpress.org/ticket/47685\">#47685</a>).</li><li>More accessible handling of the tag cloud widget (<a href=\"httpss://core.trac.wordpress.org/ticket/51455\">#51455</a>).</li><li><a href=\"httpss://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F04%2F2020..11%2F12%2F2020&amp;component=Media&amp;milestone=5.6&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">Multiple improvements in the Media component</a>.</li><li><a href=\"httpss://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F04%2F2020..11%2F12%2F2020&amp;component=Build%2FTest+Tools&amp;milestone=5.6&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">Multiple improvements in the Build/Test Tools component</a>.</li></ul>\n\n\n\n<p><em>To see all of the features for each Gutenberg release in detail, check out the release posts: <a href=\"httpss://make.wordpress.org/core/2020/07/22/whats-new-in-gutenberg-july-22/\">8.6</a>, <a href=\"httpss://make.wordpress.org/core/2020/08/05/whats-new-in-gutenberg-august-5/\">8.7</a>, <a href=\"httpss://make.wordpress.org/core/2020/08/19/whats-new-in-gutenberg-august-19/\">8.8</a>, <a href=\"httpss://make.wordpress.org/core/2020/09/03/whats-new-in-gutenberg-2-september/\">8.9</a>, <a href=\"httpss://make.wordpress.org/core/2020/09/16/whats-new-in-gutenberg-16-september/\">9.0</a>, <a href=\"httpss://make.wordpress.org/core/2020/10/01/whats-new-in-gutenberg-30-september/\">9.1</a>, <a href=\"httpss://make.wordpress.org/core/2020/10/21/whats-new-in-gutenberg-21-october/\">9.2</a>, and <a href=\"httpss://github.com/WordPress/gutenberg/releases/tag/v9.3.0-rc.1\">9.3</a>.</em></p>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.6 has lots of refinements to the developer experience. To keep up, subscribe to the <a href=\"httpss://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"httpss://make.wordpress.org/core/tag/5-6+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the&nbsp;<a href=\"httpss://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"httpss://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>,&nbsp;where you can also find a list of&nbsp;<a href=\"httpss://core.trac.wordpress.org/query?status=new&amp;milestone=5.6&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">known bugs</a>.</p>\n\n\n\n<p><em>Props to @tonyamork, @audrasjb for technical notes and @angelasjin,<em> </em><a href=\"httpss://profiles.wordpress.org/yvettesonneveld/\">@yvettesonneveld</a><em>, </em><a href=\"httpss://profiles.wordpress.org/cguntur/\">@cguntur</a>, <a href=\'httpss://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a> for final review.</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:\"9249\";s: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:63:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.6 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"httpss://wordpress.org/news/2020/11/wordpress-5-6-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 Nov 2020 21:23:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://wordpress.org/news/?p=9234\";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:379:\"WordPress 5.6 Beta 3 is now available for testing! This software is still in development,&#160;so we recommend that you run this version on a test site. You can test the WordPress 5.6 beta in two ways: Try the&#160;WordPress Beta Tester&#160;plugin (choose the “bleeding edge nightlies” option). Or&#160;download the beta here&#160;(zip). The current target for 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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s: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:\"https://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5206:\"\n<p>WordPress 5.6 Beta 3 is now available for testing!</p>\n\n\n\n<p><strong>This software is still in development,</strong>&nbsp;so we recommend that you run this version on a test site.</p>\n\n\n\n<p>You can test the WordPress 5.6 beta in two ways:</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"httpss://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option).</li><li>Or&nbsp;<a href=\"httpss://wordpress.org/wordpress-5.6-beta3.zip\">download the beta here&nbsp;(zip)</a>.</li></ul>\n\n\n\n<p>The current target for the final release is December 8, 2020. This is just&nbsp;<strong>five weeks away</strong>, so your help is needed to ensure this release is tested properly.</p>\n\n\n\n<p>Thank you to all of the contributors that tested the&nbsp;<a href=\"httpss://wordpress.org/news/2020/10/wordpress-5-6-beta-2/\">beta 2&nbsp;</a>development release and provided feedback. Testing for bugs is an important part of polishing each release and a great way to contribute to WordPress.</p>\n\n\n\n<h2><strong>Some Highlights</strong></h2>\n\n\n\n<p>Since&nbsp;beta 2,&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"httpss://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F28%2F2020..11%2F03%2F2020&amp;milestone=5.6&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">20 bugs</a>&nbsp;have been fixed. Here is a summary of a few changes included in beta 3:</p>\n\n\n\n<ul><li>Added block patterns for Twenty Twenty (see&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"httpss://core.trac.wordpress.org/ticket/51098\">#51098</a>) and Twenty Nineteen (see&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"httpss://core.trac.wordpress.org/ticket/51099\">#51099</a>) themes.</li><li>Added theme support for navigation-widgets (see&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"httpss://core.trac.wordpress.org/ticket/51445\">#51445</a>).</li><li>Fixed incorrect slashes in the URL if the parent is empty for REST API (see&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"httpss://core.trac.wordpress.org/ticket/44745\">#44745</a>).</li><li>Added a test to Site Health to verify that the&nbsp;<code>Authorization</code>&nbsp;header is working as expected for Application Passwords (see&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"httpss://core.trac.wordpress.org/ticket/51638\">#51638</a>).</li><li>10 additional bugs fixed in the block editor (see&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"httpss://github.com/WordPress/gutenberg/pull/26588\">#26588</a>).</li></ul>\n\n\n\n<p>To see all of the features for each Gutenberg release in detail, check out the release posts:&nbsp;<a href=\"httpss://make.wordpress.org/core/2020/07/22/whats-new-in-gutenberg-july-22/\">8.6</a>,&nbsp;<a href=\"httpss://make.wordpress.org/core/2020/08/05/whats-new-in-gutenberg-august-5/\">8.7</a>,&nbsp;<a href=\"httpss://make.wordpress.org/core/2020/08/19/whats-new-in-gutenberg-august-19/\">8.8</a>,&nbsp;<a href=\"httpss://make.wordpress.org/core/2020/09/03/whats-new-in-gutenberg-2-september/\">8.9</a>,&nbsp;<a href=\"httpss://make.wordpress.org/core/2020/09/16/whats-new-in-gutenberg-16-september/\">9.0</a>,&nbsp;<a href=\"httpss://make.wordpress.org/core/2020/10/01/whats-new-in-gutenberg-30-september/\">9.1</a>, <a href=\"httpss://make.wordpress.org/core/2020/10/21/whats-new-in-gutenberg-21-october/\">9.2</a>, and <a href=\"httpss://github.com/WordPress/gutenberg/releases/tag/v9.3.0-rc.1\">9.3</a>.</p>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.6 has lots of refinements to the developer experience as well. To keep up, subscribe to the&nbsp;<a href=\"httpss://make.wordpress.org/core/\">Make WordPress Core blog</a>&nbsp;and pay special attention to the&nbsp;<a href=\"httpss://make.wordpress.org/core/tag/5-6+dev-notes/\">developers’ notes</a>&nbsp;for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the&nbsp;<a href=\"httpss://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"httpss://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>,&nbsp;where you can also find a list of&nbsp;<a href=\"httpss://core.trac.wordpress.org/query?status=new&amp;milestone=5.6&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">known bugs</a>.</p>\n\n\n\n<p><em>Props to <a href=\'httpss://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a> for help and <a href=\'httpss://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>  for final review.</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:\"9234\";s: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:57:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"The Month in WordPress: October 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"httpss://wordpress.org/news/2020/11/the-month-in-wordpress-october-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 02 Nov 2020 18:14: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: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:\"httpss://wordpress.org/news/?p=9225\";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:\"October 2020 was a notable month for WordPress lovers, thanks to the release of several products and updates. Read on to keep up with all the latest news! The 2020 WordPress Annual Survey is out The team published the 2020 WordPress Annual survey —&#160; to help those who build WordPress to understand more about our [&#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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s: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:\"https://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11855:\"\n<p>October 2020 was a notable month for WordPress lovers, thanks to the release of several products and updates. Read on to keep up with all the latest news!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The 2020 WordPress Annual Survey is out</h2>\n\n\n\n<p>The team published the <a href=\"httpss://wordpressdotorg.survey.fm/wordpress-2020-survey-english\">2020 WordPress Annual survey</a> —&nbsp; to help those who build WordPress to understand more about our software usage and our contributors’ experience. The Annual Survey will be open for at least 6 weeks and is available in <a href=\"httpss://wordpressdotorg.survey.fm/wordpress-2020-survey-french\">French</a>, <a href=\"httpss://wordpressdotorg.survey.fm/wordpress-2020-survey-german\">German</a>, <a href=\"httpss://wordpressdotorg.survey.fm/wordpress-2020-survey-japanese\">Japanese</a>, <a href=\"httpss://wordpressdotorg.survey.fm/wordpress-2020-survey-russian\">Russian</a>, and <a href=\"httpss://wordpressdotorg.survey.fm/wordpress-2020-survey-spanish\">Spanish</a>. The survey results (once complete) will be posted on <a href=\"httpss://wordpress.org/news/\">WordPress.org/news</a>. The<a href=\"httpss://wordpress.org/news/2020/10/take-the-2020-wordpress-annual-survey-and-view-the-2019-results/\"> 2019 survey results</a> have also been released and can now be viewed as <a href=\"httpss://docs.google.com/presentation/d/1FI7eEvSB5SHTSILIBpwOmH9rBffgD6mFnnqSkrEScYo/edit\">slides</a> or downloaded in <a href=\"httpss://www.dropbox.com/sh/bq62sficymopgos/AAA-wx73cDviVG84NSCTgjNDa?dl=0\">PDF format</a>.&nbsp;</p>\n\n\n\n<h2>WordPress Translation celebrations spanned four weeks</h2>\n\n\n\n<p>The last week of September and most of October were focused on recruiting and encouraging polyglot contributors to the WordPress translation project. What was originally envisioned as a single-day event lasted 24 days! The Polyglots and Marketing Teams are exploring how future mini-events can be supported to continue building the momentum. Recordings of the live talks and interviews with contributors are available <a href=\"httpss://www.youtube.com/playlist?list=PLCVEqsAbLfffK5WzOT9BhPsh82HgM8vj1\">on YouTube</a>. Write-ups from the different events are <a href=\"httpss://wptranslationday.org/\">on the WPTranslationDay website</a>. </p>\n\n\n\n<p>Want to help WordPress speak your own language? Follow <a href=\"httpss://make.wordpress.org/polyglots\">the Polyglots team blog</a> and join the <a href=\"httpss://wordpress.slack.com/archives/C02RP50LK\">#polyglots</a> channel in <a href=\"httpss://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.&nbsp;</p>\n\n\n\n<h2>WordPress maintenance and beta releases</h2>\n\n\n\n<p>The Core team released <a href=\"httpss://make.wordpress.org/core/2020/10/30/wordpress-5-5-3-release-some-technical-details/\">WordPress 5.5.3 on Oct. 31</a>, following the release of Version <a href=\"httpss://wordpress.org/news/2020/10/wordpress-5-5-2-security-and-maintenance-release/\">5.5.2 on Oct. 29</a>. Both releases fix several bugs and security issues with WordPress. You can update to the latest version directly from your WordPress dashboard or <a href=\"httpss://wordpress.org/download/\">download</a> it now from WordPress.org.&nbsp; The team also released WordPress 5.6 <a href=\"httpss://wordpress.org/news/2020/10/wordpress-5-6-beta-1/\">Beta 1</a> on Oct. 20, followed by <a href=\"httpss://wordpress.org/news/2020/10/wordpress-5-6-beta-2/\">Beta 2 </a>on Oct. 27. When ready, the final release will include improvements to the editor, auto-updates for major releases, PHP 8 support, and the Twenty Twenty One theme. You can test the Beta versions by <a href=\"httpss://wordpress.org/wordpress-5.6-beta2.zip\">downloading them from WordPress.org</a> or using the <a href=\"httpss://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin.<br></p>\n\n\n\n<p>Want to be involved in the next release? Follow WordPress 5.6 updates on the <a href=\"httpss://make.wordpress.org/core/5-6/\">development cycle</a> and sign-up for the <a href=\"httpss://make.wordpress.org/core/2020/10/22/code-review-commit-office-hours-for-5-6/\">code review/commit office hours</a>. You can help build WordPress Core by following<a href=\"httpss://make.wordpress.org/core/\"> the Core team blog</a> and joining the <a href=\"httpss://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in <a href=\"httpss://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. If you would like to help out with WordPress 5.6 outreach, contact the <a href=\"httpss://make.wordpress.org/marketing/\">WordPress Marketing team</a> on the <a href=\"httpss://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> channel.</p>\n\n\n\n<h2>Gutenberg 9.2 is released</h2>\n\n\n\n<p><a href=\"httpss://make.wordpress.org/core/2020/10/21/whats-new-in-gutenberg-21-october/\">Version 9.2</a> of the Gutenberg plugin came out on Oct. 21. This release offers support for video subtitles, the ability to transform selected blocks into the columns block, background patterns in cover blocks, along with several exciting features such as improvements to the widget screen, as well as bug fixes. You can find out more about the Gutenberg roadmap in the <a href=\"httpss://make.wordpress.org/core/2020/10/01/whats-next-in-gutenberg-october/\">What’s next in Gutenberg blog post</a>.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"httpss://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"httpss://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the #core-editor channel in <a href=\"httpss://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Learn WordPress is gearing up for launch</h2>\n\n\n\n<p>The <a href=\"httpss://learn.wordpress.org/\">Learn WordPress</a> initiative, which offers <a href=\"httpss://learn.wordpress.org/workshops/\">WordPress video workshops</a> followed by <a href=\"httpss://www.meetup.com/learn-wordpress-discussions/\">interactive discussions</a>, is aiming to put out two courses by the end of the year as part of its full launch. The team is working on creating courses and is requesting feedback from community members on the <a href=\"httpss://make.wordpress.org/community/2020/10/23/learn-wordpress-course-planning/\">planned list of courses</a>.<br><br>Want to contribute to Learn WordPress? You can now submit a <a href=\"httpss://learn.wordpress.org/workshop-presenter-application/\">workshop application</a> (submissions in non-English languages are welcome), apply to become a <a href=\"httpss://learn.wordpress.org/discussion-group-leader-application/\">discussion group leader</a>, organize <a href=\"httpss://make.wordpress.org/community/handbook/virtual-events/organize-learn-wordpress-discussion-groups-for-your-wordpress-meetup/\">discussions for your local WordPress meetup group</a>, or <a href=\"httpss://make.wordpress.org/training/2020/10/14/call-for-screenshots-contributors/\">update screenshots</a> on existing <a href=\"httpss://learn.wordpress.org/lesson-plans/\">lesson plans</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The <a href=\"httpss://make.wordpress.org/updates/2020/10/20/quarterly-updates-q3-2020/\">Q3 2020 update</a> from the WordPress project is now out!</li><li>The <a href=\"httpss://make.wordpress.org/marketing/\">WordPress Marketing team</a> has put together a list of <a href=\"httpss://github.com/wpmarketingteam/WP5.5\">WordPress 5.5 marketing resources</a> consisting of video presentations, slides, questions &amp; answers, social media posts, and more &#8211; aimed at both developers and non-developers. The team has also prepared a list of <a href=\"httpss://www.youtube.com/playlist?list=PLCVEqsAbLffcS1Rx-COZ5CZBOmXZJEe6k\">captioned screen-recordings</a> in several languages to aid new contributors. Contact the team on the <a href=\"httpss://wordpress.slack.com/archives/C0GKJ7TFA\">#marketing</a> channel if you would like to contribute to these and upcoming projects.&nbsp;</li><li>The <a href=\"httpss://make.wordpress.org/core\">WordPress Core team</a> has <a href=\"httpss://make.wordpress.org/core/2020/09/23/proposal-rest-api-authentication-application-passwords/\">announced a proposal</a> to introduce application passwords for REST API integrations.</li><li>Five online WordCamps took place in October: <a href=\"httpss://2020.rochester.wordcamp.org/\">WordCamp Rochester, NY</a>, <a href=\"httpss://austin.wordcamp.org/2020/\">WordCamp Austin, TX</a>, <a href=\"httpss://2020.italia.wordcamp.org/\">WordCamp Italia Online</a>, <a href=\"httpss://la.wordcamp.org/2020/\">WordCamp Los Angeles, CA</a>, and <a href=\"httpss://bulgaria.wordcamp.org/2020/\">WordCamp Bulgaria Online</a>. You can find livestream recaps of these camps on their websites. The camps are also in the process of uploading their videos to <a href=\"httpss://wordpress.tv/\">WordPress.tv</a>. Check out the <a href=\"httpss://central.wordcamp.org/schedule/\">WordCamp Schedule</a> to catch up with upcoming online WordCamps.</li><li>Contributor teams have started work on <a href=\"httpss://make.wordpress.org/core/2020/10/22/twenty-twenty-one-dark-mode-discussion/\">adding dark mode support for the Twenty Twenty One theme</a>. Additionally, the development of the <a href=\"httpss://make.wordpress.org/themes/2020/10/23/developing-the-full-site-editing-version-of-twenty-twenty-one/\">Full Site Editing version of Twenty Twenty One</a> has also kicked-off in the <a href=\"httpss://github.com/WordPress/theme-experiments/tree/master/twentytwentyone-blocks\">Theme Experiments GitHub repository</a>.</li><li><a href=\"httpss://buddypress.org/2020/10/buddypress-7-0-0-beta1/\">BuddyPress 7.0 beta</a>, which comes with new administration screens, blocks, and improved CLI support &#8211; is now available!&nbsp;</li><li>The Core team is <a href=\"httpss://make.wordpress.org/core/2020/10/06/revisiting-starter-content-on-org-and-beyond/\">revisiting starter content for WordPress themes</a> as part of the 5.6 release. The team also decided not to ship the widgets screen in WordPress 5.6 and have started discussions on <a href=\"httpss://make.wordpress.org/core/2020/10/29/discussion-align-the-wordpress-release-cycle-with-the-industry-standard/\">aligning the WordPress release cycle with industry standards</a>.</li><li>WordPress Accessibility enthusiasts all over the world joined hands for the first ever 24 hour <a href=\"httpss://wpaccessibilityday.org/\">WP Accessibility day</a> event on Oct. 2. You can find the recorded livestream of the event on its <a href=\"httpss://www.youtube.com/channel/UCes9XCUZd51CAigbBEGlfNg/featured?view_as=subscriber\">YouTube channel</a>.</li><li>The <a href=\"httpss://make.wordpress.org/meta\">Meta</a> team has <a href=\"httpss://make.wordpress.org/meta/2020/10/27/block-pattern-directory-ideas-and-discussion/\">kicked off a discussion</a> on setting up a <a href=\"httpss://developer.wordpress.org/block-editor/developers/block-api/block-patterns/\">Block pattern</a> directory (similar to the <a href=\"httpss://wordpress.org/support/article/block-directory/\">existing block directory</a>).&nbsp;</li><li>The <a href=\"httpss://make.wordpress.org/themes\">Themes</a> team has published a post clarifying <a href=\"httpss://make.wordpress.org/themes/2020/10/07/block-based-themes-and-wordpress-5-6/\">how Block based themes will work with WordPress 5.6</a>. Check out the <a href=\"httpss://developer.wordpress.org/block-editor/tutorials/block-based-themes/\">block-based theme tutorial</a> and its <a href=\"httpss://github.com/WordPress/gutenberg/blob/master/docs/designers-developers/developers/themes/block-based-themes.md\">documentation</a> to learn how to build block-based themes.&nbsp;</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"httpss://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</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:\"9225\";s: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:\"https://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:\"httpss://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:\"https://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	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:4:\"\n	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:\"Sat, 16 Jan 2021 18:04:00 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:\"Fri, 15 Jan 2021 21:06:47 GMT\";s:4:\"link\";s:63:\"<httpss://wordpress.org/news/wp-json/>; rel=\"httpss://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20201105205514\";}','no'),(90202,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1610863441','no'),(90203,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1610820241','no'),(90204,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1610863441','no'),(90205,'_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:\"https://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 - https://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:77:\"WPTavern: MapLibre Launches as Official Open Source Successor to Mapbox GL JS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=110489\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:199:\"httpss://wptavern.com/maplibre-launches-as-official-open-source-successor-to-mapbox-gl-js?utm_source=rss&utm_medium=rss&utm_campaign=maplibre-launches-as-official-open-source-successor-to-mapbox-gl-js\";s: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:2864:\"<p>In December, Mapbox shocked its open source contributor community with the news that <a href=\"httpss://wptavern.com/mapbox-gl-js-is-no-longer-open-source\">Mapbox GL JS version 2.0 would be released under a proprietary license</a>. The JavaScript library powers interactive, customizable vector maps on many high profile websites like CNN, The New York Times, Ancestry, Strava, Shopify, Facebook, and more. Older versions remain open source but Mapbox will only be investing in developing new features for the proprietary version going forward.</p>\n\n\n\n<p>Multiple parties started their own forks immediately following Mapbox&rsquo;s announcement. In an effort to avoid fragmentation, the community worked together to merge their ideas under one project. One month later, <a href=\"httpss://github.com/maplibre/maplibre-gl-js\">MapLibre GL</a> is now the official open source successor to Mapbox GL JS. The project&rsquo;s founders represent a diverse group of companies who relied on the open source software, including MapTiler, Elastic, StadiaMaps, Microsoft, Ceres Imaging, WhereGroup, Jawg, Stamen Design, and more.</p>\n\n\n\n<p>&ldquo;In December 2020, Mapbox released the second version of their JavaScript library for publishing maps online,&rdquo; MapTiler founder and CEO Petr Pridal said. &ldquo;However, this time all the new features were overshadowed by a change in the license: previously free as in freedom, it became closed for external contributors and usage was restricted to people with active Mapbox subscriptions. One has to pay even for loading this JavaScript library.&rdquo;</p>\n\n\n\n<p>Pridal said the MapLibre project name is a shortened form of &ldquo;Map library restarted (or reinvented),&rdquo; with <em>libre</em> referring to freedom and independence. Its founders agreed that MapLibre should be provider-independent, so developers can load maps from their preferred providers or self-hosted maps.</p>\n\n\n\n<p> The community-led fork may also become home to <a href=\"httpss://github.com/maptiler/maplibre-gl-native\">MapLibre GL Native</a>, as contributors are considering a proposal to put MapTiler&rsquo;s open source fork of Mapbox&rsquo;s mobile map SDKs for Android and iOS under the MapLibre umbrella.</p>\n\n\n\n<p>Mapbox is used by <a href=\"httpss://jetpack.com/support/jetpack-blocks/map-block/\">WordPress.com</a> as well as in Jetpack for the <a href=\"httpss://jetpack.com/support/jetpack-blocks/map-block/\">Map block</a>. The library is also used in many&nbsp;<a href=\"httpss://wordpress.org/plugins/search/mapbox/\">plugins</a>&nbsp;on WordPress.org, some with tens of thousands of users. Plugin developers who have integrated Mapbox GL JS version 1.13 or older will want to check out the <a href=\"httpss://github.com/maplibre/maplibre-gl-js\">MapLibre</a> project as an open source alternative to Mapbox&rsquo;s proprietary 2.0 update. </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, 15 Jan 2021 23:51:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://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:99:\"WPTavern: A Multi-Theme System, the Decade-Long Wait for Grandchild Themes, and Themeless Templates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=110476\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:239:\"httpss://wptavern.com/a-multi-theme-system-the-decade-long-wait-for-grandchild-themes-and-themeless-templates?utm_source=rss&utm_medium=rss&utm_campaign=a-multi-theme-system-the-decade-long-wait-for-grandchild-themes-and-themeless-templates\";s: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:5990:\"<p class=\"has-drop-cap\">Around 2010, child theming had finally caught its stride. Bigger theme shops were starting to take note, and some were implementing advanced parent themes that were meant to serve as a &ldquo;framework&rdquo; for creating child themes. The theme development community hit a bit of a brick wall amid this explosion of child theming. Grandchild themes became a topic of debate.</p>\n\n\n\n<p>One of the use cases for child themes was to protect customizations made by end-users. When the parent theme was updated, those changes remained intact within the child theme. Users could get bug fixes and enhancements without worry. It was an ingenious system.</p>\n\n\n\n<p>However, another use case for child themes was to create vast customizations of the parent theme. Many of these child themes were marketed and sold to end-users. <em>The problem?</em> There was no way for users to protect their customizations if and when the developer updated the child theme. WordPress had no grandchild theme concept or any other sort of cascading theme system beyond the parent-child relationship.</p>\n\n\n\n<p>So, the problem remained. Unsolved.</p>\n\n\n\n<p>Some businesses such as StudioPress and its Genesis parent theme thrived over the years with this system. Others moved along. In reality, child theming became a niche feature that WordPress never expanded upon in any meaningful way. Theme authors were left to their own devices. With the arrival of the customizer and the expansion of page builders, code customizations almost disappeared. Most modifications were handled via an interface launched from the WordPress admin. The average user had little need to DIY their way through custom templates. Thus began child theming&rsquo;s drizzle into near obscurity.</p>\n\n\n\n<p>Gutenberg&rsquo;s site editor, which will likely land in WordPress this year, had seemed to be the upcoming final blow to the child theming paradigm. Everyone from developers to end-users will be able to roll out custom templates directly from the WordPress admin.</p>\n\n\n\n<p>However, should we be rethinking the role of a hierarchical theming system?</p>\n\n\n\n<p>Full Site Editing is already introducing an extra level to the hierarchy. Traditionally, WordPress theming had a two-tier template hierarchy. In the future, it will add a tier for user-created templates. If that is possible, why not go ahead and throw in grandchild themes? Or, simply do away with such arbitrary limitations altogether?</p>\n\n\n\n<p>A new pull request to the Gutenberg repository essentially <a href=\"httpss://github.com/WordPress/gutenberg/pull/28131\">creates a multi-theme system</a>. Or, rather, it creates a multi-theme templating system. Aside from the <code>style.css</code>, <code>functions.php</code>, and <code>theme.json</code> files, block-based themes are essentially a collection of templates.</p>\n\n\n\n<p>The patch is proposing that users should be able to opt into this multi-template system. They would have the option to keep templates from an old theme around when they switch to a new one. While not currently implemented in the pull request, he also proposes allowing users to clone templates from their old theme.</p>\n\n\n\n<p>&ldquo;In recent months, there have been whispers around the future possibility of multiple themes being active, templates being &lsquo;themeless,&rsquo; etc.,&rdquo; wrote patch creator. &ldquo;This branch is an implementation of that. The idea behind this implementation is there can only be one active theme at a time, but the <code>wp_theme</code> taxonomy can be used to link up individual templates / template parts with one or more themes at a time.&rdquo;</p>\n\n\n\n<p>It does not fulfill the dreams of a decade-old grandchild theme system. However, it could provide some precedent for exploring a full hierarchical theme system.</p>\n\n\n\n<p>With the simplification and further standardization of how themes work, we should be dusting off old ideas and shoving them into a new light.</p>\n\n\n\n<p>Full Site Editing will eventually solve the grandchild theme problem regardless of whether it had intended to. With the new tier of custom user templates, the upgradability problem created years ago will simply disappear. Users will be able to readily update their parent and child themes without fear of losing customizations. WordPress will safely store their custom templates in the database. It will even keep their design changes via the Global Styles system. Maybe, just maybe, child themes will begin to reach their initial height of popularity.</p>\n\n\n\n<p>With the proposed system, users could mix and match templates from unrelated themes. If this happens, it begs the question of whether <em>theme</em> templates are even necessary.</p>\n\n\n\n<p>Last year, Rich Tabor opened a discussion on the possibility of a <a href=\"httpss://richtabor.com/the-future-of-wordpress-themes/\">single master theme</a> for WordPress. In that system, WordPress would create a set of base templates. Theme authors could simply override the pieces that they wanted. They could even pare themes down to simple <code>style.css</code> and <code>theme.json</code> files.</p>\n\n\n\n<p>That almost seems to be a recipe for bland and boring themes. However, if you couple it with a template directory on WordPress.org similar to what GutenbergHub has <a href=\"httpss://wptavern.com/gutenberg-hub-launches-landing-page-templates-directory\">already introduced</a>, users could pick and choose the templates they want. It could be both wondrous and disastrous, but I would not mind exploring the idea.</p>\n\n\n\n<p>WordPress and its Gutenberg project have a lot of options on the table. Theme building could become interesting in the next year or two.</p>\n\n\n\n<p class=\"is-style-highlight\"><strong>Update:</strong><em> some names have been removed from this post at the request of the people in question.  While this is not standard procedure, they were removed because they were not integral to the story in this instance.</em></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, 15 Jan 2021 21:04:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:83:\"WPTavern: New Local Blueprint Enables One-Click Setup for Testing Full Site Editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=110252\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:211:\"httpss://wptavern.com/new-local-blueprint-enables-one-click-setup-for-testing-full-site-editing?utm_source=rss&utm_medium=rss&utm_campaign=new-local-blueprint-enables-one-click-setup-for-testing-full-site-editing\";s: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:5484:\"<p>If you haven&rsquo;t yet tested the Gutenberg team&rsquo;s progress on the full site editing (FSE) project, WordPress developer Carrie Dils has created a <a href=\"httpss://carriedils.com/full-site-editing-blueprint-for-local/\">blueprint for Local</a> that makes it easy to jump right in. Full site editing is phase 2 on the Gutenberg roadmap and is one of the <a href=\"httpss://wptavern.com/wordpress-5-7-development-kicks-off-with-focus-on-full-site-editing\">main focuses</a> for WordPress core development in 2021. (Check out <a href=\"httpss://wptavern.com/what-is-full-site-editing-and-what-does-it-mean-for-the-future-of-wordpress\">What Is Full Site Editing and What Does It Mean for the Future of WordPress</a> for a more in-depth look at why it is critical for end users to provide feedback during its development.)</p>\n\n\n\n<p><a href=\"httpss://localwp.com/\">Local</a> is one of the most popular free development tools for WordPress that allows users to set up new testing sites with one click, along with a host of more advanced features. Blueprints make it possible for users to save any site as a Blueprint so that it can be used as a quick start setup option later. The blueprint includes all files, databases, config files, and Local settings. Dils&rsquo; <a href=\"httpss://carriedils.com/full-site-editing-blueprint-for-local/\">full site editing blueprint</a> includes the following: </p>\n\n\n\n<ul><li><a href=\"httpss://wordpress.org/plugins/gutenberg/\">Gutenberg</a>&nbsp;plugin (with &ldquo;Full Site Editing&rdquo; experiment enabled)</li><li><a href=\"httpss://github.com/WordPress/theme-experiments\">WordPress theme experiments</a>&nbsp;(these are themes with support for full site editing) with the Twenty Twenty-One Blocks theme enabled</li><li><a href=\"httpss://github.com/Automattic/theme-tools/tree/master/gutenberg-test-data\">Gutenberg test data</a>&nbsp;(demo blog posts that use the most common Gutenberg blocks)</li></ul>\n\n\n\n<p>Follow Dils&rsquo; instructions for downloading and installing the FSE blueprint on MacOS or Windows. Local does not yet have an easy way for installing and sharing blueprints to other Local users, so you will need to add it to the right place within the application&rsquo;s files. If you find that you don&rsquo;t have a Blueprints folder, it may be because it is hidden or because you have never created a blueprint before. Once the zip file is in the right location, you will see the full site editing blueprint among the advanced options when you set up a new site: </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Once your site is set up, you can start exploring the brave new world of full site editing. (Be prepared &ndash; it is far from production ready but FSE is at a critical time in its development where it needs testing from real users to be a success.) The Gutenberg plugin may need to be updated to the latest. Your new site editing playground can be launched from the Site Editor menu item. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>On the frontend you will find the Twenty Twenty Blocks theme activated. You can also test using the <a href=\"httpss://wordpress.org/themes/tt1-blocks/\">Twenty Twenty-One (TT1) Blocks theme</a>, which was added to the WordPress.org Themes directory today, or any of the other experimental block based themes included in the blueprint. Click around, explore the template browser, try editing the template parts, change the global styles, and see how it&rsquo;s coming along. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The current state of full site editing is rough. It&rsquo;s hard to tell a feature from a bug at times, but once you get familiar with navigating it you might consider joining the <a href=\"httpss://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">FSE Outreach Experiment</a>. This is an effort to test different aspects of site editing in order to ground the interface in real world feedback as it is developed. For the past few weeks, contributors have been testing the interaction between editing a post versus editing templates. </p>\n\n\n\n<p>Anne McCarthy posted the <a href=\"httpss://make.wordpress.org/test/2020/12/23/fse-program-testing-call-1-template-editing/\">first call for testing</a> to the&nbsp;<a href=\"httpss://make.wordpress.org/test/\">Make Test</a>&nbsp;blog with instructions for participants. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This call for testing is designed to explore the interaction between the two editing experiences (post vs. template editing) to make sure it&rsquo;s clear when you&rsquo;re editing each, granular saving works properly, etc. Ultimately, being able to edit templates like index, single, or archive directly is a huge leap forward compared to what&rsquo;s been possible in the past! Unlocking this level of customization gives you far more control to build the site you want and this call for testing is to help ensure it&rsquo;s as intuitive as possible.</p></blockquote>\n\n\n\n<p>The second testing challenge should be published soon. Anyone can contribute by following along with the test script and leaving comments on the post or <a href=\"httpss://github.com/WordPress/gutenberg/issues\">logging them as issues on GitHub</a>. Participants are also invited to join the&nbsp;<a href=\"httpss://make.wordpress.org/core/tag/fse-outreach-experiment/\">#fse-outreach-experiment</a>&nbsp;channel on WordPress Slack for updates or questions regarding testing.</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, 15 Jan 2021 08:21:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://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:73:\"WPTavern: Show and Hide Content via the Block Visibility WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=110411\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"httpss://wptavern.com/show-and-hide-content-via-the-block-visibility-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=show-and-hide-content-via-the-block-visibility-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5736:\"<p class=\"has-drop-cap\">Nick Diego&rsquo;s <a href=\"httpss://wordpress.org/plugins/block-visibility/\">Block Visibility</a> is not the only plugin to take on the challenge of controlling when blocks are visible on the front end. Other plugins like EditorsKit do a fine job of it. However, Block Visibility is a solution users should not overlook, even if they have already begun testing other options.</p>\n\n\n\n<p>Diego first released the plugin in August 2020. Since then, he has added routine updates that have added value without shifting its focus.</p>\n\n\n\n<p>One of the biggest reasons to use this plugin is that it is a standalone project. It is purely about doing one thing and doing it well. Its settings are all about giving users complete control over how they want to manage block visibility. From my experience with it, the plugin does its job better than alternatives.</p>\n\n\n\n<p>It may not have a large number of installs, but if its five-star rating on WordPress.org is any indication, it at least has a happy user base.</p>\n\n\n\n<p>Diego does have plans for a <a href=\"httpss://www.blockvisibilitywp.com/premium/\">pro add-on</a>. The tentative release date is set for Spring 2021. He seems to be moving forward with that launch after adding some foundational code in the recent version 1.4 release.</p>\n\n\n\n<p>&ldquo;As Block Visibility grows, there will be advanced and/or niche functionality that will be useful for certain users,&rdquo; wrote Diego in the <a href=\"httpss://www.blockvisibilitywp.com/whats-new-in-version-1-4/\">1.4 release announcement</a>. &ldquo;Think integrations with other third-party plugins. There will always be a free version of the plugin but some of these additional features will ultimately be provided by a premium (paid) add-on called Block Visibility Pro.&rdquo;</p>\n\n\n\n<p>In my previous job, one of my primary products focused on membership solutions. There is a seemingly endless number of possibilities that users dream up to control content visibility. I have little doubt that a pro add-on is necessary for catching all of the edge cases.</p>\n\n\n\n<h2>How the Plugin Works</h2>\n\n\n\n<p class=\"has-drop-cap\">Block Visibility is easy to use. End-users click a toggle switch, select from a date-picker, or tick a radio box. Their blocks are shown or hidden on the front end based on their selections. It does not get much simpler than that.</p>\n\n\n\n<p>The plugin adds a new &ldquo;Visibility&rdquo; tab for each block, which displays the visibility controls. The exception to this is for inner blocks. For example, the Columns block has controls, but the inner Column blocks do not. However, this can be enabled for inner blocks via the &ldquo;Full Control Mode&rdquo; on the plugin&rsquo;s settings screen.</p>\n\n\n\n<p>There are three primary types of options:</p>\n\n\n\n<ul><li>Hide the block from everyone.</li><li>Time-based start and stop dates for displaying.</li><li>Visibility by user role.</li></ul>\n\n\n\n<img />Block Visibility&rsquo;s controls in the inspector.\n\n\n\n<p>Hiding the block from everyone might be useful for users who are testing on a page or for blocks that are a work in progress. Start and stop dates create the potential for drip or trial content on membership-based sites, especially when combined with the role-based visibility options.</p>\n\n\n\n<p>These basic options will cover the majority of scenarios that the average user will need them for.</p>\n\n\n\n<p>One of the nicer features of the plugin is that it adds a transparent gray overlay, dashed border, and icon to each block that has visibility options set. This is shown when the block is not selected in the editor. It is one of those small touches that make the plugin useful.</p>\n\n\n\n<img />Overlay for blocks with visibility options.\n\n\n\n<p>There is one confusing piece of the UI. There are two instances where there is a &ldquo;public&rdquo; option. That label immediately makes me think that the block should be visible to everyone. However, reading the description is necessary. These options are for showing content to logged-out users only. I would rather see these two options renamed to &ldquo;logged out&rdquo; for clarity.</p>\n\n\n\n<h2>A Promising Future</h2>\n\n\n\n<p class=\"has-drop-cap\">While Block Visibility is a solid plugin right now, we are barely scratching the surface of what will be possible in the long run. In version 1.4, released two weeks ago, Diego added preliminary compatibility with Full Site Editing. This means visibility options will no longer be confined to the post or page content.</p>\n\n\n\n<p>&ldquo;Once every piece of content on a website is a &lsquo;block,&rsquo; you will be able to easily control the visibility of practically anything on a WordPress website,&rdquo; wrote Diego in the version 1.4 announcement post. &ldquo;From dynamic navigation menus to user specific headers and footers, the possibilities are endless!&rdquo;</p>\n\n\n\n<p>Gutenberg&rsquo;s site editor is a beta feature right now, but the plugin&rsquo;s integration seems to already work well. I ran a quick test to show a custom nav menu to shop customers only. I had no problems on my end.</p>\n\n\n\n<img />Setting visibility options for a menu in Gutenberg&rsquo;s site editor.\n\n\n\n<p>Users will not be limited to such basic needs in the future. Imagine showing ads in a sidebar to logged-out users. Imagine adding a time-sensitive holiday sale banner in the header. Imagine designing a homepage template that displays different content to subscribers vs. visitors.</p>\n\n\n\n<p>There are ways to do all of this today by piecing various plugins together, using custom shortcodes, or writing code. However, when an entire site is made of blocks, you only need one method to control anything&rsquo;s visibility. Literally.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Jan 2021 22:23:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:74:\"WPTavern: WordPress Proposal To Align Release Cycle With Industry Standard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=110354\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"httpss://wptavern.com/wordpress-proposal-to-align-release-cycle-with-industry-standard?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-proposal-to-align-release-cycle-with-industry-standard\";s: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:7102:\"<p class=\"has-drop-cap\">Yesterday, Francesca Marano opened a <a href=\"httpss://make.wordpress.org/core/2021/01/12/recap-and-proposal-align-the-wordpress-release-cycle-with-the-industry-standard/\">proposal for changing the phases</a> of the core WordPress release cycle. It was a recap of a <a href=\"httpss://make.wordpress.org/core/2020/10/29/discussion-align-the-wordpress-release-cycle-with-the-industry-standard/\">discussion</a> the began in October 2020. The goal is to align the platform&rsquo;s phases with the larger development industry standard.</p>\n\n\n\n<p>Aside from naming, WordPress has mostly followed the software industry in how it tackles its release cycle. Following a well-known convention can make it easier for developers outside of the WordPress ecosystem to transition into it. It would also allow developers to follow cycles of other projects, many of which are WordPress dependencies. This sort of standardization is generally viewed as a good thing throughout the software development world.</p>\n\n\n\n<p>Based on the ongoing discussions since October, there is a consensus on renaming the phases to align with the standard. The following table shows what each phase would be renamed to:</p>\n\n\n\n<table class=\"has-subtle-pale-blue-background-color has-background\"><thead><tr><th class=\"has-text-align-right text-right\">Phase</th><th>Current Name</th><th>Proposed Name</th></tr></thead><tbody><tr><td class=\"has-text-align-right text-right\"><strong>1</strong></td><td>Planning and securing team leads</td><td>Preliminary Planning</td></tr><tr><td class=\"has-text-align-right text-right\"><strong>2</strong></td><td>Development work begins</td><td>Alpha</td></tr><tr><td class=\"has-text-align-right text-right\"><strong>3</strong></td><td>Beta</td><td>Beta</td></tr><tr><td class=\"has-text-align-right text-right\"><strong>4</strong></td><td>Release candidate</td><td>Release Candidate</td></tr><tr><td class=\"has-text-align-right text-right\"><strong>5</strong></td><td>Launch</td><td>General release</td></tr></tbody></table>\n\n\n\n<p>However, this is a two-part proposal. Simply renaming the phases does not change how the release cycle works. To follow the standard strictly, WordPress would need to change when code is committed too.</p>\n\n\n\n<h2>How To Handle the Beta Phase</h2>\n\n\n\n<p class=\"has-drop-cap\">There is one point of contention with how to handle the Beta stage. The standard calls for no additional code changes other than new bug fixes introduced earlier in the cycle. For the WordPress project, this creates a problem.</p>\n\n\n\n<p>WordPress will be 18 years old this year. Over the years, it has racked up a ton of older bugs. These are often fixed later in the cycle, sometimes during the Beta stage. These older bugs may not have been a part of the Preliminary Planning phase, but does that mean they should wait until the next release to go in? Strictly following the proposal, they should be put on hold.</p>\n\n\n\n<p>It would also introduce a hard freeze on any enhancements set for the release but incomplete.</p>\n\n\n\n<p>&ldquo;I worry that we aren&rsquo;t allowing space for older bugs that aren&rsquo;t specific to the planned features in the release,&rdquo; wrote Josepha Haden in a <a href=\"httpss://make.wordpress.org/core/2020/10/29/discussion-align-the-wordpress-release-cycle-with-the-industry-standard/#comment-40391\">comment on the initial discussion</a>. &ldquo;I also worry that by calling hard freeze earlier in the process we narrow the window for feature inclusion too much. I don&rsquo;t like limiting ourselves to feature specific bugs right now, since that excludes so many of our volunteer contributors. It&rsquo;s harder to work on features since they are complex and fast-moving, and older bugs present more opportunities for casual contributors.&rdquo;</p>\n\n\n\n<p>On the flip side, there is potential that a bug fix could introduce new, unforeseen bugs. The later it is added during Beta, the less likely such bugs are noticed before the General Release phase. Waiting for the next cycle provides more time for testing.</p>\n\n\n\n<p>One of the benefits of this system is that almost no new bugs would be created during Beta. This would allow volunteers to shift more efforts to testing and fixing issues that emerged in Alpha.</p>\n\n\n\n<p>WordPress has always marched to the beat of its own drum. It can more closely follow standards while breaking free from strict confines when it makes sense to do so for the project. Beta-stage bug fixes not intended for a particular release could be handled on a case-by-case basis. We have people in leadership positions who are capable of making these calls when they arise. With automatic updates for minor releases, I am less concerned about late-stage bugs.</p>\n\n\n\n<p>Tonya Mork <a href=\"httpss://make.wordpress.org/core/2020/10/29/discussion-align-the-wordpress-release-cycle-with-the-industry-standard/#comment-40380\">proposed two solutions</a> for defect work to continue in and around the release cycle. Both would require that WordPress branch off at Beta, providing contributors an avenue to push forward fixing bugs.</p>\n\n\n\n<p>The first proposal calls for an earlier feature freeze, providing two or three weeks before Beta 1. This period at the end of the Alpha phase would be solely dedicated to defect work.</p>\n\n\n\n<p>The second solution moves this defect work to overlap the previous release&rsquo;s Beta and Release Candidate. This allows work to continue during the time between major releases. It could also shorten the overall major release cycle.</p>\n\n\n\n<p>This second solution is also consistent with Joost de Valk&rsquo;s thoughts on handling defect work. &ldquo;I think we should just branch off earlier, and keep trunk open for normal business,&rdquo; <a href=\"httpss://make.wordpress.org/core/2020/10/29/discussion-align-the-wordpress-release-cycle-with-the-industry-standard/#comment-40393\">he said on the proposal</a>. &ldquo;That way, <em>everything</em> can be worked on all the time, but it won&rsquo;t be included in the next release depending on when you commit it. That&rsquo;s fine, every piece of open source software I know in the world works like that, except for WordPress.&rdquo;</p>\n\n\n\n<p>Many plugin and theme developers already find it tough to keep up when changes drop in the Beta or Release Candidate phases. Having a clear and defined point where changes land will benefit the extension ecosystem, also helping end-users in the long run. This second solution would do that.</p>\n\n\n\n<p>There is nothing wrong with combining both solutions either.  Since the plan would be to branch off at the Beta phase, the second solution is already in place by the act of branching.  The real discussion is over whether the project should dedicate a block of time during its Alpha stage that focuses purely on bug fixes.</p>\n\n\n\n<p>Comments on the proposal are open through January 20 before moving toward a final decision.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>The next proposal: <a href=\"httpss://semver.org/\">semantic versioning</a>, anyone? <em>Anyone? Is this thing on?</em></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, 13 Jan 2021 21:52:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:97:\"WPTavern: WPScan Can Now Assign CVE Numbers for WordPress Core, Plugin, and Theme Vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=110347\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:235:\"httpss://wptavern.com/wpscan-can-now-assign-cve-numbers-for-wordpress-core-plugin-and-theme-vulnerabilities?utm_source=rss&utm_medium=rss&utm_campaign=wpscan-can-now-assign-cve-numbers-for-wordpress-core-plugin-and-theme-vulnerabilities\";s: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:3148:\"<p><a href=\"httpss://wpscan.com/\">WPScan</a>, a security company that maintains a database of WordPress vulnerabilities, has been officially designated as a CVE (Common Vulnerability and Exposures) Numbering Authority (CNA). The company joins <a href=\"httpss://cve.mitre.org/cve/request_id.html#cna_participants\">151</a>&nbsp;organizations from&nbsp;<a href=\"httpss://cve.mitre.org/cve/cna.html#cnas_growth\">25</a>&nbsp;countries that participate in the <a href=\"httpss://cve.mitre.org/\">CVE Program</a> as CNAs. These organizations are authorized to assign&nbsp;<a href=\"httpss://cve.mitre.org/about/terminology.html#cve_id\">CVE Identifiers (CVE IDs)</a>&nbsp;to vulnerabilities within their own distinct scopes of work, contributing to CVE&rsquo;s <a href=\"httpss://cve.mitre.org/cve/\">list</a>&nbsp;of records for publicly known security vulnerabilities.</p>\n\n\n\n<p>WPScan&rsquo;s scope includes WordPress core, plugin, and theme vulnerabilities. The company has catalogued more than 21,905 vulnerabilities since 2014 in its database, which it makes available to the community through an API. That API is also used by the <a href=\"httpss://wordpress.org/plugins/wpscan/\">WPScan Security Scanner</a> plugin, which is installed on 5,000+ websites. </p>\n\n\n\n<p>Being designated as a CNA helps WPScan better manage WordPress vulnerabilities by assigning them unique IDs that are recognized across the industry.</p>\n\n\n\n<p>&ldquo;Asking MITRE to assign CVEs for each of our vulnerabilities would have been too time consuming in the past,&rdquo; WPScan founder and CEO Ryan Dewhurst said. &ldquo;Although some security researchers will go through this process directly with MITRE, we didn&rsquo;t due to the volume of vulnerabilities we have to manage. And security researchers only requested them themselves very rarely. The new process means that we ourselves can assign CVE numbers directly to vulnerabilities. This will result in many more WordPress related vulnerabilities being assigned CVE numbers.&rdquo;</p>\n\n\n\n<p>WPScan is a team of three security researchers who come from penetration testing backgrounds and have worked within security consulting for the past 10 to 15 years. The company started with a simple Ruby script in 2011, which identified vulnerabilities in self-hosted WordPress sites. For the past two years, Automattic has sponsored the company&rsquo;s efforts in maintaining the database, as WPScan has transitioned to become a sustainable business by selling access to its API.</p>\n\n\n\n<p>Dewhurst said the company&rsquo;s customers include &ldquo;some of the biggest security plugins and hosting companies in the world,&rdquo; but many of them don&rsquo;t advertise the fact that use a third-party to source the vulnerabilities. Most of WPScan&rsquo;s enterprise customers are security plugins, companies, and hosts that integrate data from the vulnerability database into their own products and services.</p>\n\n\n\n<p>&ldquo;Our business is doing well,&rdquo; he said. &ldquo;Right now we are trying to find the right balance between being a business and making money, while also benefiting the community as much as possible.&rdquo; </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, 13 Jan 2021 20:52: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:\"https://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: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:73:\"WPTavern: Google Introduces Performance Report for Google News Publishers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=110267\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"httpss://wptavern.com/google-introduces-performance-report-for-google-news-publishers?utm_source=rss&utm_medium=rss&utm_campaign=google-introduces-performance-report-for-google-news-publishers\";s: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:2915:\"<p>Google has <a href=\"httpss://developers.google.com/search/blog/2021/01/google-news-performance-report\">launched</a> a new Search Console performance report for sites that appear in Google News. Publishers can now track clicks, impressions, and CTR for traffic coming from <a href=\"httpss://news.google.com/\">news.google.com</a> and the Google News apps for Android and iOS.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The report helps publishers see how often their articles appear to users in Google News and which ones performed the best. It also includes breakdowns for countries, devices, and dates to give publishers a better overall understanding of how visitors are interacting with their content through Google News. Although the date period defaults to the last three months, the data only goes as far back as December 15, 2020.</p>\n\n\n\n<p>In the past, publishers had to submit their sites to be eligible for inclusion in Google News but the policy <a href=\"httpss://support.google.com/news/publisher-center/answer/9607025\">changed in 2019</a>. Sites are now automatically considered for Top stories or the News tab of Search as long as they &ldquo;produce high-quality content and comply with Google News content policies.&rdquo; </p>\n\n\n\n<p>This new report does not include stats from the News tab on Google Search. That information was added in July 2020, when Google updated the Performance report section of its Search Console to allow publishers to filter by News. This screen also lets users compare different traffic sources, i.e. Web vs News to see the impact of articles showing up under the News tab.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The new report can be grouped by dimensions to get more specific information with different combinations of date ranges, reader locations, devices, and pages. For example, you can get a detailed look at clicks, impressions, and average CTR on a per country basis. This can also be filtered for one certain article to explore more narrow branches of the content&rsquo;s reach.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Publishers who are using AMP will want to note that this new report includes data from the canonical URL. If you have multiple versions for different devices, the report contains data for both:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Data will only be shown in the property that contains the canonical URL. Therefore, if you have both&nbsp;AMP and desktop versions of a page, the desktop property (which is usually the canonical property) will contain all the data for both AMP and desktop clicks, impressions, and CTR.</p></blockquote>\n\n\n\n<p>Google has published a <a href=\"httpss://support.google.com/webmasters/answer/10083653?hl=en&ref_topic=9384513\">help document</a> with more information on configuring the report, data discrepancies, and how to filter and compare data across groups.</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, 13 Jan 2021 03:54: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:\"https://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:72:\"WPTavern: Ask the Bartender: How to Build WordPress Themes from Scratch?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=110276\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:185:\"httpss://wptavern.com/ask-the-bartender-how-to-build-wordpress-themes-from-scratch?utm_source=rss&utm_medium=rss&utm_campaign=ask-the-bartender-how-to-build-wordpress-themes-from-scratch\";s: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:9037:\"<img />\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I would like to ask, what is the best way to learn to create WordPress themes from scratch? I would like to learn, but there seems to be no comprehensive resource for this.</p><p>Thanks for any help.</p><p>Mark</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">I have been around the WordPress community long enough to remember the days when there were sparse resources available. Those who were just starting out with theme development 15 or more years ago usually resorted to hacking away at an existing WordPress theme. Budding theme authors were building upon the shoulders of those few giants who had already taken the first steps. It was the magic of open-source at work &mdash; development learned through the act of forking.</p>\n\n\n\n<p>Maybe it is the way I learned. Perhaps it is part nostalgia for those early days of going down an unknown path and arriving at the other side with a creation of all my own. But, I still believe the best way to learn any type of development cannot be found in documentation or books (<em>says the co-author of a development book</em>).</p>\n\n\n\n<p>It is learned through trial and error.</p>\n\n\n\n<p>It is learned through hours of mangling a project and not stopping until you fix it.</p>\n\n\n\n<p>It is learned through sheer force of will, fueled by some innate passion within you that wants to see a project through. It is frustrating, but you keep going because you are having fun.</p>\n\n\n\n<p>The best developers I have had the privilege to work with were not always the most knowledgeable. They were seemingly natural problem solvers. However, they did not awake one day with this ability. They earned it through years of tackling real problems.</p>\n\n\n\n<p>First and foremost, the best resource for learning to build themes is an existing WordPress theme. Any of the default Twenty* themes are great starting points. Choose one, start making changes via your code editor, refresh your browser, and see what happens. Read the code. Look for patterns across various files.</p>\n\n\n\n<p>You will not learn theme development overnight. It will probably take a few months before you are building basic themes from scratch. It will probably be a year before you are actually good at it. However, everyone is different. The amount of time you put into it is a factor. Your preexisting development knowledge and skills can change that. Sometimes, your innate gifts and ability to learn play into it. But, you will get there with a bit of effort.</p>\n\n\n\n<p>I will be honest. The old-timers here in the community, those of us who started out early in WordPress&rsquo;s history, had some help. Tung Do, known as Small Potato at the time, wrote one of the most comprehensive tutorial series on theme development the community has ever had on his now-defunct web design blog. It was an invaluable resource for several years. It was the answer to the missing documentation that everyone was asking for.</p>\n\n\n\n<p>Theme development was also far simpler during that time. With a handful of files and templates, you could build something special.</p>\n\n\n\n<p>Today, the landscape is much different. If you want to be competitive as a theme shop owner or build custom solutions for clients, you need a broader skillset. Even as a hobbyist, you need to pick up a few more things than you would have a decade and a half ago.</p>\n\n\n\n<p>There is good news: the community is teeming with useful resources.</p>\n\n\n\n<h2>Traditional vs. Block-Based Themes</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">The theme development market is nearing an inflection point. WordPress will be introducing more and more tools for <a href=\"httpss://wptavern.com/what-is-full-site-editing-and-what-does-it-mean-for-the-future-of-wordpress\">Full Site Editing</a> in 2021, and this trend will continue in the years beyond. Traditional theme development will be around for a while &mdash; likely a few more years. However, block-based themes are the long-term bet. While there is some crossover between the two, they are entirely different systems.</p>\n\n\n\n<p>Realistically, you will need to learn both methods, especially if you have financial motives for going down this journey.</p>\n\n\n\n<p>However, you should learn traditional theme development first. This will make it easier to transition down the road. There are far more resources available too.</p>\n\n\n\n<p>Another issue with learning block-based theme development as a starting point is that you may not know whether you are at fault if something is broken. The features that make up Full Site Editing are in a rough beta stage. The experience is still a partially broken one. Beginner theme authors should not pile onto what can sometimes be a frustrating experience.</p>\n\n\n\n<p>It is time to start reading about Full Site Editing and testing block-based themes like <a href=\"httpss://wordpress.org/themes/q/\">Q</a> and <a href=\"httpss://wordpress.org/themes/block-based-bosco/\">Block-Based Bosco</a>. Then, wait for others as they become available in the <a href=\"httpss://wordpress.org/themes/tags/full-site-editing/\">theme directory.</a></p>\n\n\n\n<h2>Resources to Begin Theme Development</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">Many people will point you to starter themes, command-line scripts, and other automated tools for kick-starting your theme development journey. However, there is no substitute for building a solid foundation.</p>\n\n\n\n<p>I will assume you have some basic or intermediate HTML and CSS knowledge under your belt. If not, you should learn to build simple web pages first. Again, there is no substitute for building that foundation. It will carry you through as you get into more advanced topics. Knowing some basic PHP helps too. However, you can hack your way through your first WordPress theme with just WordPress &ldquo;template tags,&rdquo; which are technically PHP functions that sound less scary.</p>\n\n\n\n<p>Your go-to resource should be the official <a href=\"httpss://developer.wordpress.org/themes/\">theme developer handbook</a>.</p>\n\n\n\n<p>The breadth of knowledge available there was unavailable for those starting in the early days. You can build a WordPress theme from scratch by simply following along each page in the handbook.</p>\n\n\n\n<p>While it was written in 2012, ThemeShaper has a <a href=\"httpss://themeshaper.com/2012/10/22/the-themeshaper-wordpress-theme-tutorial-2nd-edition/\">17-part tutorial series</a> on developing themes from start to finish. With a few exceptions, most of the information in the tutorials is accurate. The underpinning of traditional theme development has not changed much over the years. This includes basic concepts like templates, The Loop, and similar elements.</p>\n\n\n\n<p>ThemeShaper&rsquo;s <a href=\"httpss://themeshaper.com/category/theme-development/\">Theme Development</a> category is a resource any theme author should be subscribed to. The team continues to post up-to-date tutorials on building themes. Recently, they have focused on block-based theme development. I am sure more tutorials are forthcoming as new features related to Full Site Editing unfold.</p>\n\n\n\n<p>Of course, search engines are your friends. Run into a problem? I guarantee you are not the first with that specific problem. The solution is documented somewhere across the web.</p>\n\n\n\n<p>If you want to begin block-based theme development, you will need to install the <a href=\"httpss://wordpress.org/plugins/gutenberg/\">Gutenberg</a> plugin for testing. Your resources will be limited. You will need to be a pioneer, mowing a path for others to follow. It will be a rough trek, but it also offers adventures that others have not taken.</p>\n\n\n\n<p>WordPress&rsquo;s block editor handbook has a <a href=\"httpss://developer.wordpress.org/block-editor/tutorials/block-based-themes/\">guide on creating block-based themes</a>. It makes some assumptions about your knowledge level in terms of theme development. Carolina Nymark, one of the Themes Team representatives, has a site called <a href=\"httpss://fullsiteediting.com/\">Full Site Editing</a>. It includes an extensive course that is worth taking. There is also the <a href=\"httpss://github.com/WordPress/theme-experiments\">Theme Experiments</a> repository for testing what some people are currently building.</p>\n\n\n\n<p>My strongest recommendation is to learn through trial and error while using documentation as a backup when you get stuck. Start playing around with <a href=\"httpss://wordpress.org/themes/twentytwenty/\">Twenty Twenty</a> or <a href=\"httpss://wordpress.org/themes/twentytwentyone/\">Twenty Twenty-One</a>, the two most recent default WordPress themes. Make changes. Get yourself in trouble and break things. Learn by getting yourself out of whatever hole you have dug. Every failure is part of your path toward success. Most of all, enjoy it.</p>\n\n\n\n<p>Now, I will throw this question out to our readers, many of whom are theme authors themselves.  Will you share you tips, tricks, and resources for someone who is just starting to build themes?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Jan 2021 21:58: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:18:\"Matt: Iceland Film\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"httpss://ma.tt/?p=53458\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"httpss://ma.tt/2021/01/iceland-film/\";s: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:359:\"<p>I wanted to share with you all a short film I made with the help of Stephen Bollinger, with videos I made a few years ago on a photography trip to Iceland with <a href=\"httpss://om.co/\">Om</a> and <a href=\"httpss://twitter.com/markkawano\">Mark</a>. I hope it provides five minutes of serenity in your day.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Jan 2021 21:46: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:80:\"WPTavern: Gutenberg’s Faster Performance Is Eroding Page Builders’ Dominance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=110192\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"httpss://wptavern.com/gutenbergs-faster-performance-is-eroding-page-builders-dominance?utm_source=rss&utm_medium=rss&utm_campaign=gutenbergs-faster-performance-is-eroding-page-builders-dominance\";s: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:6016:\"<p>WordPress&rsquo; block editor, colloquially still widely known as Gutenberg, is making inroads into the segment of users who have heavily relied on page builders for years. For the most part, <a href=\"httpss://publishpress.com/blog/gutenberg/growth-pagebuilders/\">page builder plugins have either declined in growth or stagnated in 2020</a>, with the exception of Elementor. In contrast, block collections with page builder features are gaining more users. Performance is becoming an important factor in this migration.</p>\n\n\n\n<p>In a post titled &ldquo;<a rel=\"noreferrer noopener\" href=\"httpss://gutenbergtimes.us1.list-manage.com/track/click?u=e3062ef0fb204dbbc2135b555&id=47325f0912&e=68ffa9a210\" target=\"_blank\">Damn.&nbsp;Gutenberg&nbsp;Smokes Elementor</a>,&rdquo; Kyle Van Deusen published benchmarks from his experience building a simple landing page using Elementor and then Gutenberg. </p>\n\n\n\n<p>&ldquo;Like any Elementor user, I&rsquo;ve become increasingly anxious about the future of Elementor and just how bloated it is,&rdquo; Van Deusen said. &ldquo;I think Google PageSpeed Insights agrees.&rdquo;</p>\n\n\n\n<p>After recreating the same design with Gutenberg and <a href=\"httpss://generateblocks.com/\">GenerateBlocks</a>, Van Deusen saw a small difference in <a href=\"httpss://gtmetrix.com/\">GTMetrix</a> scores. </p>\n\n\n\n<div class=\"wp-block-image\"><img />GTMetrix scores: Elementor vs Gutenberg</div>\n\n\n\n<p>He found the most profound difference when testing with Google&rsquo;s <a rel=\"noreferrer noopener\" href=\"httpss://developers.google.com/speed/pagespeed/insights/\" target=\"_blank\">PageSpeed Insights</a>, where Elementor scored 46% on mobile, and 83% on desktop.</p>\n\n\n\n<p>&ldquo;Because I&rsquo;ve had such poor luck getting any kind of decent scores with Elementor sites (especially on mobile), I&rsquo;ve given up using this tool,&rdquo; Van Deusen said. &ldquo;Not because it&rsquo;s not a valuable metric (in fact, it may be the most valuable since this is how Google sees things), but because there wasn&rsquo;t much I could do about it.&rdquo;</p>\n\n\n\n<p>In contrast, the page built with Gutenberg gave him a 94% score on mobile and a 99% on desktop.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>&ldquo;In terms of performance, straight out of the box; Gutenberg absolutely smokes Elementor,&rdquo; Van Deusen said. &ldquo;However, each time I&rsquo;ve taken Gutenberg for a spin, I&rsquo;ve left frustrated. As soon as I feel like I&rsquo;m getting the hang of it, eventually the wheels come off and I&rsquo;m back to installing Elementor.</p>\n\n\n\n<p>&ldquo;But when your PageSpeed Insights scores go from 46% to 94%, it&rsquo;s time to perk up and pay attention.&rdquo;</p>\n\n\n\n<p>Van Deusen said it took him more time to recreate the design in Gutenberg and he had trouble with mobile views. At the moment, he doesn&rsquo;t see switching as an advantageous move for his business.</p>\n\n\n\n<p>&ldquo;While I think we can conclusively say, at least for performance, Gutenberg is the clear winner &mdash; it&rsquo;s just not at a point where a guy like me can jump ship,&rdquo; Van Deusen said.</p>\n\n\n\n<p>&ldquo;Gutenberg is fun to play with, and I enjoy dreaming of the day when it&rsquo;s viable for me&mdash; but I like to put food on my table. Elementor still helps me do that more efficiently.&rdquo;</p>\n\n\n\n<p>In another experiment, WordPress developer Munir Kamal <a href=\"httpss://gutenberghub.com/gutenberg-vs-elementor-html-bloat/\">rebuilt Elementor&rsquo;s homepage in Gutenberg</a> to compare the HTML markup both page builders generate. The page built with Elementor includes 356 div&rsquo;s in the markup vs 77 for Gutenberg. Kamal found that Elementor generated 796 lines of code vs Gutenberg&rsquo;s 206 lines, resulting in a difference of 99kb vs 28kb respectively. </p>\n\n\n\n<p>In August 2020, DearHive, the makers of the DearFlip WordPress plugin, left CodeCanyon to sell plugins from their own site. DearHive&rsquo;s company site was built with Elementor, but suddenly Google ranking mattered for their product site now that they were selling independently from CodeCanyon. Deepak Ghimire, a software developer at the company, cited performance as the chief issue that impacted their ranking and drove them to <a href=\"httpss://medium.com/wpunbox/our-move-from-elementor-to-gutenberg-why-we-left-elementor-b525b4caa3da\">switch to Gutenberg</a>.</p>\n\n\n\n<p>&ldquo;Our page speed went from 83 with Elementor to 98 with Gutenberg,&rdquo; Ghimire said. </p>\n\n\n\n<p>Page builder plugins may still have more features at this point in time, but performance is becoming a critical consideration for those who are doing business online. In May 2021, Google plans to&nbsp;<a href=\"httpss://wptavern.com/google-search-to-add-page-experience-to-ranking-signals-in-may-2021\">introduce a new ranking signal</a>&nbsp;for Search, based on page experience as measured by&nbsp;<a href=\"httpss://web.dev/vitals/#core-web-vitals\">Core Web Vitals</a>&nbsp;metrics. Performance is an important part of delivering the kind of scores necessary to pass the Core Web Vitals assessment. This ranking signal update from Google may compel even more site owners to migrate away from slow page builders.</p>\n\n\n\n<p>For the past two years, WordPress users have been asking if Gutenberg will replace page builders. It looks more and more likely if the most popular ones remain bloated alternatives and the smaller ones keep on the same trajectory of attrition. It won&rsquo;t happen overnight, but it is bound to accelerate when full-site editing makes its debut in WordPress core. </p>\n\n\n\n<p>For those who build websites for clients, the best way to future-proof your skills is to learn how to build pages within the framework of the block editor and, if you can, learn how to build custom blocks. It&rsquo;s also a good time to be experimenting with different block collections to streamline your setup so that you don&rsquo;t have to sacrifice high performance in order to build sites efficiently.  </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Jan 2021 04:15:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: Thirty-seven\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"httpss://ma.tt/?p=53415\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"httpss://ma.tt/2021/01/thirty-seven/\";s: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:2687:\"<p>I turn 37 today. I look around and I feel incredibly lucky to be writing this after a topsy-turvy year. I have health. I have friends whom I love. These are all good reasons to feel optimistic about the future. A few unconnected thoughts today:</p>\n\n\n\n<p>My father had me when he was exactly 13,300 days old, and this year I passed that number of rotations of the Earth.</p>\n\n\n\n<p>It&#8217;s hard to plan when so much is changing, so resolutions this year haven&#8217;t felt the same. But in times like these it&#8217;s even more important to plan for the long-term. A look back, once a year, is enough to remind of what remains.</p>\n\n\n\n<p>I&#8217;m so thankful for the internet. It&#8217;s where I learned and practiced my trade. It&#8217;s where I connect every day with the most interesting and eclectic group of people I could imagine, a modern day Florence during the Renaissance. I hope to make a lot more internet and enable others to do the same.</p>\n\n\n\n<p>Many years ago I said &#8220;Technology is best&nbsp;when it brings people together.&#8221; This quote has <a href=\"httpss://www.google.com/search?q=technology+is+best+when+it+brings+people+together&tbm=isch\">taken on a life of its own on motivational posters and images</a>. When I first said it I think I had in mind WordCamps and meetups and other physical gatherings; this year it transformed for me seeing how technology brought together separated by the pandemic. This year has appeared divisive, so it&#8217;s easy to overlook how many times people came together. It&#8217;s like the old saying, it&#8217;s not how many times you fall, it&#8217;s how many times you get up. Fall thirty-six times, get up thirty-seven.</p>\n\n\n\n<p>All birthday posts: <a href=\"httpss://ma.tt/2003/01/bday/\">19</a>, <a href=\"httpss://ma.tt/2004/01/so-im-20/\">20</a>, <a href=\"httpss://ma.tt/2005/01/hot-barely-legal-matt/\">21</a>, <a href=\"httpss://ma.tt/2006/01/matt-22/\">22</a>, <a href=\"httpss://ma.tt/2007/01/twenty-three/\">23</a>, <a href=\"httpss://ma.tt/2008/01/twenty-four/\">24</a>, <a href=\"httpss://ma.tt/2009/01/twenty-five/\">25</a>, <a href=\"httpss://ma.tt/2010/01/twenty-six/\">26</a>, <a href=\"httpss://ma.tt/2011/01/twenty-seven/\">27</a>, <a href=\"httpss://ma.tt/2012/01/twenty-eight/\">28</a>, <a href=\"httpss://ma.tt/2013/01/twenty-nine/\">29</a>, <a href=\"httpss://ma.tt/2014/01/matt-3-0/\">30</a>, <a href=\"httpss://ma.tt/2015/01/thirty-one/\">31</a>, <a href=\"httpss://ma.tt/2016/01/thirty-two/\">32</a>, <a href=\"httpss://ma.tt/2017/01/thirty-three/\">33</a>, <a href=\"httpss://ma.tt/2018/01/thirty-four/\">34</a>, <a href=\"httpss://ma.tt/2019/01/thirty-five/\">35</a>, <a href=\"httpss://ma.tt/2020/01/thirty-six/\">36</a>, 37.</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Jan 2021 03:07: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:78:\"WPTavern: EatsWP Brings Virtual Restaurant Menus to the WordPress Block Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=110174\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:201:\"httpss://wptavern.com/eatswp-brings-virtual-restaurant-menus-to-the-wordpress-block-editor?utm_source=rss&utm_medium=rss&utm_campaign=eatswp-brings-virtual-restaurant-menus-to-the-wordpress-block-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5639:\"<p class=\"has-drop-cap\">Yesterday, Jack Kitterhing launched <a href=\"https://eatswp.com/\">EatsWP</a>, his new restaurant-related WordPress plugin. It is a menu creation system that works in the block editor. It also has a built-in QR code feature to work with customers&rsquo; phones.</p>\n\n\n\n<p>Kitterhing is the Product Manager at LearnDash. He is also the founder of Immerseus, a shop that builds plugins for the learning management system. He is now extending his reach with the founding of EatsWP. He contracted out the development work to a private freelancer with who he regularly works.</p>\n\n\n\n<p>&ldquo;Apart from that, it&rsquo;s just me on this project,&rdquo; said Kitterhing. &ldquo;My other business, I have five full-time employees, and so if required, one of those could be brought over for support. We, myself and my friend, took this idea to launch in under a month, which I&rsquo;m very pleased with considering that Christmas was in the middle as well.&rdquo;</p>\n\n\n\n<p>Kitterhing decided to build this plugin based on what he was seeing with small restaurant owners he knew. Some of the issues facing these single-location restaurants are with their physical menus.</p>\n\n\n\n<p>&ldquo;It&rsquo;s expensive to update them or make any changes as it requires a whole new print run,&rdquo; he said. &ldquo;By having a digital menu, they can update in minutes and generate a new QR code print. Then combine that with the current world situation, it also isn&rsquo;t very healthy to have everyone touching physical menus, so digital menus made more sense than ever.&rdquo;</p>\n\n\n\n<p><a href=\"httpss://eatswp.com/pricing/\">Pricing for the plugin</a> begins at $37 per year and increases based on the number of sites the user wants updates and support on.  Kitterhing also offers a custom menu design and setup tier.</p>\n\n\n\n<h2>How the Plugin Works</h2>\n\n\n\n<img />Editing an EatsWP menu item in the block editor.\n\n\n\n<p class=\"has-drop-cap\">At the moment, EatsWP is a simple affair. The plugin does not offer hundreds of options or every feature imaginable for a menu-type of plugin. It is a 1.0. However, for the features it does provide, it does them reasonably well. Kitterhing is off to a good start. He has set a foundation, and the only way to go from here is up.</p>\n\n\n\n<p>Where the plugin tends to shine is with its primary features, which are its array of blocks. Users begin by adding the Eats Menu block. From there, they have a selection of inner blocks they can place within the menu:</p>\n\n\n\n<ul><li>Item With Picture</li><li>Item With Picture and Addons</li><li>Item Without Picture</li><li>Item Without Picture and Addons</li><li>Eats Section Heading</li></ul>\n\n\n\n<p>In reality, most of the blocks are just prearranged sets of existing core WordPress blocks. They provide structure and loads of color options. Plus, end-users can click a button to add a &ldquo;New&rdquo; or &ldquo;Popular&rdquo; tag to their menu items. It is a nice touch.</p>\n\n\n\n<p>The color options offer some customizability. In the long term, users will likely want more design options. However, it may be prudent for the plugin author to follow core&rsquo;s lead here and implement such options as they become available in the block editor API.</p>\n\n\n\n<p>The one missing feature that should be available now is support for wide and full alignments. Kitterhing assured me this would land in the first quarter of this year.</p>\n\n\n\n<p>On top of the plugin&rsquo;s blocks, EatsWP allows end-users to generate a QR code for the page their restaurant&rsquo;s menu is on. When a customer scans the QR code with their phone, the page then opens.</p>\n\n\n\n<p>&ldquo;The QR code generation is more straightforward than most people expect,&rdquo; said Kitterhing. &ldquo;We&rsquo;re using a well-known QR code generation library. You then simply select the page your menu is on, generate the QR code, print it off, or show it on your website and you&rsquo;re ready to go.&rdquo;</p>\n\n\n\n<h2>The Future of EatsWP</h2>\n\n\n\n<p class=\"has-drop-cap\">On the EatsWP website, Kitterhing lightheartedly writes that &ldquo;delicious desserts&rdquo; are coming soon. This includes WooCommerce integration, recipes, and other secret features. Integrating with WooCommerce could open a new avenue for restaurant owners to explore as part of their checkout process.</p>\n\n\n\n<p>&ldquo;I&rsquo;m hoping that WooCommerce support will be coming Q1 this year,&rdquo; said Kitterhing. &ldquo;As I&rsquo;m sure you can imagine, it&rsquo;s reasonably technically challenging to incorporate this in a user-friendly way. The goal is to have all the connections and product creation actually done within the block editor interface. So someone wouldn&rsquo;t have to go off to WooCommerce to set a product and come back as that&rsquo;s rather long-winded. I&rsquo;m excited to show everyone!&rdquo;</p>\n\n\n\n<p>It will be interesting to watch how this integration unfolds in the coming months. Menus are a solid starting point, but having a payment option is necessary in a world with more people are ordering online. This is especially true in the Covid-era where contactless forms of payment are becoming the norm for takeout. Restaurants need simple solutions that they are not hacking together from multiple, non-integrated sources.</p>\n\n\n\n<p>&ldquo;The goal within the next 12 months is to turn EatsWP into everything that a restaurant needs to offer a minimal-contact experience for customers,&rdquo; said Kitterhing. &ldquo;Many restaurants don&rsquo;t have websites either, so I&rsquo;m looking into a SaaS option where I&rsquo;d host the menu/site for the restaurant.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Jan 2021 21:46: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:94:\"WPTavern: WordPress Community Team Proposes Using a Decision Checklist to Restart Local Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=110022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:233:\"httpss://wptavern.com/wordpress-community-team-proposes-using-a-decision-checklist-to-restart-local-events?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-community-team-proposes-using-a-decision-checklist-to-restart-local-events\";s: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:4502:\"<img />photo credit: <a href=\"httpss://stocksnap.io/photo/checklist-goals-TBJ9OPDGMK\">Glenn Carstens-Peters</a>\n\n\n\n<p>WordPress&rsquo; Community Team has been <a href=\"httpss://wptavern.com/wordpress-community-team-discusses-return-to-in-person-events\">discussing the return to in-person events</a> since early December 2020, and has landed on an idea that would allow local meetup organizers to determine readiness <a href=\"httpss://make.wordpress.org/community/2021/01/07/proposal-decision-making-checklist-for-safe-in-person-meetups/\">using a COVID-19 risk-assessment checklist</a>. This would enable organizers to restart meetups when it is safe for their communities, instead of applying a blanket global policy.</p>\n\n\n\n<p>Countries like Australia, New Zealand, The Bahamas, Iceland, and Vietnam, are a few examples of locations that are doing a decent job containing the virus. In contrast, the United States logged more than 4,000 coronavirus deaths in a single day this week, pushing the daily average to over 2,700. While the situation remains bleak for many areas of the world, vaccines are rolling out to vulnerable populations, albeit slowly and with a few snags.</p>\n\n\n\n<p>In the previous discussion that happened in early December, WordPress lead developer Dion Hulse shared some feedback from Australian organizers who have been eager to restart their meetups.</p>\n\n\n\n<p>&ldquo;One of the problems faced in Australia (and probably NZ &amp; Taiwan too) has been the blanket worldwide restrictions companies have put in place,&rdquo; Hulse said. &ldquo;Australia/NZ have been lucky, the pandemic has been successfully contained &ndash; Australia has seen less than 30k cases this year, and NZ 2k cases. To put that in context, the USA has recorded more (detected) cases in 3 hours today than Australia did all year, and more in 30 minutes than NZ.&rdquo;</p>\n\n\n\n<p>Hulse said a few Australian meetup groups were denied the go-ahead for restarting because of the global restrictions, which has &ldquo;led to the abandonment of meetups once again (as online meetups have simply not worked here, as most people can still go out in person, so there&rsquo;s been no major push from most Australians to the online platforms like elsewhere).&rdquo;</p>\n\n\n\n<p>The Community Team&rsquo;s proposal for a checklist takes these more unique situations into consideration and allows organizers to move forward in areas where public health measures have adequately curbed the spread of the virus. A few example checklist items include the following:</p>\n\n\n\n<ol><li>Is your country&rsquo;s (or state&rsquo;s) average positivity rate over the past 28 days under 4%?</li><li>In the past 28 days, has your country or area&rsquo;s&nbsp;<a href=\"httpss://en.wikipedia.org/wiki/Basic_reproduction_number\">basic reproduction number</a>&nbsp;stayed under 1?</li><li>In the past 14 days, have there been under 50 new cases per 100,000 people reported?</li><li>Does your local government allow for in-person events?</li><li>If there is a cap on the number of people who can meet at a time, will you as an organizer follow this guideline?</li></ol>\n\n\n\n<p>Contributor feedback so far includes recommendations for dealing with violations of the guidelines and assessing the need for contact tracing in case meetup attendees are exposed during an event. Cami Kaos recommended that the team share a list of locations that have already been vetted using the checklist and have not met requirements.</p>\n\n\n\n<p>&ldquo;My hope is that this would reduce a lot of duplicated time and effort for areas that we already know aren&rsquo;t yet, by the standards we&rsquo;re setting, safe,&rdquo; Kaos said. &ldquo;It would save time and disappointment for organizers hoping to meet in person and also contributor time and energy for those deputies who will vet the applications to hold in-person events.&rdquo;</p>\n\n\n\n<p>Since the virus is mutating and countries are adapting in different ways, the situation can change rapidly, so organizers would need to be prepared to roll back to online events if conditions for safe meetups deteriorate. WordCamps are still out of the question for the time being, but the Community Team is seeking feedback on the <a href=\"httpss://make.wordpress.org/community/2021/01/07/proposal-decision-making-checklist-for-safe-in-person-meetups/\">proposal</a> by January 15, 2021, including additions to the checklist and recommendations for public health resources that could aid in guiding the process.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Jan 2021 16: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:32:\"https://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: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:43:\"Matt: Autonomous and Beautiful Home Devices\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"httpss://ma.tt/?p=53404\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"httpss://ma.tt/2021/01/autonomous-and-beautiful-home-devices/\";s: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:1532:\"<p>Of all the smart home upgrades I&#8217;ve made, replacing all my regular smoke detectors with Nest Protects (Google&#8217;s smoke detector) has been the one that I regret the most.</p>\n\n\n\n<p>I don&#8217;t really need a smart smoke detector. It doesn&#8217;t need to talk, connect to wifi, and cost hundreds of dollars. I don&#8217;t need it integrated with my Google account which is impossible to share, so I need to be personally involved to replace one.</p>\n\n\n\n<p>But other smoke detectors are just so unsightly, and the Nest is light years ahead of the competition from a design standpoint.</p>\n\n\n\n<img />\n\n\n\n<p>There&#8217;s such an opportunity for something that looks as good as the Nest, but doesn&#8217;t require two-factor authentication to replace. I didn&#8217;t want to call it dumb but beautiful, so let&#8217;s say &#8220;autonomous and beautiful&#8221; appliances and home devices. I still want it to be smart, but if you&#8217;re going to have the risk profile of a device that connects to the internet, it needs to be worth it, like <a href=\"httpss://www.brilliant.tech/\">Brilliant</a>, <a href=\"httpss://www.sonos.com/\">Sonos</a>, smart TVs, or connected cameras.</p>\n\n\n\n<p>I&#8217;m becoming more wary of any hardware that requires an app, just because of the natural decay of non-SaaS and non-open source software. <a href=\"httpss://www.vanmoof.com/en-US\">Van Moof bikes</a> are beautiful, but will they still connect well when iOS 24 is out and Bluetooth has been removed from iPhones for security reasons?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Jan 2021 23:45:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:94:\"WPTavern: Blocked-Based Version of Twenty Twenty-One Nearing Readiness for the Theme Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=110087\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:233:\"httpss://wptavern.com/blocked-based-version-of-twenty-twenty-one-nearing-readiness-for-the-theme-directory?utm_source=rss&utm_medium=rss&utm_campaign=blocked-based-version-of-twenty-twenty-one-nearing-readiness-for-the-theme-directory\";s: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:5300:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Twenty Twenty-One Blocks, now renamed to TT1 Blocks, is inching its way toward the WordPress theme directory. Kjell Reigstad mentioned the prospect in this week&rsquo;s <a href=\"httpss://make.wordpress.org/themes/2021/01/06/block-based-meeting-notes-january-6/\">block-based themes meeting</a>. Contributors to the theme, which is part of the <a href=\"httpss://github.com/WordPress/theme-experiments\">Theme Experiments</a> project, have pushed some much-needed code updates to the repository.</p>\n\n\n\n<p><a href=\"httpss://github.com/WordPress/theme-experiments/tree/master/tt1-blocks\">TT1 Blocks</a> is the block-based version of the Twenty Twenty-One theme. Its goal is to provide a version of the original theme that works with Full Site Editing (FSE), currently only available through the Gutenberg plugin.</p>\n\n\n\n<p>FSE needs more testers. And, testers need themes that will enable the site editor in Gutenberg. Currently, there are only two WordPress themes, <a href=\"httpss://wptavern.com/q-first-fse-wordpress-theme-now-live\">Q</a> and <a href=\"httpss://wptavern.com/block-based-bosco-second-full-site-editing-theme-lands-in-the-wordpress-directory\">Block-Based Bosco</a>, in the directory that support the site editor. <a href=\"httpss://wptavern.com/armando-wordpress-theme-provides-insight-into-the-current-state-of-full-site-editing\">Armando</a> should join them shortly. If a user attempts to find one via the <a href=\"httpss://wordpress.org/themes/tags/full-site-editing/\">FSE filter</a>, they will get no results, as pointed out by Gary Taylor in a <a href=\"httpss://wptavern.com/gutenberg-9-7-improves-user-experience-updates-reusable-blocks-and-brings-page-templates-to-fse-themes#comment-359503\">recent comment</a>. This seems to be an oversight by the theme authors and should be corrected.</p>\n\n\n\n<p>With most block-based themes relegated to a few GitHub repositories, it does not bode well if no one can find themes to test the most important set of features coming to WordPress in 2021. Users should be able to easily install an FSE-ready theme today.</p>\n\n\n\n<p>&ldquo;It has been brought up that it may be easier for people to test and contribute to full site editing if Twenty Twenty-One blocks was available in the WordPress theme directory,&rdquo; wrote Themes Team representative Carolina Nymark in a <a href=\"httpss://github.com/WordPress/theme-experiments/issues/140\">ticket about renaming TT1 Blocks</a>.</p>\n\n\n\n<p>TT1 Blocks is something that feels more official. While third-party block-based themes are needed, the <em>officialness</em> of something from core contributors gives more users a sense of trust. Plus, it would be easy for someone with .ORG administrator privileges to stick it to the top of the theme directory&rsquo;s featured page to get more eyes on it. <em>Doing this with a third-party theme would unleash a hoard of developers who want the same treatment for their themes.</em></p>\n\n\n\n<p>The prospect of the theme coming to the directory is something the WordPress project needs.</p>\n\n\n\n<p>The volunteers who have been chipping away at this TT1 Blocks have turned a <a href=\"httpss://wptavern.com/twenty-twenty-one-blocks-theme-launching-as-a-separate-project\">bare-bones theme</a> into something closer to the original Twenty Twenty-One. There are still some leaps remaining to get it to where it needs to be. Much is this rests in the Gutenberg development team&rsquo;s hands. There are currently over a <a href=\"httpss://github.com/WordPress/theme-experiments/projects/1#column-12084948\">dozen blockers</a> identified by the Theme Experiments project that need to be resolved in the Gutenberg plugin first.</p>\n\n\n\n<img />Single post in the site editor with TT1 Blocks\n\n\n\n<p>There are multiple open tickets on the <a href=\"httpss://github.com/WordPress/theme-experiments/projects/1\">project board</a> for theme developers who are looking for a way to contribute. This is an opportunity to learn more about block-based themes and pay it forward.</p>\n\n\n\n<p>At the moment, I am not-so-patiently awaiting the release of TT1 Blocks to the theme directory.</p>\n\n\n\n<p>There are days when I wonder if there is a final destination, some light at the end of this never-ending tunnel that leads to block-based themes being the norm. I get overexcited about each new project. I quickly test pull requests and updates on the handful of repositories I am watching, hoping for a glimpse of something spectacular.</p>\n\n\n\n<p>Part of this excitement is because I designed and developed WordPress themes for around 15 years in some form or fashion. Today, I am no longer in the design and development game. I must live vicariously through the people who are putting untold hours into this grand experiment. I get to tell their stories, which has its own rewards.</p>\n\n\n\n<p>I also know that this sort of development is a slog. Everyone has big ideas, but the real world calls for slow, steady, and dedicated work. Often it is thankless.</p>\n\n\n\n<p>When I saw the mere mention of TT1 Blocks potentially coming to the theme directory, it added a bit of spark to an otherwise rough few days. I wanted to end this particular week with something hopeful. And, testing out the latest work those volunteers have put into TT1 Blocks has done just that.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Jan 2021 23:12: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:74:\"WPTavern: JetBrains Denies Being Under Investigation for SolarWinds Attack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=110028\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"httpss://wptavern.com/jetbrains-denies-being-under-investigation-for-solarwinds-attack?utm_source=rss&utm_medium=rss&utm_campaign=jetbrains-denies-being-under-investigation-for-solarwinds-attack\";s: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:4847:\"<p>JetBrains, makers of Phpstorm, one of the most popular IDEs for PHP developers, has published a <a href=\"httpss://blog.jetbrains.com/teamcity/2021/01/statement-on-the-story-from-the-new-york-times-regarding-jetbrains-and-solarwinds/\">statement</a> denying any involvement in the SolarWinds attack, which compromised multiple US federal agencies and private companies. The company stated that it has not been the subject of an official investigation:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>JetBrains has not taken part or been involved in this attack in any way. SolarWinds is one of our customers and uses TeamCity, which is a Continuous Integration and Deployment System, used as part of building software. SolarWinds has not contacted us with any details regarding the breach and the only information we have is what has been made publicly available.</p></blockquote>\n\n\n\n<p>This statement contradicts a recent New York Times <a href=\"httpss://www.nytimes.com/2021/01/06/us/politics/russia-cyber-hack.html\">article</a> that claimed unspecified officials were investigating the company&rsquo;s TeamCity continuous integration software as a possible entry point for the attack: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>By compromising TeamCity, or exploiting gaps in how customers use the tool, cybersecurity experts say the Russian hackers could have inconspicuously planted back doors in an untold number of JetBrains&rsquo; clients. Because TeamCity is so widely deployed, experts said, it is imperative to determine whether its software contains a vulnerability, or if attackers exploited TeamCity customers via stolen passwords or gaps in unpatched, outdated software.</p></blockquote>\n\n\n\n<p>The New York Times did not specify which officials and &ldquo;cybersecurity experts&rdquo; were the source for this information but claimed that SolarWinds was also investigating the software internally. A <a href=\"httpss://web.archive.org/web/20210106195835/httpss://www.nytimes.com/2021/01/06/us/politics/russia-cyber-hack.html\">previous version</a> of the article referred to JetBrains as &ldquo;an obscure software company,&rdquo; which <a href=\"httpss://twitter.com/razvanbunea/status/1347254615616729090\">ruffled the feathers</a> of the company&rsquo;s most ardent customers. SolarWinds told both the Times and <a href=\"httpss://www.wsj.com/articles/solarwinds-hack-breached-justice-department-systems-11609958761\">The Wall Street Journal</a> that it has not confirmed a definitive link between JetBrains and the breach of its own software.</p>\n\n\n\n<p>A&nbsp;<a rel=\"noreferrer noopener\" href=\"httpss://www.dni.gov/index.php/newsroom/press-releases/press-releases-2021/item/2176-joint-statement-by-the-federal-bureau-of-investigation-fbi-the-cybersecurity-and-infrastructure-security-agency-cisa-the-office-of-the-director-of-national-intelligence-odni-and-the-national-security-agency-nsa\" target=\"_blank\">joint statement</a> from the FBI, the Cybersecurity and Infrastructure Security Agency (CISA), the Office of the Director of National Intelligence (ODNI) and the National Security Agency (NSA) released this week points to Russia as the origin of the attacks: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This work indicates that an Advanced Persistent Threat (APT) actor, likely Russian in origin, is responsible for most or all of the recently discovered, ongoing cyber compromises of both government and non-governmental networks. At this time, we believe this was, and continues to be, an intelligence gathering effort. We are taking all necessary steps to understand the full scope of this campaign and respond accordingly.</p></blockquote>\n\n\n\n<p>Phpstorm is widely used among WordPress developers, especially since&nbsp;<a rel=\"noreferrer noopener\" href=\"httpss://wptavern.com/phpstorm-8-released-with-full-wordpress-support\" target=\"_blank\">version 8 added official support for WordPress</a> in 2014. JetBrains users took to Twitter with questions and concerns about claims that the company was under investigation. Today, JetBrains published another <a href=\"httpss://blog.jetbrains.com/blog/2021/01/07/an-update-on-solarwinds/\">update</a> that clarifies its previous statement. It states that the company&rsquo;s IDEs are standalone tools with no relation to TeamCity and that there is no evidence that any of their servers or tools have been tampered with. </p>\n\n\n\n<p>JetBrains is organizing an independent security audit of TeamCity and has promised a transparent report of any vulnerabilities found that may have led to a breach.</p>\n\n\n\n<p>&ldquo;For over 20 years, one of our pillars has been to be transparent, honest, and truthful with our customers, and nothing hurts us more than seeing unfounded allegations that damage our reputation and instill doubt on our customers,&rdquo; JetBrains CEO Maxim Shafirov said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Jan 2021 23:12: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:\"https://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:114:\"WPTavern: Gutenberg 9.7 Improves User Experience, Updates Reusable Blocks, and Brings Page Templates to FSE 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:30:\"httpss://wptavern.com/?p=110018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:269:\"httpss://wptavern.com/gutenberg-9-7-improves-user-experience-updates-reusable-blocks-and-brings-page-templates-to-fse-themes?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-9-7-improves-user-experience-updates-reusable-blocks-and-brings-page-templates-to-fse-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:7906:\"<p class=\"has-drop-cap\">Gutenberg 9.7 <a href=\"httpss://make.wordpress.org/core/2021/01/07/whats-new-in-gutenberg-6-january/\">landed yesterday</a> with several updates and improvements. Users should expect to see changes to the interface for block variations, transforms, and patterns. Reusable blocks are being worked on after what seemed to be a hiatus. Developers can also now add custom page templates to their block-based WordPress themes.</p>\n\n\n\n<p>This release had the fewest number of bug fixes I have seen in a while. The development team only pushed eight fixes into the update, which could signal that things were more stable than usual after the 9.6 release a couple of weeks ago.</p>\n\n\n\n<p>Most of the work in 9.7 dealt with new features and enhancements. As expected, Full Site Editing got its fair share of time. However, even this seemed dialed back a bit for this release. Many of the updates are to the post-editing interface.</p>\n\n\n\n<h2>User Experience Improvements</h2>\n\n\n\n<p class=\"has-drop-cap\">The team pushed out several updates to how features work in the editor. Some of them might seem minor but improve the overall editor experience.</p>\n\n\n\n<p>Block variations received a welcome enhancement. Variations are when one underlying block is used to create multiple variations of the same block. For example, the Embed block has YouTube, Twitter, and other variations. In past versions, the block inspector in the sidebar and block navigation would show the generic name, icon, and description. However, Gutenberg 9.7 will now show the <a href=\"httpss://github.com/WordPress/gutenberg/pull/27469\">details for the variation</a> in use.</p>\n\n\n\n<img />YouTube variation for the Embed block.\n\n\n\n<p>When transforming a block, <a href=\"httpss://github.com/WordPress/gutenberg/pull/27861\">users can see a preview</a> of what the block will look like. This is a small improvement. However, it might save a few headaches when before deciding to transform one block into another.</p>\n\n\n\n<img />Preview when transforming Quote block into a Pullquote.\n\n\n\n<p>Gutenberg 9.6 introduced a <a href=\"httpss://wptavern.com/gutenberg-9-6-introduces-drag-and-drop-blocks-and-global-inheritance-for-the-query-block\">drag-and-drop feature</a> for blocks in the inserter. The team has now <a href=\"httpss://github.com/WordPress/gutenberg/pull/27927\">extended that feature to block patterns</a>. This is just another rung on the ladder for those looking for more drag-and-drop capabilities.</p>\n\n\n\n<h2>Reusable Blocks Updated</h2>\n\n\n\n<p class=\"has-drop-cap\">It has been a while since I tested reusable blocks. The feature has seemingly taken a backseat to other, newer features in the past year or so. It never felt much better than an initial prototype. There is still no way to easily manage them unless you know where to look. However, it appears the Gutenberg development team is <a href=\"httpss://github.com/WordPress/gutenberg/pull/27887\">actively developing</a> this almost-forgotten feature.</p>\n\n\n\n<p>Users can expect more in future releases. &ldquo;Based on these changes, the UI for reusable blocks is most likely going to see some iterations on the upcoming weeks,&rdquo; wrote Riad Benguella in the announcement post.</p>\n\n\n\n<p>I ran an initial test to see what the feature looked like in Gutenberg 9.7. After clicking the &ldquo;Add to reusable blocks&rdquo; button, the editor did a quick flash. Then, a notification appeared at the bottom of the screen that the reusable block had been created. Because I did not have my block options sidebar panel open at the time, I saw no way to edit the reusable block&rsquo;s title. My immediate thought was that the team took an already half-baked feature and made it exponentially worse.</p>\n\n\n\n<p>Upon further digging, I found that users can edit the reusable block&rsquo;s title in the block options sidebar. However, the team did not stop there. They added several improvements to the feature.</p>\n\n\n\n<img />Editing the reusable block name in the sidebar panel.\n\n\n\n<p>Reusable blocks are now editable within the post editor itself. Users can drag an image out of the block, for example. The inspector sidebar is available for the inner blocks. Reusable blocks now look and feel like any other part of the editor. Any edits will reflect across all instances of the reusable blocks on the site.</p>\n\n\n\n<p>The big difference is in how they are saved.</p>\n\n\n\n<img />Saving a reusable block along with the post.\n\n\n\n<p>Reusable blocks are now a part of the &ldquo;multi-entity&rdquo; save system. When clicking the editor&rsquo;s update button, users will have an option to save the entire post and/or individual reusable blocks.</p>\n\n\n\n<h2>Custom &ldquo;Page&rdquo; Templates for FSE Themes</h2>\n\n\n\n<p class=\"has-drop-cap\">Block-based <a href=\"httpss://github.com/WordPress/gutenberg/pull/27778\">themes now support</a> what has been traditionally known as page templates. All post types are technically supported with the feature. However, the team seems to be sticking with the &ldquo;page&rdquo; terminology after some discussion.</p>\n\n\n\n<p>It took some digging because there is no existing documentation and the original example in the ticket did not reflect the end result of the code that passed. However, I managed to suss out how the feature works. For theme authors who want to test this feature, use the following example code of adding a &ldquo;contact&rdquo; template. Place it at the root level of your theme&rsquo;s <code>experimental-theme.json</code> file. You will also need to accompany this with a <code>block-templates/contact.html</code> template in your theme.</p>\n\n\n\n<pre class=\"wp-block-code\"><code>\"pageTemplates\": {\n        \"contact\": {\n                \"title\": \"Contact\",\n                \"postTypes\": [\n                        \"page\"\n                ]\n        }\n}</code></pre>\n\n\n\n<p>This feature does not do anything particularly groundbreaking right now. It merely adds the custom template to the drop-down select on the edit post/page screen. It is the equivalent of the current page template system available to traditional themes.</p>\n\n\n\n<img />Selecting a custom page template from FSE theme.\n\n\n\n<p>While this is a nice development, traditional page templates may not make much sense in the block theming paradigm. There is no way to change the visual output of the page in the editor based on the selected template &mdash; users must still view the page on the front end to see the result of its application. The block system is about instant visual feedback. Page templates need to be rethought for the new era.</p>\n\n\n\n<p>&ldquo;In terms of UI and integration with the template mode, we can do a lot more than the old select box,&rdquo; said Benguella, who was the developer behind the pull request. &ldquo;We can show a preview for templates and offer a modal or something like that for folks to pick from&hellip;We&rsquo;d need some design thinking and explorations there. This PR just sets the technical requirements to make it work.&rdquo;</p>\n\n\n\n<p>Much, but not all, of what page templates were needed for in the past decade can now be replaced by block patterns.</p>\n\n\n\n<p>In the long term, I would rather see page templates that behaved more like predesigned block layouts. This is how block templates for custom post types work today. However, that is on the post-type level rather than the level of the individual post.</p>\n\n\n\n<p>Traditional page templates are dated. Themes rarely offer more than a few. One to remove the sidebar. One to move the sidebar to the left or right. Another to make the page content area wider.</p>\n\n\n\n<p>What is clear is that we need more exploration on what page templates of the future will look like. Are they necessary in the block system? Are there better ways of handling what traditional themes are using them for? How will they work in an interface that needs visual feedback?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Jan 2021 22:34:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:123:\"WPTavern: All in One SEO Plugin Turns on Automatic Updates without Notifying Users, Removes Functionality in Latest Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109933\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:289:\"httpss://wptavern.com/all-in-one-seo-plugin-turns-on-automatic-updates-without-notifying-users-removes-functionality-in-latest-release?utm_source=rss&utm_medium=rss&utm_campaign=all-in-one-seo-plugin-turns-on-automatic-updates-without-notifying-users-removes-functionality-in-latest-release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4960:\"<p>Buried in the <a href=\"httpss://aioseo.com/changelog/\">changelog</a> of a series of minor releases that dropped before the Christmas holiday, <a href=\"httpss://wordpress.org/plugins/all-in-one-seo-pack/\">All in One SEO</a> plugin users were given the surprise gift of automatic updates. After a seemingly endless run of releases (12 updates during a span of six weeks at the end of 2020), the plugin&rsquo;s developers decided to change its auto update policy so that it defaults to &ldquo;on.&rdquo; The plugin is installed on more than 2 million WordPress sites.</p>\n\n\n\n<p>Version 4.0.8, released December 21, 2020, flipped on automatic updates without notifying users of the change. Despite having auto updates turned off for the plugin, many users discovered the change when they were notified by email that their sites had been updated without permission. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Frustrated users took to the plugin&rsquo;s support forums to report the issue and find out how it was possible.</p>\n\n\n\n<p>&ldquo;Multiple sites have updated to 4.0.11 without my permission and while all auto updates are disabled,&rdquo; one user <a href=\"httpss://wordpress.org/support/topic/auto-update-29/#post-13837970\">said</a>. &ldquo;I/we do not want to hear that &lsquo;it shouldn&rsquo;t happen&rsquo; and we are looking into.</p>\n\n\n\n<p>&ldquo;Your once reliable plugin has destroyed hundreds of pages of social meta data on multiple sites, broken layout (and this after I fixed the problems and told you last week, I will be disabling all updates).&rdquo;</p>\n\n\n\n<p>Others commented on the issue, citing problems with a previous major release as the source of many bugs that followed.</p>\n\n\n\n<p>&ldquo;The rollout of version 4, and auto-updating without any chance to backup first was a blunder by AIOSEO,&rdquo; plugin user Derek Haines <a href=\"httpss://wordpress.org/support/topic/sudden-rush-of-5-star-reviews/\">said</a>. &ldquo;It has cost me hours, days, and now weeks to fix the problems caused.&rdquo;</p>\n\n\n\n<p>The All in One SEO plugin team <a href=\"httpss://wordpress.org/support/topic/auto-update-29/#post-13840599\">apologized</a> for the inconvenience users experienced but said they could not reproduce it on their end. The plugin&rsquo;s settings page has a toggle for auto updates but it is just a wrapper for WordPress&rsquo; auto updater.</p>\n\n\n\n<p>&ldquo;I just wanted to give you an update and let you know that we&rsquo;ve decided to remove our own auto-update functionality all together since this issue seems to be happening on a limited amount of websites and we aren&rsquo;t able to reproduce it on our end,&rdquo; Arnaud Broes said.</p>\n\n\n\n<p>The problem was also <a href=\"httpss://www.facebook.com/groups/advancedwp/permalink/3806581632737356\">discussed</a> in the Advanced WordPress Facebook group.</p>\n\n\n\n<p>&ldquo;All In One SEO Pack apparently turned auto updates on, and in a few cases I found sites where those updates failed,&rdquo; Eric Karkovack reported. &ldquo;I had no idea they were turned on and in one case a site was inaccessible.&rdquo;</p>\n\n\n\n<p>Karkovack noted that there was only a small mention in the changelog, despite the plugin liberally using the dashboard notification UI for sales.</p>\n\n\n\n<p>William Earnhardt, WordPress core contributor and developer at Bluehost, offered some insight as someone who has worked on core as well as plugins installed on a massive scale.</p>\n\n\n\n<p>&ldquo;In my experience if you are weighing the two options, auto-updates prevent significantly more issues and support requests than they create,&rdquo; Earnhardt said. &ldquo;So I&rsquo;m strongly in the camp of enabling them by default, with a mechanism for preventing or disabling for those who prefer (core makes this possible with filters and now with per-plugin UI). </p>\n\n\n\n<p>&ldquo;I think when making these decisions, we as developers have to consider what is best for the broadest number of users and be realistic about the type of users we have. If a user is already not updating plugins regularly, it is unlikely they are going to have the awareness to flip a toggle to turn auto-updates on. So opt-in makes them mostly useless.&rdquo;</p>\n\n\n\n<p>Earnhardt agreed that notifying users of the change would have been a good idea, but admin notices are already &ldquo;frequently abused and quite noisy.&rdquo;</p>\n\n\n\n<p>&ldquo;It would likely be missed if not persistent, but really should only show after the update and then go away,&rdquo; he said. &ldquo;Is that enough when combined with a note in the changelog? Probably for most, but I&rsquo;m sure some would disagree.&rdquo;</p>\n\n\n\n<p>As promised nine days ago, All in One SEO&rsquo;s developers have now removed the functionality from the plugin in its first update of 2021, version 4.0.12 released today. It is noted in the changelog: &ldquo;Fixed: Completely remove auto updates wrapper to let WordPress handle updates.&rdquo; </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jan 2021 23:47: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:\"https://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:84:\"WPTavern: Liquid Web Acquires The Events Calendar WordPress Plugin From Modern Tribe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109909\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"httpss://wptavern.com/liquid-web-acquires-the-events-calendar-wordpress-plugin-from-modern-tribe?utm_source=rss&utm_medium=rss&utm_campaign=liquid-web-acquires-the-events-calendar-wordpress-plugin-from-modern-tribe\";s: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:4092:\"<p class=\"has-drop-cap\">Liquid Web <a href=\"httpss://ithemes.com/the-events-calendar-plugin-joining-liquid-web-family/\">announced today</a> via the iThemes blog that it acquired The Events Calendar from Modern Tribe. The acquisition gives them ownership of the plugin, its suite of event-related plugins, and the team behind it all.</p>\n\n\n\n<p>&ldquo;We&rsquo;ve acquired all the associated plugins, including Event Tickets, etc.,&rdquo; said Matt Danner, the COO at iThemes. &ldquo;They identify under the single umbrella of The Events Calendar as a team, so we&rsquo;ve continued to position the team that way.&rdquo;</p>\n\n\n\n<p>As part of the acquisition, the 50+ employees from The Events Calendar plugin team are now a part of the Liquid Web family. They will continue working on the plugin and its related products. Zach Tirrell <a href=\"httpss://theeventscalendar.com/blog/news/the-events-calendar-joins-the-liquid-web-family/\">announced on The Events Calendar blog</a> that he would remain at the helm and that the team structure was not changing.</p>\n\n\n\n<p>The remaining 74 employees of Modern Tribe will continue working on the agency&rsquo;s other projects, including clients like Microsoft and Harvard University. Reid Peifer, the Creative Director at Modern Tribe, teased potential future projects in his <a href=\"httpss://tri.be/blog/the-events-calendar-joins-the-liquid-web-family/\">announcement post</a>. &ldquo;We can&rsquo;t help but make things, so you may see a few surprises from us in the coming months as well.&rdquo;</p>\n\n\n\n<p><a href=\"httpss://wordpress.org/plugins/the-events-calendar/\">The Events Calendar plugin</a> on WordPress.org currently has over 800,000 active installs with an average rating of 4.4 out of 5 stars. Modern Tribe launched the plugin in 2011 and has continued to build a larger product line and customer base around it over the last decade.</p>\n\n\n\n<p>For existing customers, it should be business as usual. Nothing has changed about who is currently developing The Events Calendar. The website is still a separate entity, and billing will remain the same.</p>\n\n\n\n<p>The acquisition is mere months after iThemes, owned by Liquid Web, <a href=\"httpss://wptavern.com/ithemes-enters-the-wordpress-membership-plugin-market-acquires-restrict-content-pro\">purchased Restrict Content Pro</a> (RCP), a membership plugin. While RCP continues to have an independent site, users can snag it with one of the plugin bundles directly from the iThemes website.</p>\n\n\n\n<p>However, The Events Calendar will be wholly independent of iThemes. Customers hoping to see a similar bundle with The Events Calendar will be out of luck.</p>\n\n\n\n<p>&ldquo;The RCP acquisition was done under the iThemes brand,&rdquo; said Danner. &ldquo;We brought that team into our team, and the membership product is a key part of how we&rsquo;re positioning iThemes. The Event Calendar&rsquo;s acquisition was done under the larger Liquid Web brand. Their team is coming into Liquid Web alongside iThemes as part of the bigger software division. While we definitely think there are future opportunities to collaborate between our teams (which could include bundles of products from both teams), their products are not going to become part of the iThemes product line.&rdquo;</p>\n\n\n\n<p>One of the biggest remaining questions is whether the separate teams will eventually create integrations between The Events Calendar and RCP. There are multiple reasons event organizers might want to restrict content based on memberships, especially when it comes to virtual events. Danner did not give up any specific plans in his response.</p>\n\n\n\n<p>&ldquo;We&rsquo;re very excited to explore all the opportunities to integrate our products,&rdquo; he said. &ldquo;I think there are some great opportunities for RCP and TEC to work more closely together, and both customer bases have requested deeper integration between the two. This acquisition was a perfect fit from so many angles. The people, the values of the team, and the products all align with what we&rsquo;re building at Liquid Web.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jan 2021 22:21: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:71:\"Akismet: Version 4.1.8 of the Akismet WordPress Plugin is 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:\"https://blog.akismet.com/?p=2109\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://blog.akismet.com/2021/01/06/version-4-1-8-of-the-akismet-wordpress-plugin-is-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:667:\"<p>Version 4.1.8 of <a href=\"https://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. It contains the following changes:</p>\n<ul>\n<li>Removal of a deprecated jQuery function.</li>\n<li>A fix for a bug causing some data to be excluded from API calls when marking a comment as spam or not-spam.&nbsp; This should improve spam detection accuracy.</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=\"https://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jan 2021 17:01: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:\"https://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:33:\"Matt: Farnam Street and Postlight\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"httpss://ma.tt/?p=53384\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://ma.tt/2021/01/farnam-street-and-postlight/\";s: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:2137:\"<p>I recorded two interviews very far apart from each other, but which have surprisingly both come out today. The first is for one of my favorite sites on the web, <a href=\"httpss://fs.blog/\">Farnam Street</a>. I was honored to be <a href=\"httpss://fs.blog/knowledge-project/\">episode 100 on their Knowledge Project podcast</a>. Knowledge Project is probably one of the podcasts I&#8217;ve listened to the most since it started. Please check out their other guests as well, they really do have the most interesting conversations with the most interesting folks.</p>\n\n\n\n<p>Shane and I cover turnarounds, how environment affects performance, pros and cons of distributed work, uncovering your lacuna, mental models, and patterns of decision making.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>On a completely different vein, I did a deep geek-out on technology and content management systems with <a href=\"httpss://ginatrapani.org/\">Gina Trapani</a> and <a href=\"httpss://www.ftrain.com/\">Paul Ford</a>, two of my favorite technologists, <a href=\"httpss://postlight.com/podcast/wordpress-and-beyond-with-matthew-mullenweg\">on the Postlight podcast</a>. We covered a lot of tech history, my thoughts on Chromium and Mozilla&#8217;s Gecko engine, structured data, Gutenberg, and a lot more. If you&#8217;re a developer or a long-time WordPress community member you&#8217;ll enjoy this one, but it might be esoteric or technical if you&#8217;re not immersed in this world. Here&#8217;s a Spotify embed of the episode:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>In both we do touch on my idea that, on a long enough timeline, the survival rate for all proprietary software drops to zero. (Hat tip to Fight Club.) Proprietary software is an evolutionary dead end. You can think of open source packages like <a href=\"httpss://en.wikipedia.org/wiki/Gene-centered_view_of_evolution\">genetic alleles that have a higher fitness function</a>, and eventually become the fittest organism. The longer I spend watching mega-trends in technology, the more I see that pattern everywhere, from encyclopedias to cryptocurrencies.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Jan 2021 23:51:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:92:\"WPTavern: Block System Will Create More Commercial Opportunities for WordPress Theme Authors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109904\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:229:\"httpss://wptavern.com/block-system-will-create-more-commercial-opportunities-for-wordpress-theme-authors?utm_source=rss&utm_medium=rss&utm_campaign=block-system-will-create-more-commercial-opportunities-for-wordpress-theme-authors\";s: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:6978:\"<p class=\"has-drop-cap\">Ten years ago, a potential WordPress theme buyer might stumble upon a site like ThemeForest. The themes on the site would primarily tout the hundreds of shortcodes they included. These shortcodes would allow the user to build anything they wanted with simple BBCode-like brackets around some tag or another.</p>\n\n\n\n<p>The practice was not limited to ThemeForest. Nearly every theme development company at the time &mdash; and they were sprouting up by the dozens a decade ago &mdash; needed to compete in the same arena. Despite all their faults (never mind that no user could reasonably remember hundreds of them), shortcodes topped the list of features.</p>\n\n\n\n<p>Today, the landscape is much different. In part powered by page builders like Elementor and Beaver Builder, themes are more apt to offer pre-built design options. Gone are the days when users must painstakingly fill their pages with shortcode soup manually. At the click of a button, their theme will automate the design of their homepage for them. The user merely needs to fill in the content. At the click of another button, the user gets a contact or services page. A restaurant owner might get a fully-laid out food menu. A new online shop owner can get a full set of pre-built WooCommerce products by importing their theme&rsquo;s demo content.</p>\n\n\n\n<p><em>Customizability</em> is the name of the game. This has not really changed over the years, but the methods for getting there have.</p>\n\n\n\n<p>When perusing commercial theme shops today, the common thread is the multitude of demos. These demos showcase the various layouts the user can have if they just fork over the $50 or $60 for access. There are themes with over 500 demos.</p>\n\n\n\n<p>Some themes market hundreds of templates or dozens of pre-built, one-click website designs. At the end of the day, it is all about making the user&rsquo;s site look a certain way without the hassle of hours of work.</p>\n\n\n\n<p>The problem with traditional theming is that all of these themes are built with non-standard solutions. This is no fault of the theme authors. They had to build or use third-party systems where WordPress had failed. Elementor has standardized this to some degree &mdash; many commercial theme shops fully support it, often as the default experience. However, it still only represents a fraction of the market and is not a part of the core platform.</p>\n\n\n\n<p>WordPress is still catching up to the dream that the premium marketplace has already been capitalizing on.</p>\n\n\n\n<p>However, WordPress can do this better in the long term and level the playing field for many other theme developers. We are on the verge of true one-click solutions from the core platform. It will be a tough run for the next year, but the theme shops that adopt the block system the soonest stand the most to gain.</p>\n\n\n\n<h2>What the System Offers</h2>\n\n\n\n<p class=\"has-drop-cap\">If you have ever installed themes that offered dozens of header designs, the experience has likely been hit or miss. Most such themes require users to go through dozens of options fields in the customizer or &mdash; <em>yikes!</em> &mdash; a custom-built options page that looks nothing like the WordPress interface. While there are simpler solutions that some theme authors have created, WordPress has never had a built-in way of allowing users to do this.</p>\n\n\n\n<p>Enter template parts made out of blocks.</p>\n\n\n\n<p>Themes Team rep Carolina Nymark showcased just how simple this is with the upcoming site editor. Her <a href=\"httpss://wptavern.com/armando-wordpress-theme-provides-insight-into-the-current-state-of-full-site-editing\">Armando theme</a> offers three custom header templates.</p>\n\n\n\n<img />Selecting a header template with the Armando theme.\n\n\n\n<p>The system is far from ready. There are missing features that we will likely not see for a while. For example, there&rsquo;s currently no way to categorize or otherwise group all the header templates just yet. Users can just as easily replace the header with a footer template.</p>\n\n\n\n<p>However, this is an important step forward.  The theme author did not write any complicated PHP or JavaScript. There was no need to build a custom options panel or fields. No third-party system was warranted. The developer created the templates, and they became instantly available through the site-editing interface. The theme author&rsquo;s responsibility went back to simply designing. The user has access through a standardized interface.</p>\n\n\n\n<p>If theme authors want to offer hundreds of switchable templates, they can. If they want to add two or three while upselling the others, they can do that too.</p>\n\n\n\n<p>Now, expand upon this idea with other types of templates. These can be a footer, sidebar, homepage, or any template. The commercial applications are endless. Theme authors can offer commercial themes or upsells with far less work than ever before.</p>\n\n\n\n<p>The possibilities do not end with templates. Block patterns are another viable feature to commercialize. As shown with the Genesis Blocks plugin, its &ldquo;layout selector&rdquo; offers various patterns to quickly insert into the post content.</p>\n\n\n\n<img />Slate collection from the Genesis Blocks plugin.\n\n\n\n<p>Genesis Blocks even offers collections of these patterns that share a similar design aesthetic. In other words, these are essentially pattern categories.</p>\n\n\n\n<p>This is an easy path forward for theme authors who are looking to upsell. Build one or two categories of patterns. Periodically bring in new groups of patterns for users who want a fresh look without changing themes.</p>\n\n\n\n<p>Gutenberg Hub already provides hundreds of <a href=\"httpss://wptavern.com/gutenberg-hub-launches-collection-of-100-block-templates\">templates and patterns</a>, filling a void that is currently missing from the theme ecosystem. The site offers convenient solutions, but something is missing: they are not tied into the theme&rsquo;s design. Forward-thinking theme authors should already be building competing solutions that offer all the same templates and patterns that match their themes.</p>\n\n\n\n<img />Gutenberg Hub&rsquo;s landing page &ldquo;templates&rdquo; (patterns).\n\n\n\n<p>A year or two ago, there was some rumbling about the block editor leading to the death of WordPress theming. <em>Traditional</em> theming will trickle into nonexistence in the coming years. Of course, there will be pockets of holdouts, but the future is about one-click solutions. And, WordPress is setting the stage for all users to have this ability at their fingertips. The theme shops that recognize this the soonest will profit from it the most. Everyone else will be fighting for the scraps they leave behind.</p>\n\n\n\n<p>It is not time to abandon traditional theming or forgo page-builder support. However, it is time for themers to begin rolling out block patterns and to start outlining, testing, and building block-based themes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Jan 2021 22:34:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:57:\"WordPress.org blog: The Month in WordPress: December 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://wordpress.org/news/?p=9508\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://wordpress.org/news/2021/01/the-month-in-wordpress-december-2020/\";s: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:11600:\"<p>We bid goodbye to 2020 in style with the release of WordPress 5.6 and the launch of Learn WordPress. But these weren’t the only exciting updates from WordPress in December. Read on to learn more!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.6 is here</h2>\n\n\n\n<p>The latest major WordPress release,<a href=\"httpss://wordpress.org/news/2020/12/simone/\"> version 5.6</a> “Simone”, came out on December 8. The release ships with a new default theme called <a href=\"httpss://wordpress.org/themes/twentytwentyone/\">Twenty Twenty One</a>. It offers a host of features, including:</p>\n\n\n\n<ul><li>Greater layout flexibility</li><li>More block patterns</li><li>Video captioning support</li><li>Auto-updates</li><li>Beta-compatibility for PHP 8.0</li><li>Application password support for the REST API</li><li>Updates to jQuery</li></ul>\n\n\n\n<p>In addition, WordPress 5.6 is now available in 55 languages. You can find more information about the release in the <a href=\"httpss://make.wordpress.org/core/2020/11/20/wordpress-5-6-field-guide/\">field guide</a>, and you can update to the latest version directly from your WordPress dashboard or by <a href=\"httpss://wordpress.org/download/\">downloading</a> it directly from WordPress.org. A total of 605 people hailing from 57 different countries contributed to the development of WordPress 5.6. <a href=\"httpss://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a> has <a href=\"httpss://jeanbaptisteaudras.com/en/2020/12/wordpress-5-6-core-stats-contributions-by-country-company/\">compiled many more stats like that</a>, showing what a tremendous group effort this was—they’re well worth a read!</p>\n\n\n\n<p>Want to contribute to upcoming WordPress releases? Join the WordPress <a href=\"httpss://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel on the <a href=\"httpss://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"httpss://make.wordpress.org/core/\">Core team blog</a> to learn the <a href=\"httpss://make.wordpress.org/core/2020/12/21/wordpress-5-7-planning-roundup/\">latest on WordPress 5.7</a>, which is <a href=\"httpss://wordpress.org/about/roadmap/\">slated to be out by March 9, 2021</a>. The Core team hosts weekly chats on Wednesdays at <a href=\"httpss://www.timeanddate.com/worldclock/fixedtime.html?hour=5&min=00&sec=0\">5 a.m.</a> and <a href=\"httpss://www.timeanddate.com/worldclock/fixedtime.html?hour=20&min=00&sec=0\">8 p.m.</a> UTC.</p>\n\n\n\n<h2>Watch the State of the Word 2020 recording</h2>\n\n\n\n<p><a href=\"httpss://wordpress.org/news/\">State of the Word 2020</a>, the annual keynote address delivered by WordPress co-founder Matt Mullenweg, was streamed online for the first time on December 17. It was followed by a live Q&amp;A from community members all across the world. You can find the stream recording on <a href=\"httpss://www.youtube.com/watch?v=QI3qCoiuG3w\">YouTube</a>, <a href=\"httpss://www.facebook.com/WordPress/videos/1281447442248369\">Facebook</a>, and <a href=\"httpss://twitter.com/i/broadcasts/1dRKZNvnrmdKB\">Twitter</a>. The <a href=\"httpss://wordpress.tv/2020/12/17/matt-mullenweg-2020-state-of-the-word/\">State of the Word</a> video and the <a href=\"httpss://wordpress.tv/2020/12/17/matt-mullenweg-2020-state-of-the-word-qa/\">Q&amp;A session</a> are also available on WordPress.tv.&nbsp;</p>\n\n\n\n<h2>Learn WordPress has launched</h2>\n\n\n\n<p>Learn WordPress, a new free, on-demand WordPress learning resource, launched officially on December 15. It offers <a href=\"httpss://learn.wordpress.org/workshops/\">workshops</a>, <a href=\"httpss://learn.wordpress.org/lesson-plans/\">lesson plans</a>, quizzes, and <a href=\"httpss://learn.wordpress.org/courses/\">courses</a> for anyone interested in publishing with, building for, or contributing to WordPress. WordPress enthusiasts can also <a href=\"httpss://www.meetup.com/learn-wordpress-discussions/\">participate in discussion groups</a> focused on specific topics to learn with and from each other.</p>\n\n\n\n<p>Want to participate in Learn WordPress? <a href=\"httpss://learn.wordpress.org/contribute/\">Here are four ways you can do so</a>! Additionally, contributors have <a href=\"httpss://make.wordpress.org/training/2020/12/03/learn-wordpress-blue-sky-thinking/\">launched a discussion</a> on the future of <a href=\"httpss://learn.wordpress.org/\">Learn WordPress</a>—feel free to share your thoughts in the comments. To help promote Learn WordPress, check out the <a href=\"httpss://make.wordpress.org/marketing/\">Marketing Team</a>’s <a href=\"httpss://make.wordpress.org/marketing/2020/12/09/help-us-promote-learn-wordpress/\">materials</a>, which detail a <a href=\"httpss://make.wordpress.org/marketing/2020/12/09/help-us-promote-learn-wordpress/\">range of fun and creative ways</a> to share this new resource.</p>\n\n\n\n<h2>Give feedback on the Full Site Editing project</h2>\n\n\n\n<p>Contributor teams have kicked off the <a href=\"httpss://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">Full Site Editing (FSE) outreach program</a> for anyone who is building or maintaining a WordPress site so that they can give feedback on the upcoming <a href=\"httpss://make.wordpress.org/design/handbook/focuses/full-site-editing/\">FSE feature</a> that will be part of Gutenberg Phase 2. Your feedback will go a long way in improving FSE user flows. To participate, <a href=\"httpss://make.wordpress.org/test/2020/12/23/fse-program-testing-call-1-template-editing/\">check out the initial testing call</a> on the <a href=\"httpss://make.wordpress.org/test/\">Make/Test blog</a> and join the <a href=\"httpss://make.wordpress.org/core/tag/fse-outreach-experiment/\">#fse-outreach-experiment</a> Slack channel.<br /><br />Want to follow updates on the FSE project? Check out <a href=\"httpss://make.wordpress.org/core/2020/05/20/ways-to-keep-up-with-full-site-editing-fse/\">this blog post</a>. You can find <a href=\"httpss://make.wordpress.org/core/2020/12/10/status-check-site-editing-and-customization/\">2020 updates to the FSE project</a> in the Make/Core blog.</p>\n\n\n\n<h2>BuddyPress 7.0 “Filippi” and 7.10 are now available</h2>\n\n\n\n<p><a href=\"httpss://buddypress.org/2020/12/buddypress-7-0-0-filippi/\">BuddyPress version 7.0</a> went live on December 9. Its features include:&nbsp;</p>\n\n\n\n<ul><li>New administration screens to manage Member and Group Types</li><li>New BP blocks for posts and pages</li><li>A default profile image for network sites</li><li>Improved BuddyPress Noveau support for the Twenty Twenty One theme.&nbsp;</li></ul>\n\n\n\n<p>A BuddyPress maintenance release (<a href=\"httpss://buddypress.org/2020/12/buddypress-7-1-0-maintenance-release/\">version 7.1</a>) launched on December 21.&nbsp;</p>\n\n\n\n<p>Want to provide feedback or suggestions for BuddyPress? Share your comments on the announcement posts for <a href=\"httpss://buddypress.org/2020/12/buddypress-7-0-0-filippi/\">7.0</a> or <a href=\"httpss://buddypress.org/2020/12/buddypress-7-1-0-maintenance-release/\">7.1</a>. If you find a bug, please report it in the <a href=\"httpss://buddypress.org/support/\">support forums</a>.&nbsp;</p>\n\n\n\n<h2>Gutenberg 9.5 and 9.6 released</h2>\n\n\n\n<p>The Core team launched <a href=\"httpss://make.wordpress.org/core/2020/12/02/whats-new-in-gutenberg-2-december/\">version 9.5</a> and <a href=\"httpss://make.wordpress.org/core/2020/12/23/whats-new-in-gutenberg-23-december/\">9.6</a> of Gutenberg last month. Both versions include several improvements to FSE flows, bug fixes, and feature upgrades. Version 9.5 introduces features like full height alignment and support for font sizes in the code block. Version 9.6 includes features like the ability to drag blocks from the inserter and a vertical layout for buttons.&nbsp;</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"httpss://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"httpss://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"httpss://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"httpss://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>The Community team <a href=\"httpss://make.wordpress.org/community/2020/12/01/discussion-how-can-the-wordpress-community-return-to-hosting-safe-in-person-events/\">kicked off a discussion</a> about what the WordPress Community can do to host safe, in-person events again, in light of the continuing pandemic. </li><li>The Polyglots team published its <a href=\"httpss://make.wordpress.org/polyglots/2020/12/30/polyglots-team-end-of-year-post-2020/\">end-of-year post</a>, along with the <a href=\"httpss://make.wordpress.org/polyglots/author/evarlese/\">results of its 2020 translator survey</a>.</li><li><a href=\"httpss://sevilla.wordcamp.org/2020/\">WordCamp Sevilla 2020</a> was held online from December 26-29. You can catch the recorded livestream playback on <a href=\"httpss://www.youtube.com/c/wordpresssevilla/live\">YouTube</a>. Videos of the event will <a href=\"httpss://wordpress.tv/event/wordcamp-sevilla-2020/\">soon be available on WordPress.tv</a>.</li><li>WordPress project executive director <a href=\"httpss://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> and project co-founder <a href=\"httpss://profiles.wordpress.org/matt/\">Matt Mullenweg</a> will be jointly hosting <a href=\"httpss://make.wordpress.org/core/2020/12/15/regular-office-and-listening-hours/\">quarterly office and listening hours</a> in 2021. Sign-ups for the <a href=\"httpss://make.wordpress.org/core/2020/12/15/regular-office-and-listening-hours/\">first ones in January 2021</a> are almost filled up.</li><li>The Core team <a href=\"httpss://make.wordpress.org/core/2020/12/02/wp-notify-project-review/\">published updates</a> on the <a href=\"httpss://make.wordpress.org/core/tag/feature-notifications/\">WP Notify project</a>, which seeks to <a href=\"httpss://make.wordpress.org/core/2019/08/05/feature-project-proposal-wp-notify/\">improve the notifications system</a> in WordPress Core.</li><li>The Support team <a href=\"httpss://make.wordpress.org/support/2020/12/handling-potential-jquery-issues-in-wordpress-5-6/\">published a post</a> detailing jQuery issues in WordPress 5.6.</li><li><a href=\"httpss://india.wordcamp.org/2021/\">WordCamp India Online 2021</a> will be held over three weekends between January 30 and February 14. There will be workshops, a contributor event, and sessions (in that order). The calls for <a href=\"httpss://india.wordcamp.org/2021/call-for-sponsors/\">sponsors</a>, <a href=\"httpss://india.wordcamp.org/2021/call-for-workshops/\">workshop presenters</a>, <a href=\"httpss://india.wordcamp.org/2021/call-for-contributor-team-leads/\">contributor team leads</a>, and <a href=\"httpss://india.wordcamp.org/2021/call-for-volunteers/\">volunteers</a> are now open. Don’t forget to grab your <a href=\"httpss://india.wordcamp.org/2021/tickets/\">free tickets</a>!</li><li>The Documentation team <a href=\"httpss://make.wordpress.org/docs/2020/12/01/external-linking-policy-1st-review-of-plugin-developer-handbook/\">shared a first review</a> of its <a href=\"httpss://make.wordpress.org/docs/tag/external-linking-policy/\">external linking policy</a>. It is using the <a href=\"httpss://developer.wordpress.org/plugins/\">plugin developer handbook</a> as a test.</li></ul>\n\n\n\n<p><br /><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"httpss://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Jan 2021 10:55:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s: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:93:\"WPTavern: WordPress.com Rattles Freelancer Community with New Website Building Service Launch\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109818\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:231:\"httpss://wptavern.com/wordpress-com-rattles-freelancer-community-with-new-website-building-service-launch?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-com-rattles-freelancer-community-with-new-website-building-service-launch\";s: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:7137:\"<p>WordPress.com launched a new <a href=\"httpss://wordpress.com/built-by-wordpress-com/?utm_source=enblog&utm_medium=automattic_referred&utm_campaign=january_2021_launch&flags=a8c-analytics.on,ad-tracking,google-analytics&ga_optimize=on\">website building service</a> today with prices starting at $4,900. Automattic has been beta testing the service since the last quarter of 2020. The product <a href=\"httpss://wordpress.com/blog/2021/01/04/let-our-experts-build-your-dream-website/\">announcement</a> invites customers to let WordPress.com&rsquo;s&nbsp;professional team &ldquo;translate your vision into a compelling and modern website&rdquo; but does not specify pricing for more customized websites:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Whether you need a fast and performant eCommerce store for your products and/or services, a polished website for your professional services firm, or an educational website for your online courses, our experts can build it for you on WordPress.com, the most powerful platform for businesses and enterprises large and small.</p></blockquote>\n\n\n\n<p>Initial reactions from the WordPress developer and freelance community were mixed. Some see the competition as good and others perceived it as a threat to WordPress consultants and small agencies, because a product from WordPress.com carries the full weight of the official WordPress brand. </p>\n\n\n\n<p>&ldquo;Whether this succeeds or not there are a lot of folks with a sick stomach today because of it,&rdquo; WordPress developer Chris Wiegman <a href=\"httpss://twitter.com/ChrisWiegman/status/1346151976296443904\">said</a>.</p>\n\n\n\n<p>Automattic stepping into the $5k website market came as a surprise to many, after years of keeping to the enterprise space with its <a href=\"httpss://wpvip.com/\">WordPress.com VIP</a> service. (Sometime in 2019 the service started going by &ldquo;WordPress VIP&rdquo; without the &ldquo;.com&rdquo; appended to it.) Freelancers haven&rsquo;t had to worry too much about competing against a large company like Automattic when trying to attract clients. It&rsquo;s also an interesting move because the company <a href=\"httpss://wptavern.com/automattic-has-discontinued-active-development-on-edit-flow-plugin\">seemed stretched thin</a> when it came to maintaining plugins used by VIP clients in 2019, despite seeing &ldquo;demand for WordPress in the enterprise market like never before,&rdquo; <a href=\"httpss://wptavern.com/automattic-has-discontinued-active-development-on-edit-flow-plugin#comment-307821\">according to Nick Gernert</a>, head of VIP. </p>\n\n\n\n<p>&ldquo;Can&rsquo;t say I&rsquo;m surprised by this announcement, but it doesn&rsquo;t bode well for the community, to be honest,&rdquo; WordPress consultant Joshua Nelson <a href=\"httpss://twitter.com/onemorejosh/status/1346147871465353216\">said</a>. &ldquo;Freelancers will be hurt the most. A for instance: My custom built sites start at $3k. Once you factor in a designer that $4.9k rate looks very competitive.&rdquo;</p>\n\n\n\n<p>In response to community concerns on Twitter, Automattic CEO Matt Mullenweg said the product is targeted at people who have a difficult time getting started with WordPress.</p>\n\n\n\n<p>&ldquo;I would be extremely surprised if this impacts anyone&rsquo;s consulting business, if you do have a current or potential client leave for it please let me know &mdash; it should be all new-to-WP users who wouldn&rsquo;t have been successful getting started,&rdquo; Mullenweg <a href=\"httpss://twitter.com/photomatt/status/1346212091200491520\">said</a>. He also confirmed that the new service was set up for &ldquo;referring business out&rdquo; and referenced a previous experiment in 2018 where WordPress.com <a href=\"httpss://wordpress.com/support/upwork/\">partnered with Upwork</a> to refer clients for custom development.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\nhttpss://twitter.com/photomatt/status/1346212543732170752\n</div>\n\n\n\n<p>The product launch lacked this information and some <a href=\"httpss://twitter.com/mattmedeiros/status/1346221279246999552\">noted</a> the copy was confusing with phrases like &ldquo;Built by us&rdquo; and &ldquo;Our experts can build it for you.&rdquo;</p>\n\n\n\n<p>WordPress professionals took to <a href=\"httpss://poststatus.com/\">Post Status</a>&lsquo; Slack to discuss the implications of Automattic&rsquo;s new offering. Mullenweg responded to them, saying he is &ldquo;100% certain this will drive more up-market consulting in the future&rdquo; to consultants who handle larger projects and potentially bring more business to plugin and theme developers. He also noted that <a href=\"httpss://www.web.com/websites/website-design-services\">Bluehost&rsquo;s full service</a> product is a similar solution and that services like <a href=\"https://web.com/\">Web.com</a> have been competing in this space for awhile.</p>\n\n\n\n<p>&ldquo;Typically these are called DIFM (do it for me) vs DIY (do it yourself),&rdquo; he said.</p>\n\n\n\n<p>Automattic must be witnessing a strong demand for DIFM, as participants in the discussion at Post Status referenced Mullenweg&rsquo;s comments on the topic during his most recent <a href=\"httpss://wptavern.com/state-of-the-word-2020-wordpress-moves-toward-full-site-editing\">State of the Word</a> address delivered in December 2020:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Lots of people lost their jobs. Lots of people were looking to supplement their income. This drove an incredible amount of entrepreneurship, so people who were looking for people who knew WordPress. And on the other side of that, normal folks who knew or learned WordPress found that they had a lot to demand for their work, so they were able to supplement or replace their income, essentially for folks who have a do it for me mentality, so someone who is looking for someone else to build a website. It&rsquo;s never been a better time to learn and invest in improving your WordPress skills.</p></blockquote>\n\n\n\n<p>The idea behind this product is to help those who get stuck with WordPress  before they turn to competitors that market website creation to beginners. It indicates that WordPress still has a long road ahead before it is truly an approachable tool for beginners embarking on their first site building experience.</p>\n\n\n\n<p>Automattic has not published a pricing structure for the features included in a basic $4900 website. Based on images on the <a href=\"httpss://wordpress.com/built-by-wordpress-com/\">landing page</a>, the sites do not seem extensively customized beyond what existing themes offer. It seems like more of a website setup service and does not explicitly promise custom development.</p>\n\n\n\n<p>When asked how agencies can apply to be put into the pipeline for referrals from WordPress.com&rsquo;s new service, Mullenweg indicated that the product is still in the experimental stage.</p>\n\n\n\n<p>&ldquo;It&rsquo;s unclear if anyone wants this yet, so for this experiment don&rsquo;t have that yet,&rdquo; Mullenweg <a href=\"httpss://twitter.com/photomatt/status/1346258917135769600\">said</a>. &ldquo;If it works then definitely we will try to open it up.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Jan 2021 04:40:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WPTavern: 2021: Reshaping the Tavern Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109489\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"httpss://wptavern.com/2021-reshaping-the-tavern-experience?utm_source=rss&utm_medium=rss&utm_campaign=2021-reshaping-the-tavern-experience\";s: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:4025:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Resolutions. Goals. Guidelines for the year ahead. Call them what you want. Not everyone takes part, but I am a firm believer in having a vision for the coming months. That vision can be malleable, flowing with the changes of time, yielding to new ideas as they are birthed. However, some large, beaming guideposts help when setting foot into the wild of a new year.</p>\n\n\n\n<p>Our team at WP Tavern has gotten a bit of a breather over the holidays. We have an exciting project we are just getting off the ground. We set some things in motion months ago. Now, it is time to push forward.</p>\n\n\n\n<p>Without going into all of the details, which are currently in flux, the following are the big goals for the site in 2021.</p>\n\n\n\n<h2>New Design</h2>\n\n\n\n<p class=\"has-drop-cap\">The biggest goal of 2021 is to add a fresh coat of paint to the website. Going hand in hand with that goal is to launch this new design 100% on blocks. To effectively write about WordPress&rsquo;s upcoming changes, we need to be ahead of the game. That means living a bit on the bleeding edge, running a block-based theme, and testing the site editor. It means sharing what we love and airing our frustrations.</p>\n\n\n\n<p>Changing designs is not simply about slapping on some fresh colors. Design is about functionality. At the center of such a change is providing more tools for engagement.</p>\n\n\n\n<p>We are thinking over multiple ideas about what this might look like, and we have a generous third-party team standing by to help us implement much of this. Some of those ideas are things like showing the top comments and trending forum topics. Feedback from our readers is more than welcome in this regard. Ultimately, this is the part of the Tavern experience that belongs to you.</p>\n\n\n\n<p>The keen-eyed among you may have noticed I slipped in something about forum topics in the preceding paragraph. That was no accident. The return of the Tavern forums is a distinct possibility in 2021. There are many considerations we must make before going down this road around how it is moderated. The goal would be to provide an inviting atmosphere where people could freely talk about our beloved content management system. Again, this would be a feature of the site that is primarily about you.</p>\n\n\n\n<h2>Podcast</h2>\n\n\n\n<p class=\"has-drop-cap\">While many of you are avid readers of our content, we know some of you have asked us to bring back a podcast in some form. Some of you want to listen to WordPress-related news on your drive to work or while you unwind at the end of a busy day.</p>\n\n\n\n<p>We heard you loud and clear.</p>\n\n\n\n<p>Our team is actively pursuing adding a podcast. This is a project that we have been working on for a while now. It is something we genuinely want to happen.</p>\n\n\n\n<p>Before exploring this project, I had no idea of the amount of work necessary for producing a professional podcast. If you had put me behind the mic a few months ago, I would just be shooting from the hip, hoping to hit a target, any target. I have a newfound respect for anyone who produces a podcast today.</p>\n\n\n\n<p>If we get a new podcast off the ground in 2021, it will be a professionally-produced show. The goal is to have planned topics and guests representative of the diversity of the WordPress community. I am excited about the possibility.</p>\n\n\n\n<h2>Welcome to 2021</h2>\n\n\n\n<p class=\"has-drop-cap\">A new design and potential podcast are big-ticket items. They are not features we can launch overnight. When we do them, we want to do them right.</p>\n\n\n\n<p>There are other items on the checklist we will likely get to throughout the year too. But, this is a point in the year where we should sit back and listen. Are there things you want to see changed about the Tavern experience? Are there topics we missed last year that you want to see us cover more?</p>\n\n\n\n<p>As always, our team looks forward to bringing you our regular news, reviews, and opinions throughout the year. Stay tuned in for more.</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, 04 Jan 2021 21:36:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:30:\"Matt: What’s In My Bag, 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"httpss://ma.tt/?p=53341\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"httpss://ma.tt/2021/01/whats-in-my-bag-2020/\";s: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:15521:\"<p>Instead of <a href=\"httpss://ma.tt/category/in-my-bag/\">sharing what&#8217;s in my backpack</a> this year, I want to share the apps and pandemic purchases that were meaningful to me, along with a few words on each. Something I haven&#8217;t shared with you yet on this blog is&#8230; I went down a #vanlife rabbit hole and ended up camping and working remotely a decent chunk of the year. I learned a ton and feel much more resilient. So this is a phoneful and truckful update of my year.</p>\n\n\n\n<p>First I&#8217;ll start with apps, these all link to Apple&#8217;s app store but almost all have Android equivalents that I also use:</p>\n\n\n\n<ul><li><a href=\"httpss://apps.apple.com/us/app/calm/id571800810\">Calm</a> and <a href=\"httpss://apps.apple.com/us/app/waking-up-guided-meditation/id1307736395\">Waking Up</a> —&nbsp;Very different but both incredibly valuable meditation apps. I had an 82-day streak with Calm this year! I wouldn&#8217;t have survived without these.</li><li><a href=\"httpss://apps.apple.com/us/app/fitbod-workout-fitness-plans/id1041517543\">Fitbod</a> —&nbsp;You tell the app what equipment you have, how much time you have, and it gives you a workout like a trainer would, rotating muscle groups.</li><li><a href=\"httpss://apps.apple.com/us/app/streaks/id963034692\">Streaks</a> — An app for starting and tracking habits. This is a funny one because I actually stopped using it because it worked. The things I was tracking on Streaks became daily habits and I stopped using the app every day. The same thing happened for me with <a href=\"httpss://www.zerofasting.com/\">Zero</a>, my daily fast became part of my routine so I&#8217;d only use Zero if I was doing a longer one.</li><li><a href=\"httpss://apps.apple.com/us/app/tumblr/id305343404\">Tumblr</a> —&nbsp;It was so nice to have a social network centered around creativity and humor.</li><li><a href=\"httpss://apps.apple.com/us/app/asana-your-work-manager/id489969512\">Asana</a> —&nbsp;Getting organized helped lessen anxiety.</li><li><a href=\"httpss://itunes.apple.com/au/app/pocket-casts/id414834813\">Pocket Casts</a> —&nbsp;I switched to this because it syncs between devices, and I used my Android device a lot especially while driving.</li><li><a href=\"httpss://apps.apple.com/us/app/alltrails-hike-bike-run/id405075943\">AllTrails</a> — I spent more time in nature this year than almost any previous, and AllTrails was an amazing way to find great hikes.</li><li><a href=\"httpss://apps.apple.com/us/app/the-economist/id1239397626\">The Economist</a> —&nbsp;The most insightful news, and the weekly cadence helped me avoid the wild variance of the daily news cycle. My favorite news app.</li><li><a href=\"httpss://apps.apple.com/us/app/youtube-watch-listen-stream/id544007664\">YouTube</a> —&nbsp;Wow, there&#8217;s a lot of stuff on here. This was the year I started to &#8220;get&#8221; why people spend so much time on YouTube. Some favorite finds were <a href=\"httpss://www.youtube.com/channel/UCtmY49Zn4l0RMJnTWfV7Wsg\">Jacob Collier</a> and <a href=\"httpss://www.youtube.com/channel/UCY1kMZp36IQSyNx_9h4mpCg\">Mark Rober</a>.</li><li><a href=\"httpss://apps.apple.com/us/app/walmart-shopping-grocery/id338137227\">Walmart</a> —&nbsp;Surprisingly good on road trips for curbside pickup orders scheduled a few hours ahead. Yes, I have now <a href=\"httpss://www.cnbc.com/2017/04/12/nearly-every-american-spent-money-at-wal-mart-last-year.html\">joined 95% of the US population</a>.</li><li><a href=\"httpss://apps.apple.com/us/app/blueground/id1183301329\">Blueground</a> and <a href=\"httpss://apps.apple.com/us/app/avantstay/id1455404746\">Avantstay</a> —&nbsp;Good for longer stays in places. I found both through <a href=\"httpss://www.airbnb.com/\">Airbnb</a>, which is still the king.</li><li>Food apps in order of usage: <a href=\"httpss://apps.apple.com/us/app/doordash-food-delivery/id719972451\">DoorDash</a>, <a href=\"httpss://apps.apple.com/us/app/uber-eats-food-delivery/id1058959277\">Uber Eats</a>, <a href=\"httpss://apps.apple.com/us/app/tock-restaurant-reservations/id1369347408\">Tock</a>, <a href=\"httpss://apps.apple.com/us/app/toast-takeout-delivery/id1362180579\">Toast TakeOut</a>.</li><li>Camping apps in order of usage: <a href=\"httpss://apps.apple.com/us/app/alltrails-hike-bike-run/id405075943\">AllTrails</a>, <a href=\"httpss://apps.apple.com/us/app/chimani-national-park-guides/id436381327\">Chimani</a>, <a href=\"httpss://apps.apple.com/us/app/recreation-gov/id1440487780\">Recreation.gov</a>, <a href=\"httpss://apps.apple.com/us/app/ioverlander/id894352689\">iOverlander</a>,  <a href=\"httpss://apps.apple.com/us/app/boondocking/id561352659\">Boondocking</a>, <a href=\"httpss://apps.apple.com/us/app/freeroam-boondocking-more/id1434359242\">FreeRoam</a>, <a href=\"httpss://apps.apple.com/us/app/harvest-hosts/id1321631420\">Harvest Hosts</a>.</li><li>App I deleted and re-added the most: <a href=\"httpss://apps.apple.com/us/app/twitter/id333903271\">Twitter</a>. I love the things I learn from using it, but hate feeling like I&#8217;m wasting time.</li></ul>\n\n\n\n<p>When on road trips I found Android Auto running off the Pixel 5 much more reliable than CarPlay, which would frequently freeze up on me. Things have improved with iOS 14, but I still always use the Pixel when I&#8217;m on a longer drive.</p>\n\n\n\n<p>I also have been living with my Mom since July, including her two cats and <a href=\"httpss://matt.blog/2021/01/02/introducing-lily-belle/\">new Coton du Tulear puppy</a>. Pets are humbling! It&#8217;s been great to learn how to support them best, as I last lived with animals when I was in high school and wasn&#8217;t that conscious of the responsibility then.</p>\n\n\n\n<p>Amazon says I made over 850 orders this year, more than double from any previous year. Here are the non-tech purchases that ended up having a big impact on me:</p>\n\n\n\n<ul><li><a href=\"httpss://www.amazon.com/gp/product/B07GZ2DY7K/?tag=photomatt08-20\">SmartMouth mouthwash</a> —&nbsp;Available in <a href=\"httpss://www.amazon.com/gp/product/B01IADXVUY/?tag=photomatt08-20\">travel packs as well</a>, this is magical for having great breath, which you&#8217;ll notice more now that you&#8217;re wearing a mask all the time.</li><li><a href=\"httpss://www.amazon.com/gp/product/B06XHMNGF9/?tag=photomatt08-20\">Marvis Royal Toothpaste</a> —&nbsp;Delicious! SLS-free! I switch between this and the <a href=\"httpss://www.amazon.com/gp/product/B000MUH344/?tag=photomatt08-20\">SmartMouth toothpaste</a> which works better but isn&#8217;t as luxuriously tasty.</li><li><a href=\"httpss://www.amazon.com/Theragun-Elite-Generation-Percussive-Treatment/dp/B08G3Q44YJ/?tag=photomatt08-20\">Theragun</a> — Because you can&#8217;t get a massage.</li><li><a href=\"httpss://www.amazon.com/gp/product/B07N41D7QY/?tag=photomatt08-20\">Hurtle vibration platform</a> —&nbsp;Really weird but seems to shake the stress out of you, especially if you stretch on it for 5-10 minutes.</li><li><a href=\"httpss://www.amazon.com/Bowflex-SelectTech-Adjustable-Dumbbells-Pair/dp/B001ARYU58/?tag=photomatt08-20\">Bowflex Adjustable Dumbbells</a> —&nbsp;I was lucky enough to get these before they sold out and became crazy expensive. </li><li><a href=\"httpss://www.amazon.com/gp/product/B01JQU3BPK/?tag=photomatt08-20\">Buckwheat meditation cushion</a> — So much more comfortable to have a cushion, especially for longer meditation sessions. <a href=\"httpss://www.amazon.com/gp/product/B01GDF47Q8/?tag=photomatt08-20\">Here&#8217;s a smaller version</a> I use on the road.</li><li><a href=\"httpss://www.philips-hue.com/en-us\">Tons of Philips Hue lights</a> —&nbsp;Got a ton of joy from playing with the colors on these.</li><li><a href=\"httpss://www.amazon.com/gp/product/B07S7DWWJZ/?tag=photomatt08-20\">Cloth napkins</a> —&nbsp;Felt so luxurious, easy to wash and re-use.</li><li><a href=\"httpss://www.amazon.com/gp/product/B07HML9YLD/?tag=photomatt08-20\">Heated cat bed</a> —&nbsp;My Mom&#8217;s cats are obsessed with this now. </li><li><a href=\"httpss://www.amazon.com/SHARONDS-Scissors-Thinning-Professional-Stainless/dp/B08BWXWHWH/?tag=photomatt08-20\">Sharonds hair cutting scissors</a> —&nbsp;10x better than the scissors I had lying around the house.</li><li><a href=\"httpss://www.amazon.com/dp/B07L67KL81/?tag=photomatt08-20\">Babyliss clippers</a> —&nbsp;They&#8217;re gold and have a &#8220;Lamborghini&#8221; motor which is ostentatious but works great.</li><li><a href=\"httpss://www.amazon.com/gp/product/B07GB4TDST/?tag=photomatt08-20\">Hair Apron Cape</a> — You feel like a dog with <a href=\"httpss://neothesamoyed.tumblr.com/post/173710808330/ice-cream-cone-boy\">one of those cones</a>, but mostly works.</li><li><a href=\"httpss://www.amazon.com/gp/product/B07QN7FWC9/?tag=photomatt08-20\">Yeti Lowlands picnic blanket</a> — Expensive but sturdy.</li><li><a href=\"httpss://www.amazon.com/gp/product/B07V6MR1R5/?tag=photomatt08-20\">Cliq camping chair</a> —&nbsp;Super small and great design, but ended up using these less than I thought because we mostly just stayed on the ground on the Yeti blanket.</li><li><a href=\"httpss://www.amazon.com/gp/product/B07RX1TBKM/?tag=photomatt08-20\">Isdin foot care cream</a> —&nbsp;Really softens your feet.</li><li><a href=\"httpss://www.amazon.com/gp/product/B018GXZ016/?tag=photomatt08-20\">Silicone tip cooking chopsticks</a> or the <a href=\"httpss://www.amazon.com/gp/product/B07LC6253B/?tag=photomatt08-20\">ones with the spoon on the end</a>.</li><li><a href=\"httpss://www.amazon.com/Surpahs-Multipurpose-Roll-Up-Drying-Inches/dp/B08196DX71/?tag=photomatt08-20\">Roll-up drying rack</a> —&nbsp;Goes great over the sink.</li><li>Joseph Joseph <a href=\"httpss://www.amazon.com/gp/product/B07TD663Y1/?tag=photomatt08-20\">nesting kitchen tools</a>, <a href=\"httpss://www.amazon.com/dp/B006BSBRWK/?tag=photomatt08-20\">nesting bowls</a> —&nbsp;They&#8217;re so pretty as well.</li><li><a href=\"httpss://www.amazon.com/gp/product/B07CPSJRT4/\">Hanging solar mason jar lights</a> —&nbsp;Like fireflies in a jar.</li><li><a href=\"httpss://www.amazon.com/dp/B0828BNW82/?tag=photomatt08-20\">Matador Freerain32 waterproof packable backpack</a> — My new favorite for hiking.</li><li><a href=\"httpss://www.amazon.com/gp/product/B07PFJZ1LV/?tag=photomatt08-20\">Matador Transit30 packable duffle bag</a> —&nbsp;I ended up using this way more than I expected.</li><li><a href=\"httpss://www.amazon.com/gp/product/B08CXPBZLD/?tag=photomatt08-20\">This bamboo table</a> —&nbsp;Just the right size for eating or working on the ground.</li><li><a href=\"httpss://www.amazon.com/Ikea-Large-Shopping-Bags-SET/dp/B00KVJJGN2/?tag=photomatt08-20\">Ikea Frakta bag</a> —&nbsp;Just a few dollars each and can hold so much, and available on Amazon.</li></ul>\n\n\n\n<p>Clothing and wearables, like much of the world I trended toward comfort and away from normal shoes and socks:</p>\n\n\n\n<ul><li><a href=\"httpss://www.amazon.com/gp/product/B01IKRF2PW/?tag=photomatt08-20\">Bumpers flip flops</a> — Weird but you get used to them.</li><li><a href=\"httpss://www.oofos.com/products/mens-ooahh-sport-slide-sandal-black-matte\">Oofos slide sandals</a> —&nbsp;Ridiculously comfortable, and this model looks like it has the <a href=\"httpss://automattic.com/\">Automattic</a> logo on it.</li><li><a href=\"httpss://www.amazon.com/gp/product/B077LJSDQL/?tag=photomatt08-20\">Glerups wool slippers</a> —&nbsp;Like wool clogs, I wear the rubber-soled ones out if just stepping out for a bit.</li><li><a href=\"httpss://www.patagonia.com/shop/capilene-air-baselayers\">Patagonia Capilene Air baselayers</a> — So warm! Addictive.</li><li><a href=\"httpss://fahertybrand.com/\">Faherty Brand</a> — I just love their whole look and feel, and have met the brothers before.</li><li><a href=\"httpss://www.aloyoga.com/\">Alo Yoga</a> —&nbsp;Pricey but looks great and fun to workout in. I&#8217;ve had some quality issues with their items though.</li><li><a href=\"httpss://shop.lululemon.com/\">Lululemon</a> —&nbsp;Especially their new tech canvas pants.</li><li><a href=\"httpss://unboundmerino.com/\">Unbound Merino</a> —&nbsp;My go-to shirt, also decent socks.</li><li><a href=\"httpss://www.uniqlo.com/us/en/home/\">Uniqlo</a> —&nbsp;Great value, and no logos!</li></ul>\n\n\n\n<p>Electronics:</p>\n\n\n\n<ul><li><a href=\"httpss://ma.tt/2020/05/ceo-video-streaming/\">Everything in the streaming post</a> — I ended up doing a ton of press and talks this year as the world became more <a href=\"httpss://distributed.blog/\">distributed</a>. I also personally helped many others get similar setups.</li><li><a href=\"httpss://store.ui.com/\">Everything Unifi</a> — It&#8217;s a year I really appreciated solid internet. </li><li><a href=\"httpss://www.amazon.com/gp/product/B01LVZ3UI6/?tag=photomatt08-20\">Retractable 50&#8242; ethernet cord</a> — I actually daisy-chained two of these to do an internal company town hall presentation.</li><li><a href=\"httpss://www.amazon.com/gp/product/B07RVF386D/?tag=photomatt08-20\">25&#8242; retractable power extension cord</a> — I also carry two of these.</li><li><a href=\"httpss://www.apple.com/macbook-pro-13/\">Macbook 13&#8243; M1</a> — It really is the fastest computer you&#8217;ve ever used. This replaced a maxed out 16&#8243;.</li><li><a href=\"httpss://www.amazon.com/gp/product/B088666T68/?tag=photomatt08-20\">Hyppr 100w USB-C charger</a> — Smaller and better than Apple&#8217;s charger.</li><li><a href=\"httpss://www.apple.com/airpods-max/\">Airpods Max</a> — I didn&#8217;t want to like them but they&#8217;re slick.</li><li><a href=\"httpss://www.amazon.com/gp/product/B089N2RJ4X/?tag=photomatt08-20\">Airpods Pro Dekoni Tips</a> — Great upgrade for normal Airpods.</li><li><a href=\"httpss://www.apple.com/iphone-12-pro/\">iPhone 12 Pro Max</a> — It&#8217;s like a mini iPad. Camera with RAW support is fantastic.</li><li><a href=\"httpss://www.apple.com/pro-display-xdr/\">Apple Pro Display XDR</a> — Wow.</li><li><a href=\"httpss://store.google.com/us/product/pixel_5\">Pixel 5</a> — Pretty great that they got the fingerprint reader back in as FaceID with a mask is terrible, so this has become my primary device if I&#8217;m out for a walk.</li><li><a href=\"httpss://store.google.com/product/pixelbook_go\">Pixelbook Go</a> — For my Mom.</li><li><a href=\"httpss://store.google.com/product/chromecast_google_tv\">Chromecast with Google TV</a> — Bad name but great product. Truly. Really well designed.</li><li><a href=\"httpss://www.amazon.com/gp/product/B07FJ91TLB/\">Kindle Oasis with the new warm light</a> — Even though I read less this year, this made what I did read a pleasure.</li><li>Sinjimou charging stand for <a href=\"httpss://www.amazon.com/Sinjimoru-Including-iPhone-Convenient-Silicone/dp/B07GQNY5RD/?tag=photomatt08-20\">iPhone</a> and <a href=\"httpss://www.amazon.com/gp/product/B07GQV2NXN/?tag=photomatt08-20\">USB-C</a> — Works great, really cheap.</li><li><a href=\"httpss://www.amazon.com/gp/product/B07DD9TQSG/?tag=photomatt08-20\">Megaboom 3</a> — Two of these paired together in stereo is the best sound, weight, and battery life combo I&#8217;ve found on the road and in parks.</li><li><a href=\"httpss://www.amazon.com/dp/B07QTVMWVL/?tag=photomatt08-20\">Garmin 945 watch</a> — I&#8217;ve talked about this watch previously, but this year I discovered the GPS maps feature when in hiking mode, which can literally be a lifesaver. Amazing for going off-trail.</li></ul>\n\n\n\n<p>There you have it. As always, if you&#8217;ve tried something here and found an alternative that&#8217;s better, let me know in the comments!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 Jan 2021 04:37: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:39:\"WPTavern: 2020: Step Away From the Fire\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109487\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://wptavern.com/2020-step-away-from-the-fire?utm_source=rss&utm_medium=rss&utm_campaign=2020-step-away-from-the-fire\";s: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:11328:\"<img />\n\n\n\n<p class=\"has-drop-cap\">If there was a common theme that held humanity together in 2020, it was that most of us agreed that the year was nothing short of a dumpster fire.  That and <a href=\"httpss://wptavern.com/you-deserve-to-wear-sweatpants-dont-let-anyone-tell-you-any-different\">sweatpants.</a></p>\n\n\n\n<p>As people <a href=\"httpss://wptavern.com/finding-balance-in-these-uncertain-times-remote-work-and-sharing-our-struggles\">learned to cope</a> with a new reality in the Covid-19 era, the WordPress community has been a <a href=\"httpss://wptavern.com/need-to-smile-today-stay-wordpress-strong\">beacon of hope</a>. When other industries needed to learn how to work remotely, we were already <a href=\"httpss://wptavern.com/leave-at-door-new-free-woocommerce-plugin-enables-contact-free-delivery\">ahead of the pack</a> and <a href=\"httpss://wptavern.com/big-orange-heart-opens-2020-remote-work-wellbeing-and-mental-health-survey\">willing to help</a>. As people dealt with the stress of not having meetups in person, the WordPress community thrived with online events.</p>\n\n\n\n<p>The early year was tough. From toilet paper shortages to being unable to work from a favorite coffee shop, the pandemic took its toll.</p>\n\n\n\n<p>However, we have learned to cope throughout the year. We used new ways to communicate from a distance. Created new circles of friends. Found extra time for long-forgotten hobbies online and off.</p>\n\n\n\n<p>We continued to create art, which is the thing that makes our species so undeniably unique.</p>\n\n\n\n<p>Maybe it is all the lessons we have learned through the past several months. Perhaps it is that a new year is upon us. The winds of change feel like they are gently nudging us forward.</p>\n\n\n\n<p>Over the past couple of months, I have noticed a new calmness. A new hopefulness. A feeling that we will continue to rise above any challenges that come our way. While death and illness are still a part of our daily reality, we must continue to lean on the people within communities like WordPress for support. We will continue marching ahead together.</p>\n\n\n\n<p>I always like to take stock of the past year. This helps keep me grounded and remain optimistic about the future. The following is a look back at 2020 for WP Tavern and WordPress.</p>\n\n\n\n<h2>WP Tavern Stats</h2>\n\n\n\n<p class=\"has-drop-cap\">We have had a solid year of publishing here at the Tavern. Our team, including guest authors, wrote 401 posts. In 2019, we knocked out 382. Next year, I expect that figure to increase.</p>\n\n\n\n<p>Our word count average soared. This year, we averaged 790 words per post. In 2019, that number was 589. While word count is not a testament to quality writing, we did have opportunities to dive deeper into topics than before. In total, we wrote over 315,000 words. That is about 80,000 words shy of Brandon Sanderson&rsquo;s <em>The Way of Kings</em>. You could say that we wrote enough to fill an epic fantasy novel.</p>\n\n\n\n<p>&ldquo;Likes&rdquo; were up this year too. We went from an average of 7.0 likes per post in 2019 to 8.7 in 2020.</p>\n\n\n\n<p>For comments, it is hard to gauge. The WordPress.com Stats feature does not seem to be accurately tracking our comment counts. The figure is nowhere close to correct. By my rough estimate (counting in hundreds), we have at least twice as many published comments as the data shows.</p>\n\n\n\n<p>There were a few days scattered throughout the year in which we came within a hair&rsquo;s breadth of surpassing the site&rsquo;s all-time daily view count. But, alas, we fell just shy of the mark. <em>Maybe next year.</em></p>\n\n\n\n<h2>Most Viewed Posts of the Year</h2>\n\n\n\n<p class=\"has-drop-cap\">The following is a list of the 10 most-viewed posts published this year. They are not necessarily representative of our best work. However, they do represent what folks were reading. Everything beyond this was pretty close in terms of stats.</p>\n\n\n\n<ol><li><a href=\"httpss://wptavern.com/preparing-for-wordpress-5-4-changes-theme-and-plugin-developers-should-know-about\">Preparing for WordPress 5.4: Changes Theme and Plugin Developers Should Know About</a></li><li><a href=\"httpss://wptavern.com/matt-mullenweg-unveils-gutenberg-roadmap-at-wceu-wordpress-agencies-and-product-developers-sprint-to-prepare\">Matt Mullenweg Unveils Gutenberg Roadmap at WCEU, WordPress Agencies and Product Developers Sprint to Prepare</a></li><li><a href=\"httpss://wptavern.com/w3c-drops-wordpress-from-consideration-for-redesign-narrows-cms-shortlist-to-statamic-and-craft\">W3C Drops WordPress from Consideration for Redesign, Narrows CMS Shortlist to Statamic and Craft</a></li><li><a href=\"httpss://wptavern.com/major-jquery-changes-on-the-way-for-wordpress-5-5-and-beyond\">Major jQuery Changes on the Way for WordPress 5.5 and Beyond</a></li><li><a href=\"httpss://wptavern.com/what-is-full-site-editing-and-what-does-it-mean-for-the-future-of-wordpress\">What Is Full Site Editing and What Does It Mean for the Future of WordPress?</a></li><li><a href=\"httpss://wptavern.com/biden-harris-transition-website-launches-on-wordpress\">Biden-Harris Transition Website Launches on WordPress</a></li><li><a href=\"httpss://wptavern.com/wordpress-5-6-will-ship-with-another-major-jquery-change\">WordPress 5.6 Will Ship With Another Major jQuery Change</a></li><li><a href=\"httpss://wptavern.com/godaddys-go-wordpress-theme-offers-a-page-building-experience-via-the-block-editor\">GoDaddy&rsquo;s &lsquo;Go&rsquo; WordPress Theme Offers a Page-Building Experience via the Block Editor</a></li><li><a href=\"httpss://wptavern.com/font-awesome-releases-new-covid-19-awareness-icons\">Font Awesome Releases New COVID-19 Awareness Icons</a></li><li><a href=\"httpss://wptavern.com/automatic-theme-and-plugin-updates-slated-for-wordpress-5-5\">Automatic Theme and Plugin Updates Slated for WordPress 5.5</a></li></ol>\n\n\n\n<p>For some reason, Sarah&rsquo;s piece on <a href=\"httpss://wptavern.com/how-to-add-subscript-and-superscript-characters-in-wordpress\">adding subscript and superscript characters</a> from 2014 always sneaks its way into the most-viewed posts of the year. It was technically #6 on the list, but it wasn&rsquo;t published in 2020.</p>\n\n\n\n<h2>The Year in WordPress</h2>\n\n\n\n<p class=\"has-drop-cap\">It was the year that saw the rise of online-only WordCamps. What started with WordCamp Asia <a href=\"httpss://wptavern.com/wordcamp-asia-2020-canceled-over-covid-19-concerns\">canceling its inaugural event</a> in February ended with Matt Mullenweg giving the annual <a href=\"httpss://wptavern.com/state-of-the-word-2020-wordpress-moves-toward-full-site-editing\">State of the Word</a> virtually, a first. WordCamp Europe <a href=\"httpss://wptavern.com/wordcamp-europe-2020-online-registration-now-open-tickets-are-free\">took its massive event online</a> for 2020 while WordCamp U.S. canceled its planned virtual get-together after months of <a href=\"httpss://wptavern.com/wordcamp-us-2020-canceled-due-to-pandemic-stress-and-online-event-fatigue\">pandemic stress and online event fatigue</a>.</p>\n\n\n\n<p>We saw the community rise up and tackle problems from the beginning. Companies like Wordfence, Yoast, and GoDaddy <a href=\"httpss://wptavern.com/the-international-wordpress-community-and-wordcamps-amid-covid-19\">provided help</a> for those who were not refunded travel expenses after cancellations. At the end of the day, that is what the WordPress community is all about: people helping other people.</p>\n\n\n\n<p>WordPress kept chugging along, despite the stressful year. The big highlights were three major releases of the software:</p>\n\n\n\n<ul><li><a href=\"httpss://wptavern.com/wordpress-5-4-adderley-released-includes-improved-editor-new-blocks-and-developer-apis\">WordPress 5.4 &ldquo;Adderley&rdquo;</a></li><li><a href=\"httpss://wptavern.com/wordpress-5-5-eckstine-introduces-block-directory-block-patterns-and-automatic-updates-for-themes-and-plugins\">WordPress 5.5 &ldquo;Eckstine&rdquo;</a></li><li><a href=\"httpss://wptavern.com/wordpress-5-6-simone-includes-new-twenty-twenty-one-theme-and-improved-editor\">WordPress 5.6 &ldquo;Simone&rdquo;</a></li></ul>\n\n\n\n<p>WordPress also <a href=\"httpss://wptavern.com/happy-17th-wordpress\">turned 17</a> this year.  Its step into adulthood next year should be an adventure.</p>\n\n\n\n<h2>Posts From Contributing Writers</h2>\n\n\n\n<p class=\"has-drop-cap\">Rather than focusing too much on the work that Sarah and I have put into the Tavern this year, I want to say thank you to our contributing writers. They managed to fill some gaps when we were unable to throughout the past 12 months. They have added viewpoints outside of our own, enriching the content that our site offers. If anything, I want to see further contributions from a wider range of the WordPress community in the future.</p>\n\n\n\n<p>I do not typically like to play favorites with our guest writers, but Francesca Marano&rsquo;s piece titled <a href=\"httpss://wptavern.com/a-non-technical-release-leads-journey-to-becoming-a-mentor-for-wordpress-core-development\">A Non-Technical Release Lead&rsquo;s Journey to Becoming a Mentor for WordPress Core Development</a> was one of my favorite reads of the year. Her backstory is a good intro to the article. Her depth of knowledge and insight into <em>the room where it happens</em> makes it a must-read for anyone unfamiliar with how WordPress gets made.</p>\n\n\n\n<p>Chris Maiorana&rsquo;s <a href=\"httpss://wptavern.com/wordpress-university-was-always-online\">WordPress University Was Always Online</a> is a reminder that the education we need to excel in the online business market is but at our fingertips. It also touches on how the pandemic has allowed more people to realize that the traditional college experience is not the only path forward. It is a great piece that forces us to explore alternatives. And, these alternatives have always been available in the WordPress ecosystem.</p>\n\n\n\n<p>Maiorana&rsquo;s piece on the <a href=\"httpss://wptavern.com/state-of-the-meetup-under-lockdown\">State of the Meetup Under Lockdown</a> explores how the virtual realm has changed meetups. <a href=\"httpss://wptavern.com/bringing-back-blogs-in-the-age-of-social-media-censorship\">Bringing Back Blogs in the Age of Social Media Censorship</a> is a look into how blogs are the answer in the age of censorship, even when we disagree with a person&rsquo;s position on a subject.</p>\n\n\n\n<p>On the technical end of things, Jonathan Bossenger wrote an in-depth piece for <a href=\"httpss://wptavern.com/getting-your-wordpress-plugins-and-themes-ready-for-php-8\">Getting Your WordPress Plugins and Themes Ready for PHP 8</a>. He goes through everything that developers need to know to get their projects updated. The article also provides tools and resources to make things easier.</p>\n\n\n\n<h2>Goodbye, 2020</h2>\n\n\n\n<p class=\"has-drop-cap\">While the year might not have been ideal in many ways, there were some great moments. As I reflect upon the events of the last 12 months, I do not see a complete dumpster fire. There was a lot of good that came out of it. The world has changed in some large ways. Our societies have undergone some subtle reshaping. I do not know what 2021 holds, but I remain optimistic.</p>\n\n\n\n<p>I look forward to another year covering the events surrounding WordPress. I hope you continue down this journey with the WP Tavern 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:\"Thu, 31 Dec 2020 22:44: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:43:\"Matt: Jack Dorsey and Running Two Companies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"httpss://ma.tt/?p=53328\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"httpss://ma.tt/2020/12/running-two-companies/\";s: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:1808:\"<p>I had the <a href=\"httpss://distributed.blog/2020/12/16/episode-26-jack-dorsey-and-remote-collaboration/\">pleasure of interviewing Jack Dorsey for the Distributed podcast</a>, a conversation that ended up going a bit deeper and longer than previous episodes.</p>\n\n\n\n<p>In preparation for the interview I kept coming across people critical about the fact that Jack is the CEO of two companies simultaneously, <a href=\"httpss://twitter.com/\">Twitter</a> and <a href=\"httpss://squareup.com\">Square</a>, each having over 5,000 employees.</p>\n\n\n\n<p>I think what people miss is that at that scale, running a company is not that different from running a large division of a company. No one asks Jeff Bezos how he&#8217;s CEO of both a retail company and a cloud computing one (AWS), or Tim Cook how he&#8217;s CEO of a hardware business and a services business, and of course with both of those examples the breadth of what the companies cover is much wider. Also as an added benefit, shareholders can choose to invest in Square and Twitter together or not.</p>\n\n\n\n<p>All of that said, I think having a CEO-level seat at two of the most influential technology companies today does allow for accelerated learning, as organizational experiments will naturally happen at each company and then the best practice can be shared to the other. Jack wasn&#8217;t aware how much peer executives at each company meet with each other to share learnings, but that seems like an obvious win. </p>\n\n\n\n<p>Readers of this blog will especially appreciate how much we talked about open source and cryptocurrencies, and his view on the three things he&#8217;s responsible for as CEO. <a href=\"httpss://distributed.blog/2020/12/16/episode-26-jack-dorsey-and-remote-collaboration/\">Give it a listen and let me know what you think</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 Dec 2020 03:18:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:74:\"WPTavern: Understanding the Query Block and Its Importance in Site Editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109593\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"httpss://wptavern.com/understanding-the-query-block-and-its-importance-in-site-editing?utm_source=rss&utm_medium=rss&utm_campaign=understanding-the-query-block-and-its-importance-in-site-editing\";s: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:5285:\"<blockquote class=\"wp-block-quote\"><p>I really don&rsquo;t understand this Query block even though it&rsquo;s been mentioned in several Tavern posts. My eyes seem to gloss over when reading about it &ndash; ha!</p><p>Is it important that regular WordPress users understand this block, or is it really a block for developers?</p><p><a href=\"httpss://wptavern.com/gutenberg-9-6-introduces-drag-and-drop-blocks-and-global-inheritance-for-the-query-block#comment-357249\">Marcus</a></p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">I have given the Query block a lot of attention as of late. On occasion, I may have even called it one of the largest hurdles the Gutenberg development team has needed to jump before block-based themes become a reality. However, the &ldquo;query&rdquo; WordPress term is not something all users or Tavern readers are familiar with. It is a concept as old as WordPress and generally something that only developers needed to familiarize themselves with. When Full Site Editing lands in WordPress, the new block will expose the Query to far more users as part of the site editor interface.</p>\n\n\n\n<p>It is a block that is currently a part of the Gutenberg plugin but not WordPress core. However, at some point in 2021, more and more end-users and developers will be working with it.</p>\n\n\n\n<p>In WordPress terminology, we are really talking about two things, the Query and the Loop. The Query is defined by a set of arguments or options that determine what posts to display. The Loop is the part of the machine that &ldquo;loops&rdquo; through the queried posts and displays them, one after another. The Query asks for posts; the Loop cycles through them.</p>\n\n\n\n<p>Traditionally, theme authors were responsible for adding the Loop code to their templates, which used the global Query that WordPress supplied. Themes could also create custom queries, such as adding a posts list widget, categorized homepage post sections, or anything. And, &ldquo;posts&rdquo; can be anything from normal blog posts to WooCommerce products to the latest topics from the bbPress plugin.</p>\n\n\n\n<p>The Query may be one of the single most important aspects of WordPress. In essence, it is the engine behind displaying the content of every page on the site. Without it, all WordPress sites would simply be a header and a footer.</p>\n\n\n\n<p>The Gutenberg plugin provides two blocks for the Query:</p>\n\n\n\n<ul><li><strong>Query:</strong> The outer block for setting the options for which posts will show.</li><li><strong>Query Loop:</strong> The inner block, which is automatically added when using Query.</li></ul>\n\n\n\n<p>Currently, users can select between four fairly standard variations when first adding the Query block. They are combinations of the post featured image, title, date, and excerpt.</p>\n\n\n\n<img />Query block variations.\n\n\n\n<p>These can be further customized via the block options panel in the sidebar. Users can also find &ldquo;view&rdquo; options in the toolbar for selecting between List and Grid views. The List view is the traditional list of posts flowing vertically down the page. The Grid view displays posts in two to six columns.</p>\n\n\n\n<img />Grid view of posts while using the Query block.\n\n\n\n<p>The Query block has a basic set of options for which post types to display and how to order them. It has filters for categories, tags, authors, and keywords. The block is not as robust as what is possible with code yet. It is missing some basic options like a post number limit and nearly all of the more advanced parameters. However, it is a promising starting point.</p>\n\n\n\n<p>The more exciting aspects of this feature for end-users may not be the Query block at all. It is customizing the blocks that go inside, which display things like the featured image, post title, and more.</p>\n\n\n\n<p>As a former theme author, I cannot count the number of times users have asked me about customizing some aspect of the posts layout. Having them dive into code to make minor changes, such as removing the post author name or displaying the category in a different place, was not an ideal experience. The site editor will put this power directly into each user&rsquo;s hands.</p>\n\n\n\n<img />Adding post-related blocks to the Query block in Grid view.\n\n\n\n<p>The comment by Marcus was on the Tavern&rsquo;s post covering <a href=\"httpss://wptavern.com/gutenberg-9-6-introduces-drag-and-drop-blocks-and-global-inheritance-for-the-query-block\">Gutenberg 9.6</a>. The latest version of the plugin introduced global query inheritance for the Query block. This means that theme authors can now replicate the content layer in block-based themes. Previously, pages like archives and search results would simply display the latest posts when a theme used the Query block. Now, each of those pages can display the correct posts.</p>\n\n\n\n<p>However, the Query block is so much more than that. In the hands of users, it can be a powerful tool for creating custom output on a homepage &mdash; think newspaper-style categorized sections. Users can also create post lists in a sidebar, such as the latest forum replies or products. Theme authors can offer templates or block patterns with unique designs or as starting points for end-users to modify. There is no shortage of possibilities.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Dec 2020 23:05: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:158:\"WPTavern: GitHub’s 2020 State of the Octoverse Report Highlights: Developers are Working More Hours but Turning to Open Source Projects for Creative Outlets\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109613\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:353:\"httpss://wptavern.com/githubs-2020-state-of-the-octoverse-report-highlights-developers-are-working-more-hours-but-turning-to-open-source-projects-for-creative-outlets?utm_source=rss&utm_medium=rss&utm_campaign=githubs-2020-state-of-the-octoverse-report-highlights-developers-are-working-more-hours-but-turning-to-open-source-projects-for-creative-outlets\";s: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:3644:\"<p>GitHub has published its annual <a href=\"httpss://octoverse.github.com/\">Octoverse report</a> for 2020. The code hosting platform currently serves more than 56 million developers who created 60+ million new repositories this past year. The volume of work pumping through GitHub&rsquo;s pipes and its preeminence as the world&rsquo;s largest developer platform gives the company access to a trove of data on how people have been working during the pandemic. </p>\n\n\n\n<p>The Productivity report shows that developers have been putting in longer hours as compared to the previous year. It includes data on what time of day people seem to be more productive, as well as minute changes in the volume of work across various time zones and countries with different COVID-19 responses. The graph below tracks the US Pacific Time Zone, showing a spike in the push window and work volume beginning in mid-March with lockdowns. The volume of work remained consistently higher than the previous year.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>GitHub recorded 35% more repositories created than last year and 7.5 hours faster pull request merge times in teams&rsquo; most productive and collaborative weeks.</p>\n\n\n\n<p>Developers seem to be getting more done and GitHub attributes this to people using automation to accelerate their work, improved development practices, and the flexibility of blurring the lines between work and life. The report also cautions that this high volume of work may not be sustainable long-term should be tempered with regular breaks and conscious energy management practices.</p>\n\n\n\n<p>This collection of reports also highlights a few trends in the wider open source community. Alongside a general jump in work volume, GitHub tracked an increase in open source activity on weekends and holidays, at the same time that Enterprise developer activity dropped. Open source project creation is also up by 25% year over year since April 2020.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The data suggests that even when developers conclude their regular work, they are turning to open source projects for creative outlets. These projects often provide meaningful connections and community while the world is stuck at home.</p>\n\n\n\n<p>Based on these findings, GitHub recommends that organizations recognize the importance open source projects hold for employee wellbeing and enrichment when they are contributing outside of work.</p>\n\n\n\n<p>The State of the Octoverse also includes reports on Community and Security. GitHub found that 17% of the vulnerabilities hosted on its platform were explicitly malicious but triggered just 0.2% of alerts. The remaining 83% of vulnerabilities were the result of mistakes. The company found that vulnerabilities are fixed 1.4x faster when repositories are set up to automatically generate a pull request when a patch is available.</p>\n\n\n\n<p>In 2020, the average time for vulnerabilities to go undetected before being identified is four years for GitHub-hosted repositories. On average, it takes 4.4 weeks for the community to code and release a fix, and 10 weeks to alert the community on the availability of a security update. Once notified, users generally apply the update within one week.</p>\n\n\n\n<p>GitHub reports that its community is becoming more diverse as those who identify as developers have decreased from 60% in 2016 to 54% in 2020. Profiles related to education are growing (up from 17% in 2016 to 23% in 2020), followed by users working in data. The platform is becoming more approachable for collaborators who do not come from a development background. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Dec 2020 07:08: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: Armando WordPress Theme Provides Insight Into the Current State of Full Site Editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109503\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:233:\"httpss://wptavern.com/armando-wordpress-theme-provides-insight-into-the-current-state-of-full-site-editing?utm_source=rss&utm_medium=rss&utm_campaign=armando-wordpress-theme-provides-insight-into-the-current-state-of-full-site-editing\";s: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:5271:\"<p class=\"has-drop-cap\">As we inch closer to a year in which <a href=\"httpss://wptavern.com/what-is-full-site-editing-and-what-does-it-mean-for-the-future-of-wordpress\">WordPress&rsquo;s primary focus</a> will be on Full Site Editing, it is fortunate timing that Themes Team representative Carolina Nymark publicly <a href=\"httpss://twitter.com/carolinapoena/status/1343541924028968963\">announced her latest theme</a>, Armando. It is a blogging theme that makes use of the latest features from the Gutenberg plugin.</p>\n\n\n\n<p>The theme is currently <a href=\"httpss://themes.trac.wordpress.org/ticket/93476\">awaiting review</a> for the WordPress theme directory. It is also <a href=\"httpss://github.com/carolinan/fullsiteediting/tree/course/armando\">available via GitHub</a>.</p>\n\n\n\n<p>The news of Armando came moments after Nymark <a href=\"httpss://twitter.com/carolinapoena/status/1343538279346544643\">announced a redesign</a> of her <a href=\"httpss://fullsiteediting.com/\">Full Site Editing</a> website. The site is a resource for WordPress users and developers to learn more about upcoming features. It is built entirely out of blocks. It is also one of the few sites in the wild running a block-based theme in production.</p>\n\n\n\n<p>Armando is one of the better themes for testing Full Site Editing. This should come as no surprise. Nymark is a veteran of the Themes Team. She tends to cover all the bases and has done so with this theme. There are even notes in the code where she intends to change things as site editing improves.</p>\n\n\n\n<p>The theme is a solid starting point for theme authors who have yet to dip their toes into block-based theme development. It is also usable enough for end-users who want to experience the current state of Full Site Editing.</p>\n\n\n\n<img />Editing a single post template in the site editor.\n\n\n\n<p>The theme does not have a particular artistic flair. It is simple. It is a basic blogging theme that showcases each element the Gutenberg team has covered thus far in its journey toward the new block-based design system.</p>\n\n\n\n<p>Armando also uncovers some of the current problems with the system. As Nymark noted in her stylesheet, &ldquo;Date and categories are all block elements, we need to adjust them to align them better next to each other.&rdquo; On the front end, the theme&rsquo;s CSS adjusts these block-level elements to correctly line up with each other. However, as seen in the site editor view, they are separated as blocks. Post metadata like the author, date, and category often need to be inline. This choice for aligning basic elements of theme design also needs to exist in the site editor. That is if we ever want theme authors to adopt it. <em>And, we haven&rsquo;t even gotten to the complicated stuff yet.</em></p>\n\n\n\n<p>Armando is one of the first block-based themes I have seen to include a 404 template. This is important because it is one reason the site editor needs to exist in WordPress. Throughout all of the platform&rsquo;s history, there was no standard way for users to edit their 404 page, which is the page visitors see when they travel to an invalid URL on a site.</p>\n\n\n\n<img />Editing the 404 template \n\n\n\n<p>Landing on a 404 page on most WordPress sites is one of the worst user experiences a site visitor can have on the web. Traditionally, themes might have added some unhelpful text, a search box, and maybe a list of recent posts. But, most users had no control over it unless they directly edited their theme&rsquo;s code. They could not add a bit of pizzazz, personalized messages, or more meaningful directions for the visitor who stumbled upon the page through no fault of their own. Some themes have provided workarounds for this over the years. Such solutions have included allowing users to assign a private page or adding customizer options. However, changing themes meant losing that 404-page customization because it was a non-standard solution.</p>\n\n\n\n<p>Full Site Editing changes that. Users will have direct access to creating a custom 404 page that best suits their site. It is nice that the Armando theme already includes a template to start from.</p>\n\n\n\n<p>The Armando theme also includes three different header templates for users to switch between. This could offer some insight into how theme authors may tackle design choices in the future. Traditional themes often have numerous checkboxes, input fields, and dropdowns for changing such design elements. Selectable template parts could be the alternative.</p>\n\n\n\n<img />Switching the header template part.\n\n\n\n<p>I lean more toward seeing theme authors using block patterns rather than templates for this. However, WordPress needs to add a method for designating patterns on specific editing screens (e.g., post editor vs. site editor). In the long run, the patterns UI feels like it will be a better place. That is assuming it ever receives an <a href=\"httpss://wptavern.com/proposal-to-create-an-expanded-view-or-overlay-for-the-block-patterns-inserter\">expanded view or overlay option</a>.  There may be solutions where patterns and template parts merge as well.</p>\n\n\n\n<p>Either way, this type of experimentation is what we need to see in the WordPress theme development world at the moment. I welcome more of it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Dec 2020 22:37:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:64:\"WPTavern: AMP Under Fire in New Antitrust Lawsuit Against Google\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109265\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:173:\"httpss://wptavern.com/amp-under-fire-in-new-antitrust-lawsuit-against-google?utm_source=rss&utm_medium=rss&utm_campaign=amp-under-fire-in-new-antitrust-lawsuit-against-google\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6515:\"<p><a href=\"httpss://amp.dev/\">AMP</a> (Accelerated Mobile Pages), an open source initiative that originated with Google, is coming under greater scrutiny at the tail end of 2020, as the company is facing a rash of antitrust lawsuits beginning in October. The second suit is the one most pertinent to the AMP project. (A third suit brought by 38 state attorneys general alleges that Google is operating an illegal monopoly for online search and search advertising.)</p>\n\n\n\n<p>The second suit is led by Texas Attorney General Ken Paxton and nine other state attorneys general. It alleges that AMP was created for the purpose of pushing publishers away from &ldquo;header bidding,&rdquo; an advertising mechanism that allows sites to route their ad inventory through several ad exchanges and sell the space to the highest bidder. Header bidding requires JavaScript and therefore doesn&rsquo;t play well with AMP.</p>\n\n\n\n<p>The <a href=\"httpss://www.texasattorneygeneral.gov/sites/default/files/images/admin/2020/Press/20201216%20COMPLAINT_REDACTED.pdf\">complaint</a> claims that &ldquo;Google&rsquo;s program secretly let its own<br />exchange win, even when another exchange submitted a higher bid.&rdquo; It also alleges that &ldquo;Google ad server employees met with AMP employees to strategize about using AMP to impede header bidding, and how much pressure publishers and advertisers would tolerate:&rdquo; </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>First, Google restricted the code to prohibit publishers from routing their bids to or sharing their user data with more than a few exchanges a time, which limited AMP compatibility with header bidding. At the same time, Google made AMP fully compatible with routing to exchanges through Google. Google also designed AMP to force publishers to route rival exchange bids through Google&rsquo;s ad server so that Google could continue to peek at rivals&rsquo; bids and trade on inside information. Third, Google designed AMP so that users loading AMP pages would make direct communication with Google servers, rather than publishers&rsquo; servers. This enabled Google&rsquo;s access to publishers&rsquo; inside and non-public user data. AMP pages also limit the number of ads on a page, the types of ads publishers can sell, as well as enriched content that publishers can have on their pages.</p></blockquote>\n\n\n\n<p>There are many more claims about collusion with Facebook and other anti-competitive practices, but the section regarding AMP may be of particular interest to publishers who are considering implementing it:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Google falsely told publishers that adopting AMP would enhance load times, but Google employees knew that AMP only improves the [redacted] and AMP pages can actually [redacted] [redacted] [redacted]. In other words, the ostensible benefits of faster load times for cached AMP version of webpages were not true for publishers that designed their web pages for speed. Some publishers did not adopt AMP because they knew their pages actually loaded faster than AMP pages.</p><p>Google also [redacted]&nbsp;<em>of non-AMP ads by giving them artificial one second delays</em>&nbsp;in order to give Google AMP a [redacted] [redacted] slows down header bidding, which Google uses to turn around and denigrate header bidding for being too slow.</p></blockquote>\n\n\n\n<p>The complaint references internal documents that demonstrate how AMP is an inferior product when compared to the options previously available to publishers:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Google gave publishers a Faustian bargain: (1) publishers could lose more money by using header bidding because Google Search would suppress their search rankings and send traffic to competing AMP-compatible publishers; or (2) publishers could lose less money by using AMP pages and forgoing exchange competition in header bidding. Either option was far inferior to the options available to publishers before AMP was introduced. Just how inferior? [redacted] [redacted] [redacted] according to internal Google documents.</p></blockquote>\n\n\n\n<p>Just 48 hours after this lawsuit was filed, AMP Advisory Committee member Terence Eden <a href=\"httpss://shkspr.mobi/blog/2020/12/i-have-resigned-from-the-google-amp-advisory-committee/\">resigned</a> from his position as a non-corporate representative. </p>\n\n\n\n<p>The <a href=\"httpss://github.com/ampproject/meta-ac/blob/master/WORKING_MODE.md#goal-of-the-ac\">goal of the AMP AC</a> is to &ldquo;Make AMP a great web citizen,&rdquo; but Eden declined to nominate a replacement candidate, because he is concerned that &ldquo;Google has limited interest in that goal.&rdquo;</p>\n\n\n\n<p>&ldquo;Google&rsquo;s thesis is that the mobile-web is dying and people prefer to use apps &ndash; therefore making the web faster and more app-like will retain users,&rdquo; Eden wrote.&nbsp;&ldquo;<a href=\"httpss://github.com/ampproject/meta-ac/issues/32\">Google doesn&rsquo;t publish data about this</a>, so I can&rsquo;t directly criticize their motives. But I do not think AMP, in its current implementation, helps make the web better.</p>\n\n\n\n<p>&ldquo;I remain convinced that AMP is poorly implemented, hostile to the interests of both users and publishers, and a proprietary and unnecessary incursion into the open web.&rdquo;</p>\n\n\n\n<p>In a follow-up email to&nbsp;<em><a href=\"httpss://www.theregister.com/2020/12/19/google_amp_resignation\">The Register</a></em>, Eden&nbsp;said, &ldquo;I don&rsquo;t know what Google&rsquo;s motives are. But AMP has not been responsive to the needs of users, publishers, or the web community. We need an open, standards based approach to the web.&rdquo;</p>\n\n\n\n<p>Where will AMP go in 2021? Publishers have already invested a lot of resources in order to comply with its proprietary subset of HTML. Smaller sites often lack the resources to support AMP, which may be one reason why Google began investing heavily in developing <a href=\"httpss://profiles.wordpress.org/google/#content-plugins\">WordPress plugins</a> that make its products easier to use. More than 500,000 WordPress site are now using the official <a href=\"httpss://wordpress.org/plugins/amp/\">AMP plugin</a>.</p>\n\n\n\n<p>Google has spent years clawing for greater AMP adoption, despite widespread criticism that the project is a threat to the open web. Every last bit of that effort is now in jeopardy if the complaints in the antitrust lawsuits and their supporting documents are found to be true.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Dec 2020 05:43:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://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:84:\"WPTavern: Navigate the Content Canvas With the Block Editor Outline WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109480\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"httpss://wptavern.com/navigate-the-content-canvas-with-the-block-editor-outline-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=navigate-the-content-canvas-with-the-block-editor-outline-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4173:\"<p class=\"has-drop-cap\">Last week, Kalimah Apps released its <a href=\"httpss://wordpress.org/plugins/editor-block-outline/\">Editor Block Outline</a> plugin to the WordPress plugin repository. The idea is simple. The plugin adds a bordered outline to each block in the document along with their associated labels. For some users, this will help them navigate more complex layouts.</p>\n\n\n\n<p>There is little information available about Kalimah Apps through the usual WordPress-related channels. However, this is its second plugin in the directory. Its first plugin, which has not been updated in four years, was a massive library of over 40 shortcodes, 1,000s of icons, and dozens of animations. Editor Block Outline is much more scaled back and lean.</p>\n\n\n\n<p>The plugin adds a new sidebar panel to the editor. Its icon, located in the upper right of the screen, looks like a picture frame. It has several options to allow users to personalize the experience, such as what contexts to show the outline and whether to show the block name. The latter option is sometimes best disabled when inserting blocks with many inner blocks. Otherwise, the interface may look a bit cluttered.</p>\n\n\n\n<p>Users can also select an outline color, border style, and opacity. I recommend knocking opacity down below 50% for more of a <em>guideline</em> look, something that is visible but does not feel like it is a part of the content.</p>\n\n\n\n<img />Selecting outline options for Editor Block Outline.\n\n\n\n<p>All of the settings are stored as user metadata. Using this data storage method means that each user can decide how they want to use this plugin. Or, they can even disable it altogether. Because it is stored this way, settings will carry over from one post to the next.</p>\n\n\n\n<p>&ldquo;Do you want to know the feeling of driving while drunk, or to move around with blinders on? Then use Gutenberg without this plugin!!!&rdquo; That is how one user <a href=\"httpss://wordpress.org/support/topic/works-perfectly-2168/\">reviewed this plugin</a>. While I may not describe the default editor quite so &mdash; ahem &mdash; <em>eloquently</em>, this plugin does solve some problems, particularly when you need to more easily click around the interface.</p>\n\n\n\n<p>As Brian Gardner <a href=\"httpss://twitter.com/bgardner/status/1329543944401801227\">joked on Twitter</a>, selecting some blocks like Columns is tedious work or a fun game of whack-a-mole:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Live footage of me trying to select the main Columns block in WordPress to increase the number. <a href=\"httpss://t.co/Fud3DLQ4VH\">pic.twitter.com/Fud3DLQ4VH</a></p>&mdash; Brian Gardner (@bgardner) <a href=\"httpss://twitter.com/bgardner/status/1329543944401801227?ref_src=twsrc%5Etfw\">November 19, 2020</a></blockquote>\n</div>\n\n\n\n<p>Of course, there are ways around that, such as using the navigation tree, breadcrumbs, or keyboard commands. However, the block editor is meant to be a visual interface that allows end-users to simply point and click on the elements they wish to edit. Selecting specific blocks has generally improved over time, but users still run into issues. Editor Block Outline makes it a much simpler affair.</p>\n\n\n\n<img />Selecting the Columns block.\n\n\n\n<p>In Full Site Editing (FSE) mode with the Gutenberg plugin enabled, the plugin did not hold up quite as well. Depending on the theme in use, the blocks&rsquo; text labels were sometimes huge or did not match across the canvas. The plugin&rsquo;s icon was also not available on the site editor screen.</p>\n\n\n\n<p>FSE is still in beta. The plugin cannot be expected to work with it yet. However, this is where I imagine the plugin will make the most sense for many users. In the post editor, it would get in the way of writing long-form posts. However, the plugin could become an invaluable tool for navigating complex layouts in both the post and site editors.</p>\n\n\n\n<p>More than anything, the reason I like Editor Block Outline is its dedication to a singular purpose. It adds a simple feature that enhances the editor without taking on too large of a role.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Dec 2020 21:05:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:46:\"BuddyPress: BuddyPress in 2020, it’s a wrap!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://buddypress.org/?p=316282\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://buddypress.org/2020/12/buddypress-in-2020-its-a-wrap/\";s: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:9203:\"<p>Hello dear members of the BuddyPress community,</p>\n\n\n\n<p>For this last day of 2020, we are inaugurating our very first End of Year wrap-up post. We believe it&#8217;s a good way to congratulate ourselves (<em>the whole BuddyPress community</em>) about the free &amp; priceless hard work we&#8217;ve all put together into our open source project.</p>\n\n\n\n<p>There are many ways we are <a href=\"httpss://codex.buddypress.org/participate-and-contribute/\">getting involved</a> into BuddyPress and we all know the best way to maintain BuddyPress in the long term is to give some of our spare time to carry on bringing that little piece to the project. Every contribution makes a difference.</p>\n\n\n\n<p>Let&#8217;s thank us all, the users, the support forum moderators, the documentation writers, the translators, the theme designers, the plugin developers &amp; the BuddyPress Core committers team. We have built great community features all along the 2020 year.</p>\n\n\n\n<p class=\"has-text-align-center has-huge-font-size\"><img src=\"httpss://s.w.org/images/core/emoji/13.0.1/72x72/1f44f.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Here are our results:</h2>\n\n\n\n<h3>2020 releases</h3>\n\n\n\n<ul><li>9 releases (3 more than in 2019)</li><li><strong>2 major releases</strong> (1 more than in 2019)</li><li>7 minor releases (2 more than in 2019)</li></ul>\n\n\n\n<h3>2020 Tickets</h3>\n\n\n\n<ul><li>We&#8217;ve fixed 186 tickets, it&#8217;s <strong>62% more than in 2019</strong>.</li><li>The 6.0.0 release (May 2020) was the one which fixed the most tickets for 2 years (89).</li><li>Comparing to 2019, we&#8217;ve increased the fixed tickets per release average from 14 to 23.</li></ul>\n\n\n\n<h3>2020 Code contributors</h3>\n\n\n\n<ul><li>7.0.0 gathered the highest number of contributors for 2 years. We were <strong>55</strong> involved into the making of this release. It&#8217;s almost twice the number of contributors the 5.0.0 release got in 2019.</li><li>For each release we are an average of 14 contributors per release. In 2019 we were 9 contributors. <strong>Contributions to the BuddyPress project grew by 40% in 2020</strong>.</li></ul>\n\n\n\n<h3>2020 Downloads</h3>\n\n\n\n<ul><li>Most important spike for 2 years happened in 2020 for the 7.0.0 releases: <strong>34.236 downloads</strong> on December 11.</li><li>BuddyPress was downloaded more than 1.257.556 times in 2020 (the year is not finished yet <img src=\"httpss://s.w.org/images/core/emoji/13.0.1/72x72/1f60c.png\" alt=\"?\" class=\"wp-smiley\" />).</li><li><strong>The growth ratio is 23% compared to 2019</strong>.</li></ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Here are our achievements:</h2>\n\n\n\n<h3>Acknowledging <a href=\"httpss://translate.wordpress.org/projects/wp-plugins/buddypress/contributors/\">Polyglots contributions</a></h3>\n\n\n\n<p>Making BuddyPress available in as many languages as possible is very important to ensure the best user experience of the plugin features. We are always trying to improve how we credits translators and ease their tasks. During the 6.0.0 release, we&#8217;ve reviewed all the strings needing translators comments to explain the meaning of the placeholders we use (e.g.: <code>%s</code>, <code>%d</code>, <code>%1$s</code>, etc.).</p>\n\n\n\n<p>We&#8217;ve also decided to include, from now on, into major release credits the translation contributor names that have given their times to make sure the development (Trunk) translation is 100% ready once our major releases final string freeze step is over. <strong>This work is strategic to BuddyPress users</strong> as they will be able to get the new strings translation as soon as they upgrade or install the plugin.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Easing &amp; welcoming code contributions</h3>\n\n\n\n<p>At the end of 2019, we&#8217;ve made available a <a href=\"httpss://wordpress.org/plugins/bp-beta-tester/\">new plugin to ease beta-testing</a>, this year we&#8217;ve added the <code><a href=\"httpss://developer.wordpress.org/block-editor/packages/packages-env/\">@wordpress/env</a></code> package to our development version (Trunk) and <a href=\"httpss://codex.buddypress.org/participate-and-contribute/contribute-with-code/\">wrote a tutorial</a> about how you can easily set up a development environment to play with BuddyPress code thanks to it. We believe it&#8217;s an important step towards making contributing to BuddyPress easier and we hope it will increase the number of people getting involved into BuddyPress source code improvements.</p>\n\n\n\n<p>Before starting the 7.0.0 development cycle and just like the WordPress Core team does before each major milestone, we&#8217;ve published <a href=\"httpss://bpdevel.wordpress.com/2020/05/27/buddypress-7-0-0-call-for-tickets/\">our first &#8220;Call for tickets&#8221;</a>. We&#8217;ll do it before each major release so that you can share with the BuddyPress Core committers the tickets you think should be fixed for the next development cycle. <strong>The priorities of the BuddyPress community matter</strong>, we encourage you to use this call for tickets to make your voice heard.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Informing BuddyPress Theme &amp; Plugin authors about important changes</h3>\n\n\n\n<p>During the 6.0.0 development cycle we (<em>re</em>)started to take the time to write developer notes as soon as possible. We also organized these notes into categories according to the version number of the release being built.</p>\n\n\n\n<ul><li>To prepare 6.0.0, we&#8217;ve published <a href=\"httpss://bpdevel.wordpress.com/category/development-notes/6-0/\">4 notes</a>,</li><li>To prepare 7.0.0, we&#8217;ve published <a href=\"httpss://bpdevel.wordpress.com/category/development-notes/7-0/\">9 notes</a>.</li></ul>\n\n\n\n<p>Our goals doing so is to limit the risk of &#8220;breaking&#8221; your active theme or plugins keeping their authors aware of changes they should check before a major release is published. It can also help developers to start working early on extending BuddyPress new features. Please do read these notes and share them with your networks to increase their audience and contribute to cover this risk.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Checking how you use BuddyPress and what are your needs:</h3>\n\n\n\n<p>BuddyPress surveys are back! <strong>BuddyPress is about users</strong>: we are very happy we could organize the <a href=\"httpss://buddypress.org/2020/12/buddypress-2020-survey-results/\">2020 survey</a> to get you inputs about your BuddyPress usage and about the specific directions for the plugin we are thinking of for its future.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Introducing new community features to the BuddyPress plugin:</h3>\n\n\n\n<ul><li>The BP REST API welcomed 6 new endpoints to help you build great interactions from your applications about: Blogs, Blog avatar, Friends, Group Cover Image, Member Cover Image, and User Signups.</li><li>5 BuddyPress blocks have landed into the BuddyPress blocks category of your WordPress Block Editor.</li><li>New Administration screens to manage BuddyPress Types (Member &amp; Group ones) are now available within your WordPress Dashboard. </li><li>Just like Members &amp; Groups, the Blogs component can now enjoy a new default avatar for Sites.</li><li>A great 2.0 version of BP WP CLI to help you manage your BuddyPress site right from the command lines.</li><li>And many fixes and improvements about the existing features (See <a href=\"httpss://codex.buddypress.org/releases/version-6-0-0/\">6.0.0</a> &amp; <a href=\"httpss://codex.buddypress.org/releases/version-7-0-0/\">7.0.0</a> release notes)</li></ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Starting side projects:</h3>\n\n\n\n<ul><li>A new design for the BuddyPress.org network</li><li><a href=\"httpss://github.com/buddypress/bp-blocks/pull/7\">Block based Activity Post Form</a>.</li><li>Migrating the <a href=\"httpss://bpdevel.wordpress.com/\">Developer Updates blog</a> from WordPress.com to BuddyPress.org (See <a href=\"httpss://buddypress.trac.wordpress.org/ticket/5525#comment:11\">#5525</a>).</li></ul>\n\n\n\n<p>If one of these projects is interesting you, don&#8217;t hesitate to contribute to it.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>2021 Goals</h2>\n\n\n\n<p>Based on the discussions the Core Team had during our development meetings (every other Wednesday at 19:00 UTC in <a href=\"httpss://wordpress.slack.com/messages/buddypress\">#BuddyPress</a>), here&#8217;s a list of directions we mostly agree on about: </p>\n\n\n\n<ul><li>A fantastic standalone BuddyPress theme.</li><li>BuddyPress code reference.</li><li>A BuddyPress Attachments component.</li><li>Improve ways to get help about &amp; for BuddyPress.</li></ul>\n\n\n\n<p><strong>Let&#8217;s try to make them concrete in 2021!</strong></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p><em>Thanks for reading this post and for your involvement in contributing to BuddyPress in 2020. Let&#8217;s wish us all a great new year&#8217;s eve <img src=\"httpss://s.w.org/images/core/emoji/13.0.1/72x72/1f389.png\" alt=\"?\" class=\"wp-smiley\" />. Bye 2020 and Happy 2021, full of great contributions, to the BuddyPress community.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Dec 2020 19:29:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s: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:28:\"Matt: State of the Word 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"httpss://ma.tt/?p=53321\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"httpss://ma.tt/2020/12/sotw-2020/\";s: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:1319:\"<p>This tumultuous year, two things really helped me get through it: my colleagues at <a href=\"httpss://automattic.com/\">Automattic</a> and the community of <a href=\"httpss://wordpress.org/\">WordPress</a>. </p>\n\n\n\n<p>At the end of the year I usually deliver a speech to the WP community we call the State of the Word, that celebrates what we accomplished the previous year and shines a light on what we could focus on in the coming year. There&#8217;s always a great energy in the room and I love mixing with the audience before and after the talk. This year we did it online, which meant we could produce the talk a little more, and we made extra time for the Q&amp;A afterward with answers not just from me but folks across the community. </p>\n\n\n\n<p>One thing I&#8217;ll call out <a href=\"httpss://wordpress.org/news/2020/12/simone/\">WordPress 5.6</a> had an all women and non-binary release squad of over 50 people, a first for WordPress and probably any large open source project. Also the <a href=\"httpss://w3techs.com/technologies/history_overview/content_management/all/y\">market share of WordPress</a> grew more in 2020 than it has in any year since it started being tracked!</p>\n\n\n\n<p>If you&#8217;re curious about what&#8217;s next for WordPress, check it out:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 27 Dec 2020 22:55:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s: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:115:\"WPTavern: Google to Migrate Structured Data Testing Tool to New Domain after Backlash from Deprecation Announcement\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109332\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:275:\"httpss://wptavern.com/google-to-migrate-structured-data-testing-tool-to-new-domain-after-backlash-from-deprecation-announcement?utm_source=rss&utm_medium=rss&utm_campaign=google-to-migrate-structured-data-testing-tool-to-new-domain-after-backlash-from-deprecation-announcement\";s: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:2781:\"<p>Google&rsquo;s <a href=\"httpss://search.google.com/test/rich-results\">Rich Results Test</a> came <a href=\"httpss://developers.google.com/search/blog/2020/07/rich-results-test-out-of-beta\">out of beta</a> in July with support for all Google Search rich result features like carousels, images, or other non-textual elements. At that time, Google announced it would be deprecating the <a href=\"httpss://search.google.com/structured-data/testing-tool/u/0/\">Structured Data Testing Tool</a>, which SEOs, developers, and site owners have relied on for testing structured markup and troubleshooting schema issues.</p>\n\n\n\n<p>The SEO community reacted strongly to this change, because the Rich Results Test only validates structured data that is supported by Google. It also does not provide much useful feedback on errors. </p>\n\n\n\n<p>&ldquo;This is awful,&rdquo; SEO consultant Barry Adams said in response to the change. &ldquo;The SDTT is a tool that validates ALL schemas and helps make the web a semantically richer place. The RR test only supports a tiny narrow subset of Google-approved schemas. You&rsquo;re downgrading the web with this move.&rdquo;</p>\n\n\n\n<p>When Google <a href=\"httpss://twitter.com/googlesearchc/status/1280507131318460418\">announced</a> the Structured Data Testing Tool&rsquo;s deprecation on Twitter, comments from various web professions indicated widespread disappointment in the decision.</p>\n\n\n\n<p>&ldquo;The new tool is painfully slow,&rdquo; digital marketing consultant Ian Lurie said. &ldquo;The old tool showed a structured data result for the URL tested above. It provided useful feedback and supported industry-wide standardization. The truth is, you&rsquo;re replacing a great structured data tool for an inferior Google-specific one.&rdquo;</p>\n\n\n\n<p>After taking note of all the negative feedback, Google <a href=\"httpss://developers.google.com/search/blog/2020/12/structured-data-testing-tool-update\">announced</a> last week that it will no longer be deprecating the tool. Instead, the company plans to migrate it to a new domain:  </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>To better support open standards and development experience, we&rsquo;re refocusing the Structured Data Testing Tool and migrating it to a new domain serving the schema.org community by April 2021. The main purpose of the tool will be to check syntax and compliance of markup with schema.org standards.&nbsp;</p></blockquote>\n\n\n\n<p>Google is making some changes to the tool to differentiate it from the Rich Results Test. The Structured Data Testing tool will not be able to check for Google Search rich result types. It will be refocused to validate only schema.org properties, and is recommended for validating types that Google Search doesn&rsquo;t yet consume.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Dec 2020 23:56: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: Learn WordPress Launches Trac Introductory Workshop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109334\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:167:\"httpss://wptavern.com/learn-wordpress-launches-trac-introductory-workshop?utm_source=rss&utm_medium=rss&utm_campaign=learn-wordpress-launches-trac-introductory-workshop\";s: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:2230:\"<p>Jonathan Desrosiers, a WordPress core committer and software engineer at Bluehost, has published a new workshop titled &ldquo;<a href=\"httpss://learn.wordpress.org/workshop/how-to-use-trac/\">How to Use Trac</a>&rdquo; on the <a href=\"httpss://learn.wordpress.org/\">Learn WordPress</a> platform. The 20-minute video offers a crash course on  the ticket tracking software that WordPress relies on to manage core development. Trac is also used for contributing to <a href=\"httpss://meta.trac.wordpress.org/\">WordPress&rsquo; meta</a> component, which includes WordPress.org sites and API, directories, support areas, and other projects.</p>\n\n\n\n<p>Trac&rsquo;s antiquated UI can be intimidating for newcomers, posing another barrier to contribution. Even experienced WordPress contributors are eager to move core development to GitHub or some other platform. It can get confusing since bugs related to the editor need to be reported on GitHub instead of Trac. Until WordPress adopts another platform, the ability to navigate Trac remains an important skill.</p>\n\n\n\n<p>Desrosiers&rsquo; workshop covers topics like searching for pre-existing tickets before reporting a new issue, how to write a good bug report or feature request, how to identify component maintainers, attaching patches, and how proper classification of the ticket can help other teams get involved. He also helps workshop students understand ticket resolutions so they can frame their expectations accordingly. This video includes a full walkthrough of creating a new ticket where Desrosiers explains each field on the form. </p>\n\n\n\n<p>Once you get up to speed on learning Trac and start contributing, you may also want to follow the <a href=\"httpss://twitter.com/wordpresstrac\">WordPress Trac on Twitter</a>. New contributors may also want to explore <a href=\"httpss://wptavern.com/wptracsearch-an-elasticsearch-powered-search-interface-for-wordpress-trac-tickets\">WPTracSearch</a>, an unofficial project that provides an alternative Elasticsearch-powered interface for searching WordPress Trac tickets. WPTracSearch delivers more accurate results, even for basic queries, that can be filtered based on milestone, component, focuses, usernames, and more criteria.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Dec 2020 21:38:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: Gutenberg 9.6 Introduces Drag-and-Drop Blocks and Global Inheritance for the Query Block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109323\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:241:\"httpss://wptavern.com/gutenberg-9-6-introduces-drag-and-drop-blocks-and-global-inheritance-for-the-query-block?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-9-6-introduces-drag-and-drop-blocks-and-global-inheritance-for-the-query-block\";s: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:5098:\"<p class=\"has-drop-cap\">For some people, Christmas arrived a couple of days early. <a href=\"httpss://make.wordpress.org/core/2020/12/23/whats-new-in-gutenberg-23-december/\">Gutenberg 9.6 launched</a> with its first iteration of drag-and-drop blocks from the inserter. There are some other enhancements like <a href=\"httpss://github.com/WordPress/gutenberg/pull/27297\">vertical buttons</a>, heaps of bug fixes, new APIs, and other improvements. But, let&rsquo;s be real. The ability to drag blocks from the inserter into the content canvas is the highlight of this release.</p>\n\n\n\n<p>Another key feature is that the Query block, which is only available when Full Site Editing is enabled, now <a href=\"httpss://github.com/WordPress/gutenberg/pull/27128\">inherits from the global query arguments</a>. As has been usual as of late, much of the work in the Gutenberg plugin has focused on improving the site editor.</p>\n\n\n\n<h2>Drag Blocks Into the Content Canvas</h2>\n\n\n\n<img />Dragging a block from the inserter and dropping it between paragraphs.\n\n\n\n<p class=\"has-drop-cap\">Perhaps the Gutenberg development team has <a href=\"httpss://wptavern.com/wordpress-5-7-development-kicks-off-with-focus-on-full-site-editing#comment-357130\">seen</a> <a href=\"httpss://wptavern.com/proposal-to-create-an-expanded-view-or-overlay-for-the-block-patterns-inserter#comment-353059\">your</a> <a href=\"httpss://wptavern.com/google-search-to-add-page-experience-to-ranking-signals-in-may-2021#comment-351977\">comments</a> and <a href=\"httpss://wptavern.com/gutenberg-9-0-brings-major-improvements-to-navigation-screen-and-query-block#comment-344463\">your</a> <a href=\"httpss://wptavern.com/wordpress-5-6-wish-list-homepage-post-type-selection-and-block-management#comment-336374\">other</a> <a href=\"httpss://wptavern.com/gutenberg-8-5-adds-single-gallery-image-editing-allows-image-uploads-from-external-sources-and-improves-drag-and-drop#comment-334299\">comments</a>. If there is one common thread among the comments on our Gutenberg-related posts, it is that a segment of the WordPress user base wants more drag-and-drop capabilities.</p>\n\n\n\n<p>The new feature only works with blocks right now. Users cannot yet drag and drop patterns from the inserter.</p>\n\n\n\n<p>After several tests since Gutenberg 9.6 Release Candidate 1 landed last week, I have had no issues with it. For the most part, the experience felt smooth and easy to use.</p>\n\n\n\n<p>I have never seen the allure of drag-and-drop features in a content editor. If I am not typing in Markdown, I am in the WordPress editor and using keyboard shortcuts. Throughout my career, I have either been writing code or writing words daily. Picking up my fingers from the keyboard only serves to waste time.</p>\n\n\n\n<p>Sometimes I forget that the block editor already has some drag-and-drop capabilities available, which allow end-users to move blocks from one position to another in the canvas. I tend to work with the top toolbar enabled, so I rarely see the feature.</p>\n\n\n\n<p>Nevertheless, I do see how dragging and dropping blocks could be useful to some users. I use them in other types of editors, such as Gimp or Photoshop, at times. The one thing I like about those is the toolset is always available in the sidebar. This is not the case with the block inserter. While it will stay open for users to drag multiple elements into their content, it disappears once users begin working elsewhere. That could become irritating if the user is in more of a visual-design workflow instead of a content-editing mode.</p>\n\n\n\n<p>Dragging blocks from the inserter would make more sense for my workflow in the upcoming site editor rather than the post editor. The feature works great in that context too.</p>\n\n\n\n<h2>Query Block Supports Inheriting the Global Query Arguments</h2>\n\n\n\n<img />Inheriting the Query block&rsquo;s options from the URL.\n\n\n\n<p class=\"has-drop-cap\">The low-key star of this release is an update to the Query block, which is only available when using a block-based theme. The update is one of the most important breakthroughs for Full Site Editing, a pivotal moment in the history of the Gutenberg project.</p>\n\n\n\n<p>In previous iterations, the Query block required that themes via their block templates or end-users via the site editor define which posts to display. While that is a necessary function of the block, the missing piece was the global query support.</p>\n\n\n\n<p>In the simplest terms, whatever URL a visitor lands upon tells WordPress which posts to load. The data for loading these posts is all stored in a global set of query arguments. Themes can then loop through these posts to display them.</p>\n\n\n\n<p>In Gutenberg 9.6, the Query block can now inherit these query arguments. This means that things like the blog posts page, category archives, search results, and more will display the correct posts when someone visits one of those specific URLs.</p>\n\n\n\n<p>On the surface, this change merely adds a single option to the interface. However, under the hood, it is a achievement that clears a gaping path for developing block-based themes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Dec 2020 20:16:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:79:\"WPTavern: Exploring Photo Blocks, an Experimental FSE-Ready Photoblogging Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109274\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:201:\"httpss://wptavern.com/exploring-photo-blocks-an-experimental-fse-ready-photoblogging-theme?utm_source=rss&utm_medium=rss&utm_campaign=exploring-photo-blocks-an-experimental-fse-ready-photoblogging-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4979:\"<p class=\"has-drop-cap\">Kjell Reigstad announced the <a href=\"httpss://github.com/WordPress/theme-experiments/tree/master/photo-blocks\">Photo Blocks</a> theme on December 9. It is a part of an ongoing set of experimental work from the WordPress <a href=\"httpss://github.com/WordPress/theme-experiments\">Theme Experiments</a> repository on GitHub. It is essentially a testbed of ideas that are helping to propel the upcoming block-based theming era.</p>\n\n\n\n<p>In the past few months, I have covered the repository&rsquo;s <a href=\"httpss://wptavern.com/carrd-like-theme-experiment-provides-a-glimpse-into-the-future-of-theming\">Carrd-like landing page theme</a>, <a href=\"httpss://wptavern.com/twenty-twenty-one-blocks-theme-launching-as-a-separate-project\">Twenty Twenty-One Blocks</a>, and the Full Site Editing (FSE) <a href=\"httpss://wptavern.com/jump-start-block-based-theme-development-with-the-fse-theme-generator\">Theme Generator</a>. There is a lot of movement happening in the repository that theme developers would be remiss to overlook.</p>\n\n\n\n<p>&ldquo;I built a new block-based photoblog theme in the experiments repo,&rdquo; Reigstad <a href=\"httpss://twitter.com/kjellr/status/1336697938538618882\">tweeted</a> just a couple of weeks ago. &ldquo;It&rsquo;s refreshing to see how well this works just with existing FSE tools.&rdquo;</p>\n\n\n\n<p>Like most FSE-capable themes currently making the rounds, it is simple. There are miles left before block-based themes and the upcoming site editor reach maturity. Photo Blocks showcases yet another step in the evolution of the system.</p>\n\n\n\n<img />Posts page view of Photo Blocks in the site editor.\n\n\n\n<p>The theme uses the Query block&rsquo;s new grid view, which was added in <a href=\"httpss://wptavern.com/gutenberg-9-5-improves-site-editor-and-adds-new-options-for-cover-and-code-blocks\">Gutenberg 9.5</a>. The Query block is one of the most important pieces of the Full Site Editing system. Like in traditional themes, the query and &ldquo;the loop&rdquo; output posts on the front end.</p>\n\n\n\n<p>The addition of the grid view allows themes to output their posts in columns. This is a nice addition for Photo Blocks and other photoblogging or portfolio themes. Currently, the Query block supports only a second type of view, the default list of posts. It all seems to limit design possibilities right now, but the grid option does provide some hope that more robust tools are coming.</p>\n\n\n\n<p>The Query block is undoubtedly one of the most complex features the Gutenberg team is building, and it is a crucial block for the upcoming site editor.</p>\n\n\n\n<p>There is also no posts pagination or navigation at the moment. That is because the Gutenberg team is still <a href=\"httpss://github.com/WordPress/gutenberg/issues/26557\">ironing out the details</a> of such a block. This is another Herculean task given the near-limitless variations on designing posts navigation. The block will need to provide theme authors the flexibility they are accustomed to when writing code.</p>\n\n\n\n<h2>Why Testing and Building Experimental Themes Matters</h2>\n\n\n\n<p class=\"has-drop-cap\">The development of Photo Blocks exposed some missing features in Gutenberg. Without community feedback from building and testing block-based themes, it is tough for the development team to identify such issues.</p>\n\n\n\n<p>Currently, the only way to have same-height images in the Photo Blocks theme&rsquo;s post grid is to manually crop and upload images with the same aspect ratio. Reigstad opened a ticket to <a href=\"httpss://github.com/WordPress/gutenberg/issues/27620\">set a consistent crop</a> for the Post Featured Image block. <em>I would also recommend an image-size option similar to how it is handled in the Image block.</em></p>\n\n\n\n<p>Traditionally, themes that output a grid of featured images would fall back to a default image or use the first image from the post content if one was not set. There is currently no way to do this with the Post Featured Image block &mdash; another missing key feature. Reigstad opened a new ticket that proposed <a href=\"httpss://github.com/WordPress/gutenberg/issues/27617\">taking the idea further</a>.</p>\n\n\n\n<p>&ldquo;In the past, the featured image was a single image, added and managed separately from the rest of the post content,&rdquo; he wrote. &ldquo;For block-based sites however, that restriction is largely unnecessary. Rather than just an image, we should consider making it possible to set a video or audio embed as the &lsquo;Featured&rsquo; block. Also, since posts are made up of structured data, it&rsquo;s theoretically possible to signify any block from within post content as a &lsquo;Featured&rsquo; block.&rdquo;</p>\n\n\n\n<p>The idea of featured media is not new. Many themes have had featured audio and video in the past. However, the concept of marking any type of block as featured is worth exploring. Even if not every block lends itself well to this, surely some do beyond images.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Dec 2020 00:35: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:57:\"WPTavern: Shutterstock Launches Official WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=108844\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"httpss://wptavern.com/shutterstock-launches-official-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=shutterstock-launches-official-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2130:\"<p>Shutterstock has released an <a href=\"httpss://wordpress.org/plugins/shutterstock\">official plugin for WordPress</a>. The 17-year old company is as old as WordPress itself but this is the first time it has provided convenient access to its library inside the admin.  </p>\n\n\n\n<p>Seven years ago, Shutterstock released a <a href=\"httpss://wordpress.org/plugins/shutterstock-affiliate-plugin/\">plugin for affiliates</a> using a third-party development company, but it failed to gain much traction and is no longer updated. The new block-based plugin applies more broadly to WordPress site owners looking for commercial stock photography. It provides a block that allows users to search Shutterstock&rsquo;s library of 340 million images and get suggestions based on the text content. Users can place preview images on pages and posts, license with one click, download, and publish images and editorial content.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Shutterstock&rsquo;s plugin respects WordPress&rsquo; user roles and permissions system, so organizations can restrict image licensing to editors and administrators while still allowing authors to insert image previews. The plugin also has access to the user&rsquo;s license history so they can download any content that has been previously licensed on Shutterstock.</p>\n\n\n\n<p>A couple weeks after launching, the plugin is active on fewer than 10 WordPress sites. It&rsquo;s not clear if that is due to its customers not knowing about it or the endless variety of free images that WordPress users have access to through other services. Since the plugin only offers access to a limited library by default, it is primarily aimed at Shutterstock customers who have an existing subscription to connect for the full collection.  </p>\n\n\n\n<p>Along with the official plugin release, Shutterstock also announced a new partnership with WordPress.com VIP. It is now one of the service&rsquo;s &ldquo;<a href=\"httpss://wpvip.com/partner/shutterstock/\">Featured Technology Partners</a>,&rdquo; streamlining the publishing workflow for Automattic&rsquo;s enterprise customers. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Dec 2020 23:32:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://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:86:\"WPTavern: What Is Full Site Editing and What Does It Mean for the Future of WordPress?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109217\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:215:\"httpss://wptavern.com/what-is-full-site-editing-and-what-does-it-mean-for-the-future-of-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=what-is-full-site-editing-and-what-does-it-mean-for-the-future-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10892:\"<img />Block-based Twenty Twenty-One theme in the site editor.\n\n\n\n<p class=\"has-drop-cap\">As I said last week, <em>2021 will be the year of the site editor</em>.  Matt Mullenweg&rsquo;s <a href=\"httpss://wptavern.com/state-of-the-word-2020-wordpress-moves-toward-full-site-editing\">State of the Word</a> confirms it.  WordPress 5.7&rsquo;s <a href=\"httpss://wptavern.com/wordpress-5-7-development-kicks-off-with-focus-on-full-site-editing\">release planning</a> is focused on it.  It has been a long journey getting to this point, and it will be a much longer adventure afterward. The ultimate promise of the work that <a href=\"httpss://wptavern.com/wordpress-core-editor-team-publishes-ui-prototype-for-gutenberg-an-experimental-block-based-editor\">began nearly four years ago</a> is nigh.</p>\n\n\n\n<p>The Gutenberg project was never <em>just</em> about editing content. WordPress was aging software by late 2016. It needed to cater to modern audiences who may be less tech-savvy than the platform&rsquo;s existing user base. It needed to capture a younger generation of developers who were looking at the greener grass of JavaScript-heavy software. It needed to offer an experience on par with modern web applications. WordPress had a lot of boxes it needed to check or face irrelevance.</p>\n\n\n\n<p>The one thing that has truly kept the platform afloat is its large and diverse ecosystem of third-party developers.</p>\n\n\n\n<p><em>One of the most popular types of plugins?</em> Page builders. Those such as Elementor, which launched in early 2016, were filling in the experience gaps that WordPress was missing. While it was a testament to the platform&rsquo;s extendibility for such third-party projects to arise, it was also a failure that the core platform could not offer a better experience to both users and developers out of the box. Far too many theme authors were forced into supporting third-party builders to remain relevant. They were focusing more and more on compatibility with plugins than simply designing.</p>\n\n\n\n<p>The shortcomings of the widgets, shortcodes, meta boxes, and settings systems meant that developers had to either rely on non-core frameworks or reinvent the wheel. Every new API brought with it a new method for adding basic form fields. At best, it was inelegant, a platter of spaghetti that had been thrown at the wall, some of it managing to stick.</p>\n\n\n\n<p>WordPress was beginning to show its wrinkles. It needed to revolutionize itself. It needed to feel fresh again. For better or worse, the developers behind the Gutenberg project have been putting in the work to do just that.</p>\n\n\n\n<p>It is slow work. But, it is promising work.</p>\n\n\n\n<p>While the term &ldquo;Gutenberg&rdquo; is often used interchangeably with &ldquo;block editor,&rdquo; the two are not one and the same. Gutenberg is a project. A plugin. An idea. A new way of thinking about publishing on the web. As the opening lines of the description of the plugin read:</p>\n\n\n\n<blockquote><p>&ldquo;Gutenberg&rdquo; is a codename for a whole new paradigm in WordPress site building and publishing, that aims to revolutionize the entire publishing experience as much as Gutenberg did the printed word.</p></blockquote>\n\n\n\n<p>The project has four phases:</p>\n\n\n\n<ol><li>Easier Editing</li><li>Customization</li><li>Collaboration</li><li>Multilingual</li></ol>\n\n\n\n<p>WordPress users who have not been testing the Gutenberg plugin have only experienced Phase 1 of the project. The launch of the block editor in <a href=\"httpss://wptavern.com/wordpress-5-0-bebo-released-lays-a-foundation-for-the-platforms-future\">WordPress 5.0</a> and its continued work set the stage for the phases to follow. The underlying block system is what will fuel the next decade or longer of WordPress.</p>\n\n\n\n<p>Today, we are firmly in the midst of Phase 2. And, this is where things will get interesting.</p>\n\n\n\n<h2>Full Site Editing</h2>\n\n\n\n<img />Selecting a template in the site editor, using the Block-Based Bosco theme.\n\n\n\n<p class=\"has-drop-cap\">Phase 2 of Gutenberg, which began in late 2018, promised to bring blocks outside of the post content. In an introduction to this next step, Mel Choyce-Dwan <a href=\"httpss://make.wordpress.org/core/2018/12/08/gutenberg-phase-2/\">outlined the three main focuses:</a></p>\n\n\n\n<ul><li>Be outside of <code>post_content</code>.</li><li>Focus on customization.</li><li>Upgrading themes, widgets, and menus.</li></ul>\n\n\n\n<p>Since then, those core concepts have remained the same. However, the full picture, the shape of what those concepts would look like, has changed in the last two years. If there is one thing anyone on the development team has learned, it is probably that it is hard to launch such drastic changes.</p>\n\n\n\n<p>Full Site Editing is a mix of concepts. It is one part transition from tradition and one part full overhaul of how users and developers design the front end of WordPress sites.</p>\n\n\n\n<p>Nav menus and widgets, which are a part of the old paradigm, have been set to relaunch under the block system for the past two major WordPress releases. They were not ready. Users should expect to see them in WordPress 5.7. However, these feature upgrades are merely stepping stones to true the true Full Site Editing feature. They offer a way for end-users who are still using classic WordPress themes to get a taste of blocks outside of the post-editing screen.</p>\n\n\n\n<p>For the users who take the next step, widgets and nav menus &mdash; at least the traditional admin screens &mdash; will disappear. The customizer, which was once touted as the future of theme development, is also getting the ax. Site customization via a system where everything is a block will reign supreme.</p>\n\n\n\n<p>Once the switch flips, the world will be looking at a whole new WordPress.</p>\n\n\n\n<p>WordPress 5.7 and beyond will be about the site editor and block-based themes. The site editor is the visual representation of block templates that theme developers offer to users. Templates are infinitely customizable by the user from the WordPress admin. While themers will create custom configurations and set defaults, the power to decide what the front end of the site will look like will ultimately reside in the user&rsquo;s hands.</p>\n\n\n\n<p>Since the launch of Phase 1, the block editor has been a love/hate affair. Expect the site editor to be no less controversial.</p>\n\n\n\n<p>Underneath it all, a theme&rsquo;s code and the site editor will be talking in the same language. This essentially means that users could transition to theme authors if they have a knack for design or simply want to give it a go.  They  should be able to do this without leaving the comfort of the trusty site editor, which already allows exporting templates.</p>\n\n\n\n<p>Because the post editor and the site editor both work on the same, underlying block-based foundation, there is no reason for users to not be able to seamlessly switch between the two. There is <a href=\"httpss://github.com/WordPress/gutenberg/pull/26355\">currently a ticket</a> for adding such a toggle on the post-editing screen. It will allow users to switch to a template-editing mode while never leaving the post editor.</p>\n\n\n\n<img />Template-editing mode likely to land in Gutenberg 9.6.\n\n\n\n<p>This is not a newly-introduced concept. Josepha Haden, who led the WordPress 5.6 release, <a href=\"httpss://wptavern.com/wordpress-5-6-release-team-pulls-the-plug-on-block-based-widgets\">touched on this earlier this year</a>. &ldquo;I think one of the problems that we&rsquo;re trying to solve with Gutenberg has always been a more consistent experience for editing elements across the WordPress interface,&rdquo; she said. &ldquo;No user should have to learn five different workflows to make sure their page looks the way they imagined it when it&rsquo;s published.&rdquo;</p>\n\n\n\n<p>One of the larger goals is reducing the number of workflows into a single interface. We are likely years away from seeing the whole of WordPress site management reduced that far. However, the site editor is the next step toward that potential user experience.</p>\n\n\n\n<h2>What Does All This Mean for the Future?</h2>\n\n\n\n<p class=\"has-drop-cap\">While the last few years may have felt like a whirlwind of changes to our beloved platform, <em>you ain&rsquo;t seen nothing yet</em>. We were just getting our bearings in Phase 1. The development team was building the foundation while also launching the user-facing block editor. With that foundation in place, the team can focus more on features. This will especially be true as the <a href=\"httpss://wptavern.com/g2-components-a-from-scratch-reimagining-of-wordpress-components\">G2 Components project </a>overhauls and standardizes how core and third-party developers build upon the block system.</p>\n\n\n\n<p>The big Phase 2 changes this year means that theme authors will need to get up to speed. Traditional WordPress themes will still be necessary for a while. However, any theme author who is not already tinkering with block-based themes is already months behind. This is the time to be exploring and helping to shape the system. It is time to be filing bug reports and feature requests.</p>\n\n\n\n<p>If possible, theme authors should be attending the twice-monthly <a href=\"httpss://make.wordpress.org/themes/handbook/about/#meetings\">block-based themes meetings</a>. If time does not allow for attendance, you should at least be reading and participating on the <a href=\"httpss://make.wordpress.org/themes/\">Make Themes blog</a>.</p>\n\n\n\n<p>It is also important to check out projects like the <a href=\"httpss://wptavern.com/q-first-fse-wordpress-theme-now-live\">Q theme</a> or follow the <a href=\"httpss://github.com/WordPress/theme-experiments\">Theme Experiments</a> repository.</p>\n\n\n\n<img /><a href=\"httpss://wptavern.com/carrd-like-theme-experiment-provides-a-glimpse-into-the-future-of-theming\">Carrd-like theme experiment</a> from the site editor.\n\n\n\n<p>For end-users, this entire project is about you. Your feedback is crucial. If you are not already testing your site with the Gutenberg plugin, you should be. It is sometimes weeks or months ahead of what you are getting with WordPress alone.  Try out an FSE theme like <a href=\"httpss://wptavern.com/block-based-bosco-second-full-site-editing-theme-lands-in-the-wordpress-directory\">Block-Based Bosco</a>.  Consider joining the <a href=\"httpss://wptavern.com/help-steer-the-future-of-wordpress-via-the-fse-outreach-program\">FSE Outreach Program</a>. You can test and provide feedback directly on upcoming features.</p>\n\n\n\n<p>FSE brings with it the promise of major changes in 2021. Many of these changes will uproot old methods of managing your WordPress websites. Those methods will be replaced with one of the largest overhauls to the platform in its history. It is time to get prepared.</p>\n\n\n\n<p>It is going to be an interesting new year.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Dec 2020 00:56:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:77:\"WPTavern: WordPress 5.7 Development Kicks Off with Focus on Full Site Editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109212\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:199:\"httpss://wptavern.com/wordpress-5-7-development-kicks-off-with-focus-on-full-site-editing?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-7-development-kicks-off-with-focus-on-full-site-editing\";s: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:3662:\"<p>If the 2020 <a href=\"httpss://wptavern.com/state-of-the-word-2020-wordpress-moves-toward-full-site-editing\">State of the Word</a> address was any indication, WordPress is moving full steam ahead to land full site editing in 2021. The 5.7 release cycle <a href=\"httpss://make.wordpress.org/core/2020/12/21/wordpress-5-7-planning-roundup/\">kicked off</a> this week with the proposed scope centered around full site editing via&nbsp;Gutenberg. Matt Mullenweg will be leading the release and the rest of the team leadership is still being rounded up. Bug scrubs for<em>&nbsp;</em><a rel=\"noreferrer noopener\" href=\"httpss://core.trac.wordpress.org/tickets/early\" target=\"_blank\">early tickets</a> that require more time or early testing are already underway. </p>\n\n\n\n<p>WordPress 5.7 contributors anticipate working on the following features in the next release:</p>\n\n\n\n<ul><li>Update WordPress&nbsp;Core&nbsp;to include current releases of the Gutenberg&nbsp;plugin</li><li>Gutenberg: ship additional blocks, refine the&nbsp;UI, add tools for themes and design, and continue working on the&nbsp;widget&nbsp;screen</li><li>Continue work on&nbsp;<a href=\"httpss://make.wordpress.org/core/2020/11/10/wp5-6-auto-update-implementation-change/\">auto-updates</a>&nbsp;and<a href=\"httpss://make.wordpress.org/core/2020/06/29/updating-jquery-version-shipped-with-wordpress/\">&nbsp;jQuery</a></li></ul>\n\n\n\n<p>&ldquo;We might add more items in the upcoming weeks, and we will reconfirm the above-proposed list after the end-of-Gregorian year holidays,&rdquo; Francesca Marano said in a planning roundup post. She said core development is not &ldquo;closing up shop&rdquo; for the holidays, and volunteers plan to run&nbsp;<a href=\"httpss://make.wordpress.org/core/2020/12/11/call-for-volunteers-early-bug-scrubs-for-wordpress-5-7/\">bug scrubs</a>&nbsp;and&nbsp;<a href=\"httpss://make.wordpress.org/core/2020/12/11/dev-chat-schedule-for-the-end-of-the-year/\">dev chats</a>. Those who cannot attend a meeting but want to advocate for a ticket can always comment on the dev chat agenda post to have it included in the discussion.</p>\n\n\n\n<p>Matias Ventura created a GitHub issue in August for contributors to track the progress of <a href=\"httpss://github.com/WordPress/gutenberg/issues/24551\">full-site editing milestones</a>. Some of the infrastructure and UI is already in place, as well as the ability to navigate through pages, templates, parts, and know which is area is active. Styling, theme blocks, the Query block, and the Navigation block are still in progress.</p>\n\n\n\n<p>There are a lot of moving pieces to make full-site editing features cohesive and ready for prime time. In Ventura&rsquo;s most recent <a href=\"httpss://make.wordpress.org/core/2020/12/10/status-check-site-editing-and-customization/\">status update</a> on the project he reported that all of the features outlined are &ldquo;in advanced stages&rdquo; and can be used in the Gutenberg plugin already.</p>\n\n\n\n<p>&ldquo;The main hurdle to include the work in major WordPress releases are the various dependencies between each project when it comes to ensuring a great user experience,&rdquo; Ventura said. &ldquo;The immediate focus is then on completing the milestones, stabilizing the work, and doing as much testing with different kinds of users as possible.&rdquo; </p>\n\n\n\n<p>WordPress contributors are planning <a href=\"httpss://wordpress.org/about/roadmap/\">four releases in 2021</a>, allowing for multiple opportunities to introduce new features.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Beta 1 for 5.7 is planned for early February and the general release is expected March 9, 2021. </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, 21 Dec 2020 23:18: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:\"https://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:48:\"BuddyPress: BuddyPress 7.1.0 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"httpss://buddypress.org/?p=316287\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://buddypress.org/2020/12/buddypress-7-1-0-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1204:\"<p>Immediately available is&nbsp;<a href=\"httpss://downloads.wordpress.org/plugin/buddypress.7.1.0.zip\">BuddyPress 7.1.0</a>. This maintenance release fixes two bugs related to issues introduced in the 7.0.0 release.</p>\n\n\n\n<ul><li>It makes sure the BP Blogs tools to repare Site icons / Site profile photos synchronization is only available to WordPress multisite configs, </li><li>It fixes the unavailability of the Groups Admin screen for site networks using the BuddyPress multiblog mode.</li></ul>\n\n\n\n<p>For details on the changes, please read the&nbsp;<a href=\"httpss://codex.buddypress.org/releases/version-7-1-0/\">7.1.0 release notes</a>.</p>\n\n\n\n<p>Update to BuddyPress 7.1.0 today in your WordPress Dashboard, or by&nbsp;<a href=\"httpss://wordpress.org/plugins/buddypress/\">downloading from the WordPress.org plugin repository</a>.</p>\n\n\n\n<h2>Many thanks to 7.1.0 contributors&nbsp;<span class=\"dashicons dashicons-heart\"></span></h2>\n\n\n\n<p><a href=\"httpss://profiles.wordpress.org/hareesh-pillai/\"></a><a href=\"httpss://profiles.wordpress.org/shawfactor\">shawfactor</a>, <a href=\"httpss://profiles.wordpress.org/slaffik\">slaFFik</a> &amp; <a href=\"httpss://profiles.wordpress.org/imath/\">imath</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Dec 2020 21:08:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s: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:91:\"WPTavern: Ask the Bartender: Integrate With Third-Party App or Use Native WordPress Plugin?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109173\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:223:\"httpss://wptavern.com/ask-the-bartender-integrate-with-third-party-app-or-use-native-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=ask-the-bartender-integrate-with-third-party-app-or-use-native-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5054:\"<blockquote class=\"wp-block-quote\"><p>My question to you is how you see the future (or even the present) of integrating software with WordPress and when you should make the distinction of going the integration vs. native approach.</p><p>In other words, with the vast ecosystem of WordPress plugins out there, how can a website owner discern which responsibilities WordPress the software should handle and whether that functionality is actually better to plug another software or service into instead?</p><p>Alex</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">There was a time when I would have said build <em>all the things</em> in WordPress. I was younger then, a bit more naive. I was optimistic about using WordPress as a framework to build anything. There is a part of me that still leans in this direction. Mostly, this is because I want to see what developers in the WordPress ecosystem can achieve. I applaud anyone who pushes the platform beyond its current limits.</p>\n\n\n\n<p>Few people would have guessed that WordPress would become an eCommerce powerhouse. However, WooCommerce has proven it can be done. I still remember when nearly every WordPress theme and plugin author was selling their commercial products via E-junkie. Now, Easy Digital Downloads is the go-to solution, and AffiliateWP handles the affiliate side of things.</p>\n\n\n\n<p>Some of the best products from the WordPress plugin market arose from issues with third-party app integration. Their creators bucked the system and brought useful tools directly into WordPress. Many of these are now multi-million dollar products and companies that employ dozens, hundreds, or even thousands of people. They have their own ecosystems that allow even more third-party developers to make a living. And this is all done on top of WordPress.</p>\n\n\n\n<p>I will always root for the home team, for the developers in our community to build native solutions.</p>\n\n\n\n<p>However, the reality is that WordPress is not the best solution for everything. Depending on the application, the development team has likely put years of work into it, creating a specialized system that caters to that application&rsquo;s users. The experience can often be far better than something available for WordPress.</p>\n\n\n\n<p>I cannot imagine using WordPress as the backbone of a social video site like YouTube, even if it was a small site. The hosting costs would be astronomical. It is far easier and cheaper to rely on integration with YouTube rather than trying to rebuild it.</p>\n\n\n\n<p>In Alex&rsquo;s original correspondence, he also brought up a specific case about integrating with a third-party forum. This is a far more realistic quandary than an average user trying to build the next YouTube. It is also a question that does not have a single answer.</p>\n\n\n\n<p>For users who are creating forums on their site for the first time, my advice would be to go with bbPress. It is a plugin that brings native forums to WordPress. While it is not nearly as powerful as some third-party forum applications, its best feature is that it works directly with the built-in user, role, and capability systems in WordPress. These are some of the more complex APIs in WordPress, and trying to sync user accounts between applications can often be a headache. It is also a complex technical topic that goes beyond the scope of this post. If starting from scratch, I would recommend bbPress or another WordPress forum plugin.</p>\n\n\n\n<p>On the other hand, if a user already has an existing forum with a large amount of content, I would lean toward integrating it and WordPress, particularly if the site owner plans to keep user registrations strictly within the forum software. Much of that will come down to what the end-user feels comfortable with. If they have a strong history with their existing application, making a change may simply not be the best route. There are other items to consider, such as whether sharing a single theme across both platforms is necessary. bbPress can also import content from many existing forum applications.</p>\n\n\n\n<p>The answer to the question is that it depends. Each use case is different.</p>\n\n\n\n<p><em>Should a popular seller on Etsy move everything to WooCommerce?</em> Probably not. That user might want to install the <a href=\"httpss://wordpress.org/plugins/etsy-shop/\">Etsy Shop</a> integration plugin. Eventually, they might expand their brand enough to no longer rely on the Etsy platform. At that point, WooCommerce could be the answer.</p>\n\n\n\n<p>It comes down to time, cost, research, and testing. Even when a plugin brings a native solution to WordPress that is ideal for most people, it might not be the best answer for an individual. Specifics matter, and I am always happy to talk those over.</p>\n\n\n\n<p class=\"has-white-color has-blue-700-background-color has-text-color has-background text-white bg-blue-700\">This is the second post in the Ask the Bartender series.  Have a question of your own? <a href=\"httpss://wptavern.com/contact-me/ask-the-bartender\">Shoot it over</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:\"Fri, 18 Dec 2020 20:50: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:74:\"WPTavern: State of the Word 2020: WordPress Moves Toward Full Site Editing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"httpss://wptavern.com/state-of-the-word-2020-wordpress-moves-toward-full-site-editing?utm_source=rss&utm_medium=rss&utm_campaign=state-of-the-word-2020-wordpress-moves-toward-full-site-editing\";s: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:6819:\"<p>WordPress enthusiasts around the world tuned into Matt Mullenweg&rsquo;s annual State of the Word address this week, delivered virtually for the first time. Mullenweg recognized the community&rsquo;s efforts in working together during a global pandemic, without the benefit of periodic in-person events that have traditionally re-energized collaboration on the project.</p>\n\n\n\n<p>During a most unusual year that has warped the passage of time and slowed it to the speed of molasses, WordPress&rsquo; release schedule kept a steady, reassuring pace in contrast. The first part of the State of the Word highlighted the three major releases shipped in 2020, which introduced improvements to the block editor, a new default theme, application passwords for the REST API, and new, game-changing features like block patterns, to name just a few. </p>\n\n\n\n<p>WordPress continues to grow its dominant market share and is currently sitting at 39.3% of the&nbsp;<a href=\"httpss://www.alexa.com/\">Alexa</a>&nbsp;top 10 million sites. Mullenweg attributed&nbsp;that growth to three major contributing factors: the lockdown, e-commerce, and economic uncertainty. The lockdowns put in place to mitigate the virus&rsquo; spread had the effect of giving people the space and time to connect online. It also drove an uptick in entrepreneurship and e-commerce. Mullenweg reported that WooCommerce facilitated more than $20 billion in sales. </p>\n\n\n\n<h3>Site Editor Beta Demo Shows Progress on Full Site Editing Project</h3>\n\n\n\n<p>Gutenberg design contributor Joen Asmussen joined by video to unveil a sneak peek of the progress on the Full Site Editing (FSE) project with a <a href=\"httpss://youtu.be/QI3qCoiuG3w?t=1293\">demo of the Site Editor beta</a>. The Site Editor allows users to edit a theme&rsquo;s template outside of the post&rsquo;s content. It introduces new blocks for things like the query loop, navigation, site title, tagline, and other aspects of editing templates.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The block list view shows all the different areas of the page, such as the header, footer, columns, and site title, so the user can jump to the section for quick access. Block patterns can also be used within template designs to speed up page layout or match a demo design. Given the current complexity of creating a template design from a blank canvas, block patterns have the potential to become even more indispensable when WordPress users finally get the reins for editing theme templates.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>&ldquo;This is the culmination of several ongoing projects to expand upon and improve the customization possibilities in WordPress,&rdquo; Asmussen said. The demo offers a quick overview of how the FSE project is coming together. The reality of &ldquo;everything becoming a block&rdquo; is finally materializing. Gutenberg will soon be capable of providing a consistent editing experience across all aspects of site customization. </p>\n\n\n\n<p>&ldquo;By creating this common framework that every theme and plugin can build on, we&rsquo;re reducing the balkanization within WordPress from people who are solving these problems lots of different ways, and providing what I believe is the basis for the next decade of WordPress&rsquo; growth,&rdquo; Mullenweg said.</p>\n\n\n\n<h3>WordPress&rsquo; Global Community Reiterates the Demand for Multilingual Capabilities</h3>\n\n\n\n<p>The number of questions during the Q&amp;A related to multilingual capabilities underscores the fact that WordPress is undeniably a global community. More than 50% of WordPress sites are not using English. Better multilingual support could be key to the next era of WordPress&rsquo; growth. Nevertheless, multilingual features are at the tail end of the four-phase roadmap for the project&rsquo;s immediate future. </p>\n\n\n\n<p>Mullenweg said WordPress is about &ldquo;two years into a 10-year project,&rdquo; with good chunks of phase 1 and phase 2 done. Phase 1 includes editing inside the post/page content, creating the fundamental building blocks and also bringing them to the mobile apps. Phase 2 is centered around editing outside the content, using blocks to create the site&rsquo;s templates.</p>\n\n\n\n<p>Phase 3 will introduce new collaboration features and workflow for real-time co-editing. Phase 4, which Mullenweg said is &ldquo;just in the imagination stage right now,&rdquo; covers multilingual features. He said he expects this phase to likely &ldquo;be taken underway pretty vigorously in 2022.&rdquo;</p>\n\n\n\n<p>Mat&iacute;as Ventura answered a question about a phase 4 roadmap, confirming that there is no specific plan for its multilingual implementation right now. He said there have been some initial conversations regarding the implications of localization, specifically around patterns and block themes, and how those can be built. Nothing substantial has emerged yet but the team will be creating a more detailed overview of what is needed. Fallback languages is one feature that several community members brought up in the Q&amp;A time.</p>\n\n\n\n<p>When asked whether some existing multilingual solutions could be reused for core, Mullenweg was hesitant to prescribe a specific approach at this time. He said he is anxious to get better multilingual support in Gutenberg and offered what I believe is the most candid explanation thus far for why multilingual capabilities fall further down the the list of priorities:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Whether we do it as part of core or as part of an official plugin is to be decided. Part of the reason we made it phase 4 is that we can only do so many things well at a time. It is supremely important that we execute super well on these first phases of Gutenberg blocks. If we don&rsquo;t get phase 1 and phase 2 to be the best experiences in the world for editing bar none, of any open source or proprietary competitors or builders, phase 3 and 4 just won&rsquo;t matter because&nbsp;WordPress won&rsquo;t be relevant a decade from now. I do believe that is the most important problem we&rsquo;re facing. I don&rsquo;t want to dilute the core contributors&rsquo; focus away from the initial phases of Gutenberg because that&rsquo;s how important I think they are.</p></blockquote>\n\n\n\n<p>Mullenweg said there is nothing stopping the community from investing more in multilingual plugins and exploring different approaches to see what will get core most of the way there. The next official step would be figuring out a framework that will work well with plugins and themes.</p>\n\n\n\n<p>Depending on your interest and involvement in the community, there is a lot more to explore in the Q&amp;A. Check out the whole presentation in the video below.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</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, 18 Dec 2020 09:21: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:\"https://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:100:\"WPTavern: Contact Form 7 Version 5.3.2 Patches Critical Vulnerability, Immediate  Update Recommended\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109081\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:241:\"httpss://wptavern.com/contact-form-7-version-5-3-2-patches-critical-vulnerability-immediate-update-recommended?utm_source=rss&utm_medium=rss&utm_campaign=contact-form-7-version-5-3-2-patches-critical-vulnerability-immediate-update-recommended\";s: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:1899:\"<p><a href=\"httpss://wordpress.org/plugins/contact-form-7/\">Contact Form 7</a> has <a href=\"httpss://contactform7.com/2020/12/17/contact-form-7-532/\">patched</a> a critical file upload vulnerability in version 5.3.2, released today by plugin author Takayuki Miyoshi. The plugin is installed on more than five million WordPress sites. </p>\n\n\n\n<p>&ldquo;An unrestricted file upload vulnerability has been found in Contact Form 7 5.3.1 and older versions,&rdquo; Miyoshi said. &ldquo;Utilizing this vulnerability, a form submitter can bypass Contact Form 7&rsquo;s filename sanitization, and upload a file which can be executed as a script file on the host server.&rdquo;</p>\n\n\n\n<p>The vulnerability was discovered by&nbsp;<a href=\"httpss://www.jinsonvarghese.com/\">Jinson Varghese Behanan</a>&nbsp;from&nbsp;<a href=\"httpss://www.getastra.com/\">Astra Security</a> on December 16, 2020, and Miyoshi released a fix less than 24 hours later. Behanan highlighted a few ways this vulnerability might be exploited:</p>\n\n\n\n<ol><li>Possible to upload a web shell and inject malicious scripts</li><li>Complete takeover of the website and server if there is no containerization between websites on the same server</li><li>Defacing the website</li></ol>\n\n\n\n<p>Astra Security plans to publish more details on the vulnerability in two weeks after the plugin&rsquo;s user base has had more time to update to the patched version.</p>\n\n\n\n<p>Version 5.3.2 removes control, separator, and other types of special characters from the filename to fix the unrestricted file upload vulnerability. At the time of publishing, more than a million Contact Form 7 updates have been downloaded today. Approximately 20% of the plugin&rsquo;s user base is protected from the vulnerability. Now that it has been patched and published, Contact Form 7 users who do not update will be more at risk of having the vulnerability exploited.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Dec 2020 22:32:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://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: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:73:\"WPTavern: Help Steer the Future of WordPress via the FSE Outreach Program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=109083\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"httpss://wptavern.com/help-steer-the-future-of-wordpress-via-the-fse-outreach-program?utm_source=rss&utm_medium=rss&utm_campaign=help-steer-the-future-of-wordpress-via-the-fse-outreach-program\";s: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:4280:\"<p>All hands on deck. 2021 will be the year of the Site Editor.</p>\n\n\n\n<p>Anne McCarthy announced the official <a href=\"httpss://make.wordpress.org/core/2020/12/11/the-fse-outreach-program-is-officially-starting/\">start of the Full-Site Editing (FSE) Outreach Program</a> last Friday on the Make Core blog. The program is primarily geared toward end-users. With few channels for average users to communicate with the development team, this offers an opportunity for them to provide direct feedback.</p>\n\n\n\n<p>This announcement comes on the heels of Matias Ventura&rsquo;s full <a href=\"httpss://make.wordpress.org/core/2020/12/10/status-check-site-editing-and-customization/\">overview of the FSE project</a>. In the post, he laid out where specific FSE features currently stand and what needs to happen to bring the project to fruition.</p>\n\n\n\n<p>The FSE Outreach Program was <a href=\"httpss://make.wordpress.org/core/2020/05/01/an-experimental-outreach-project-for-full-site-editing/\">expected to begin earlier</a> in the year. Josepha Haden announced it on May 1. However, there was no movement for most of 2020. An early version of FSE was also expected to land in WordPress 5.6, but that was too lofty of a goal for a feature that will essentially change everything about front-end development on the platform.</p>\n\n\n\n<p>The official launch of the program should coincide with the release of Gutenberg 9.6, which is expected to ship within the next week. The program will focus on specific features and flows related to full-site editing. According to the <a href=\"httpss://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/faq-for-fse-outreach-experiment/\">program FAQs</a>, participants could be asked to volunteer for up to three hours per week. However, it will also be flexible enough for anyone to participate, regardless of their available hours.</p>\n\n\n\n<p>The program is also starting small, limiting feedback to more common user experiences. It is still experimental at this stage. Easing participants into such a testing program seems like a smart approach.</p>\n\n\n\n<p>Right now, the Site Editor can sometimes be a painful user experience. While it is already possible to put together some interesting layouts, at least as a labor of love, there are many missing pieces. Workflows are odd. Expected features for a design tool are nowhere to be found.  Someone might look at it today and think there is no way it could be a viable core feature next year, but the development team continues to polish the experience with each Gutenberg update. The Site Editor is not production-ready yet, but it is time to get serious about testing and feedback.</p>\n\n\n\n<p>Those interested in volunteering for the program should have a WordPress Slack account and join the <a href=\"httpss://wordpress.slack.com/archives/C015GUFFC00\">#fse-outreach-experiment</a> channel. McCarthy said she will also post an update on the <a href=\"httpss://make.wordpress.org/test/\">Make Test</a> blog with further details for participants once Gutenberg 9.6 is released.</p>\n\n\n\n<h2>The First Focus Area</h2>\n\n\n\n<p class=\"has-drop-cap\">The first feature up for discussion is a new <a href=\"httpss://github.com/WordPress/gutenberg/pull/26355\">template editing mode inside the post editor</a>. It adds a new &ldquo;Template&rdquo; option in the post-editing sidebar that will allow users to jump between editing their post and editing the template that outputs that post. It is a marriage of the post and site editors. Underneath, both are run by the block system, so there is little difference in the experiences.</p>\n\n\n\n<img />Potential template editing option in the post editor.\n\n\n\n<p>Long-term, it makes sense that users should be able to switch seamlessly between both editors. I worry that we may be jumping the gun a bit on this feature since the Site Editor is still at a rough beta stage. However, it does not hurt to get some early feedback on what the workflow should look like.</p>\n\n\n\n<p>&ldquo;Please keep in mind that this is the program&rsquo;s first iteration,&rdquo; wrote McCarthy in the post. &ldquo;We&rsquo;re starting with this first item and expecting the outcome to be a comprehensive list of issues that the Gutenberg team can work on as capacity allows.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Dec 2020 22:09:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:81:\"BuddyPress: How BuddyX made its way to the official WordPress.org theme directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://buddypress.org/?p=316229\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"httpss://buddypress.org/2020/12/how-buddyx-made-its-way-to-the-official-wordpress-org-theme-directory/\";s: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:14561:\"<p>We use to feature BuddyPress usage case studies. These are great ways to share with you how BuddyPress can help you achieve your community site projects reading how other buddies did it. The case study you are about to read now is a bit different. It’s about the steps the lovely <a href=\"httpss://wordpress.org/themes/buddyx/\">BuddyX</a> BuddyPress theme had to take to be widely and freely available from the official WordPress.org theme directory. I’m very happy <a href=\"httpss://profiles.wordpress.org/vapvarun/\">Varun Dubey</a> took the time to write this guest post to share his experience with all of us. My secret hope is that it will inspire as many BuddyPress Theme authors as possible to do the same <img src=\"httpss://s.w.org/images/core/emoji/13.0.1/72x72/1f607.png\" alt=\"?\" class=\"wp-smiley\" />.</p>\n\n\n\n<p>Varun Dubey is a full-stack WordPress &amp; BuddyPress developer. He’s the co-founder of <a rel=\"noreferrer noopener\" href=\"httpss://wbcomdesigns.com/about-us/\" target=\"_blank\">Wbcom Designs</a>, a WordPress themes and plugins development agency in India. He’s also a regular BuddyPress contributor, we often talk with him about the BuddyPress project during our development meetings (every other Wednesday at 19:00 UTC on Slack), he contributes to our development tasks (testing, reporting issues, patching, documenting, etc..) and he still manage to find time to help you regularly <a href=\"httpss://buddypress.org/members/vapvarun/forums/replies/\">replying to your support topics</a> (661 replies so far!). So, once again, many thanks to him for <a href=\"httpss://codex.buddypress.org/participate-and-contribute/\">getting involved with BuddyPress</a> <img src=\"httpss://s.w.org/images/core/emoji/13.0.1/72x72/1f60d.png\" alt=\"?\" class=\"wp-smiley\" />.</p>\n\n\n\n<p><em>So let’s learn more from his experience, here’s what he wanted to share with you about it!</em></p>\n\n\n\n<span id=\"more-316229\"></span>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I submitted my first theme at WordPress.org, and now it’s live.</p><cite><a class=\"bp-suggestions-mention\" href=\"httpss://buddypress.org/members/vapvarun/\" rel=\"nofollow\">@vapvarun</a></cite></blockquote>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"httpss://wordpress.org/themes/buddyx/\">Buddyx</a></blockquote>\n</div>\n\n\n\n<p>We, at Wbcom Designs, are excited about our achievement to present a full-fledged community theme powered by BuddyPress and WordPress. It took almost a year to work on BuddyX and make it stable enough to submit at WordPress.org.&nbsp;</p>\n\n\n\n<p>The approval process was surprisingly short, approx 6-7 weeks to get it approved after initial submission. We usually had heard that it might take 6-9 months to get the theme live.</p>\n\n\n\n<p>Submitting the theme at WordPress.org will increase your reach to all sites which are using WordPress. The WordPress theme directory is used by millions of WordPress users all over the world. The directory themes are available for download from WordPress.org, and WordPress users can also install them directly from their administration screens.</p>\n\n\n\n<p>By hosting your theme on WordPress.org, you’ll get:</p>\n\n\n\n<ul><li>Stats on how many times your theme has been downloaded</li><li>User feedback in the forums</li><li>Ratings, to see what users think of your theme.</li></ul>\n\n\n\n<p>We have learned a lot about code reviews, code quality, and theme lifecycle during the approval process. I will give a quick glimpse of how it was for BuddyX; it might help others get the theme approved quickly.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>How to start with a theme skeleton?</h2>\n\n\n\n<p>Lots of developers begin the development of a theme from scratch. There are articles and tutorials available on how to start theme development from scratch, and the <a href=\"httpss://developer.wordpress.org/themes/\">WordPress Themes development handbook</a> also has a detailed step guide on this topic.&nbsp;</p>\n\n\n\n<p>After comparing <a href=\"httpss://underscores.me/\" target=\"_blank\" rel=\"noreferrer noopener\">_s</a>, <a href=\"httpss://roots.io/\" target=\"_blank\" rel=\"noreferrer noopener\">roots</a>, and other starter themes, we decided to start with <a href=\"httpss://wprig.io/\" target=\"_blank\" rel=\"noreferrer noopener\">the WP rig</a>. WP rig helped get a basic skeleton of the BuddyX using the latest tools, best practices, and coding standards. It helped integrate lazy-loading, async/defer JavaScript enqueueing, component-level pre-loaded CSS, optimized Web Font loading, modular extensions, and a full-featured list of optional template hierarchy files at day one.&nbsp;</p>\n\n\n\n<p>Along with WordPress Code Quality Testing, <a href=\"httpss://make.wordpress.org/core/handbook/best-practices/coding-standards/\">WordPress Coding Standards</a> integration was also part of it. After getting initial help for the WP rig, we only have to focus on design improvement for BuddyPress Community features.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Early prep of the Theme submission</h2>\n\n\n\n<p>After the design part gets ready, we have released our theme on our website and make it available for free download to get initial feedback as a soft launch. It received a good response from the community, and we have got some feature requests and feedback on initial versions. It helped us to gain the confidence to submit BuddyX at WordPress.org.</p>\n\n\n\n<p>You can follow these steps to check your theme against WordPress requirements before submitting it for review.&nbsp;</p>\n\n\n\n<p>1- Code Quality Check- To make sure your theme code is secure ( using proper escaping functions ), it meets <a href=\"httpss://github.com/WordPress/WordPress-Coding-Standards\">WordPress Coding Standards</a>.&nbsp;</p>\n\n\n\n<p>2- Theme Check by plugin- The WordPress Theme review team checks your theme using the <a href=\"httpss://wordpress.org/plugins/theme-check/\">Theme Check</a> plugin. It will be useful to double-check your theme against it first before uploading it.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"httpss://buddypress.org/wp-content/uploads/1/2020/12/buddyx-theme-check.jpg\"><img width=\"1999\" height=\"1738\" src=\"httpss://buddypress.org/wp-content/uploads/1/2020/12/buddyx-theme-check.jpg\" alt=\"Illustration of the screen generated by the Theme Check plugin\" class=\"wp-image-316230\" /></a></div>\n\n\n\n<p>3- Theme Requirement Checklist- WordPress Theme review team has published <a href=\"httpss://make.wordpress.org/themes/handbook/review/required/\">Theme Requirements</a>. You also have to make sure you have gone through all items one by one.</p>\n\n\n\n<p>Essential points you have to double-check with Theme requirements are</p>\n\n\n\n<ul><li>Debug log should be clean; it should not have any PHP or JavaScript errors.</li><li>All strings should be ready for translation.&nbsp;</li><li>Add unminified source files along with minified JavaScript and CSS files.&nbsp;</li><li>All functions and Classes should have a theme-specific unique prefix.</li><li>All js or CSS should enqueue properly inside theme functions instead of hard-coded in the header or footer.&nbsp;</li></ul>\n\n\n\n<p>5- Theme Unit Test XML &#8211; You will also have to check with <a href=\"httpss://github.com/WPTT/theme-unit-test\">Unit Testing XML</a> data. It will help get proper labels and layout testing on various templates like 404, comments on pages, comments on the post, post format testing, layout, and alignment testing.&nbsp;</p>\n\n\n\n<p>6- Screenshot- It should not contain any branded logo or visible human face.</p>\n\n\n\n<p>7- Keyboard Navigation- Keyboard-dependent navigators are also mandatory features now. You can find details at the <a href=\"httpss://make.wordpress.org/themes/handbook/review/accessibility/required/#keyboard-navigation\">Keyboard Navigation section of the theme development handbook</a>.</p>\n\n\n\n<p>Consider the following non-coding points before submission:</p>\n\n\n\n<ol><li>Your website terms and conditions page must indicate that your <strong>company has all products under GPL</strong>.</li><li>All images inside the theme must have GPL.</li><li>Make sure you have not disabled any default WordPress features.&nbsp;</li><li>The readme file must have all credit info for used images, libraries, and references.</li><li>Theme does not represent anything illegal, dishonest, or morally offensive behavior.</li></ol>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Upload at WordPress.org&nbsp;</h2>\n\n\n\n<p>You can upload the theme using <a href=\"httpss://wordpress.org/themes/upload/\">httpss://wordpress.org/themes/upload/</a>, any new revision, and the theme updates.&nbsp;</p>\n\n\n\n<p>After uploading the theme files, it will create a ticket, and you will have to wait for a couple of days before any developer requests to review your theme. All reviewers are volunteers. You can also get an idea of the current theme review <a href=\"httpss://make.wordpress.org/themes/handbook/about/members/\">team member </a>from the codex page.</p>\n\n\n\n<p>You can also check current themes waiting in the queue at <a href=\"httpss://themes.trac.wordpress.org/query?status=reopened&status=reviewing&col=id&col=summary&col=owner&col=priority&col=resolution&col=time&col=changetime&col=reporter&report=8&desc=1&order=changetime\">httpss://themes.trac.wordpress.org</a>. It will also be useful to join the <a href=\"httpss://wordpress.slack.com/messages/themereview/\">Slack theme review channel</a> to discuss review issues in the open channel.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"httpss://buddypress.org/wp-content/uploads/1/2020/12/buddyx-ticket.jpg\"><img width=\"1660\" height=\"1354\" src=\"httpss://buddypress.org/wp-content/uploads/1/2020/12/buddyx-ticket.jpg\" alt=\"Screen capture of the Themes Trac environment\" class=\"wp-image-316233\" /></a><a href=\"httpss://themes.trac.wordpress.org/ticket/89135\">View the full ticket</a></div>\n\n\n\n<p>Try to be proactive for any comments and points made related to your theme and submit fixes actively to keep your ticket reviewer.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2><strong>About BuddyX features</strong></h2>\n\n\n\n<div class=\"wp-block-image\"><a href=\"httpss://buddypress.org/wp-content/uploads/1/2020/12/buddyx-screenshot-v.png\"><img width=\"1024\" height=\"768\" src=\"httpss://buddypress.org/wp-content/uploads/1/2020/12/buddyx-screenshot-v-1024x768.png\" alt=\"\" class=\"wp-image-316234\" /></a></div>\n\n\n\n<p>BuddyX is a community membership theme with BuddyPress support. It is a lightweight, fully responsive, SEO optimized, RTL &amp; Translation ready theme. It is a multipurpose theme perfect for all niches, be it membership, social community, corporate, e-commerce, LMS, etc.</p>\n\n\n\n<p>The theme also provides support for WooCommerce, WC Vendor, LearnDash, LearnPress, and GamiPress plugins. It is highly customizable and works perfectly with page builders such as Elementor and Gutenberg. BuddyX is perfect for creating social learning, marketplace, and blogging websites using BuddyPress integrations.</p>\n\n\n\n<p>BuddyX has the latest best practices for progressive web content and optimization. We have tested it with the latest BuddyPress version and popular BuddyPress addons. BuddyX is developed, maintained, and supported by Wbcom Designs.</p>\n\n\n\n<p>We have worked on the following features</p>\n\n\n\n<ul><li>User menu for logged in members</li><li>Improved UI for Activity, members, groups directory pages</li><li>Improved UI for Member and Group single unique layout</li><li>Both sidebar options for BuddyPress pages</li><li>Improve sidebar widgets style</li><li>rtMedia supports to display of single and multiple photos in the activity.</li><li>Better widgets layout</li><li>Color scheme options</li><li>Extensible with plugins</li></ul>\n\n\n\n<p>Within the theme, we have overridden several template files to make the above changes.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3><strong>Activity Compotent &#8211;&nbsp;</strong></h3>\n\n\n\n<pre class=\"wp-block-verse\">buddypress/activity/entry.php\nbuddypress/activity/single/home.php</pre>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3><strong>Members Component &#8211;</strong></h3>\n\n\n\n<pre class=\"wp-block-verse\">buddypress/members/members-loop.php\nbuddypress/members/single/cover-image-header.php\nbuddypress/members/single/home.php\nbuddypress/members/single/friends/requests-loop.php\nbuddypress/members/single/groups/invites.php</pre>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3><strong>Groups Component &#8211;&nbsp;</strong></h3>\n\n\n\n<pre class=\"wp-block-verse\">buddypress/groups/groups-loop.php\nbuddypress/groups/single/cover-image-header.php\nbuddypress/groups/single/home.php\nbuddypress/groups/single/members-loop.php</pre>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3><strong>rtMedia plugin &#8211;</strong></h3>\n\n\n\n<pre class=\"wp-block-verse\">rtmedia/main.php&nbsp;</pre>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>We have picked the Nouveau template for BuddyX for various reasons as following.</p>\n\n\n\n<ul><li>Nouveau delivers modern markup with fresh JavaScript-powered templates.</li><li>Nouveau provides vertical and horizontal layout options for BuddyPress navigation.</li><li>Provide a grid layout and a classic flat list.</li><li>Minimal styling for better theme compatibility.</li><li>Consistent and flexible PHP template functions.</li><li>Customizer compatibility.</li><li>Better differentiation of content types.</li><li>A rethought Messages component.</li></ul>\n\n\n\n<p>Summarizing features for BuddyX, you can check a detailed overview at <a href=\"httpss://buddyxtheme.com/features/\" target=\"_blank\" rel=\"noreferrer noopener\">buddyxtheme.com</a>.</p>\n\n\n\n<ul><li>Multiple Header option</li><li>Polished member and group directory layout</li><li>Three variations for member and group header layout</li><li>Color Scheme and Typo options</li><li>RTL and translation ready</li><li>AMP ready</li><li>Gutenberg ready</li><li>WooCommerce ready with multivendor using WC vendors, Dokan support in the development queue.</li><li>bbPress Forums Support</li><li>Optimized Mobile Menu Panel</li><li>LMS support: Learndash and Learnpress support included; we will add dedicated support for other popular LMS plugins incoming updates.</li></ul>\n\n\n\n<p>We have prepared a couple of demos; you can <a href=\"httpss://buddyxtheme.com/demos/\" target=\"_blank\" rel=\"noreferrer noopener\">try the BuddyX demo</a> as a member login.BuddyX is available at <a href=\"httpss://wordpress.org/themes/buddyx/\">WordPress.org</a> for download to create your community; we will appreciate any feedback to improve BuddyX features.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Dec 2020 18:54: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s: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:47:\"WPTavern: Mapbox GL JS Is No Longer 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:30:\"httpss://wptavern.com/?p=108948\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:139:\"httpss://wptavern.com/mapbox-gl-js-is-no-longer-open-source?utm_source=rss&utm_medium=rss&utm_campaign=mapbox-gl-js-is-no-longer-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:9008:\"<p><a href=\"httpss://github.com/mapbox/mapbox-gl-js\">Mapbox GL JS</a>, formerly an open source JavaScript library for interactive, customizable vector maps, has adopted a proprietary license in its recent <a href=\"httpss://github.com/mapbox/mapbox-gl-js/blob/main/CHANGELOG.md#200\">version 2</a> update:</p>\n\n\n\n<ul><li>mapbox-gl-js is no longer under the 3-Clause BSD license. By upgrading to this release, you are agreeing to&nbsp;<a href=\"httpss://www.mapbox.com/legal/tos/\">Mapbox terms of service</a>.&nbsp;Refer to LICENSE.txt for the new licensing terms and details. For questions, contact our team at&nbsp;<a href=\"httpss://support.mapbox.com/\">httpss://support.mapbox.com</a>.</li><li>Beginning with v2.0.0, a billable map load occurs whenever a Map object is initialized. Before updating an existing implementation from v1.x.x to v2.x.x, please review the&nbsp;<a href=\"httpss://docs.mapbox.com/accounts/guides/pricing/#mapbox-gl-js-v100-and-higher\">pricing documentation</a>&nbsp;to estimate expected costs.</li></ul>\n\n\n\n<p>Versions 1.x remain under the&nbsp;3-Clause BSD license, but <a href=\"httpss://www.mapbox.com/\">Mapbox</a> will only be investing in developing new features for the proprietary licensed version 2.0+. This news came as a surprise to many engineers who have built products on top of this previously open source library.</p>\n\n\n\n<p>&ldquo;This move has produced&nbsp;<a rel=\"noreferrer noopener\" href=\"httpss://joemorrison.medium.com/death-of-an-open-source-business-model-62bc227a7e9b\" target=\"_blank\">shockwaves</a>&nbsp;<a rel=\"noreferrer noopener\" href=\"https://blog.cleverelephant.ca/2020/12/mapbox-morrison.html\" target=\"_blank\">in</a>&nbsp;the geospatial industry,&rdquo; Javier de la Torre wrote on the <a href=\"httpss://carto.com/blog/our-thoughts-as-mapboxgl-js-2-goes-proprietary/\">CARTO blog</a>. &ldquo;Many organizations are using Mapbox GL JS directly or fork from it. This library is responsible for the visualization of the so-called basemap, the cartography layer that underpins most maps. Previously Open Source, MapboxGL is a great solution, and could be used with many different data sources, so it became the de facto way to render basemaps.&rdquo; </p>\n\n\n\n<p>Mapbox <a href=\"httpss://www.mapbox.com/showcase/\">powers all sorts of maps</a> for high profile websites like CNN, The New York Times, Ancestry, Strava, Shopify, Facebook, and more. It is also used by WordPress.com and Jetpack for the <a href=\"httpss://wordpress.com/support/wordpress-editor/blocks/map-block/\">Map block</a>. The library is used in many <a href=\"httpss://wordpress.org/plugins/search/mapbox/\">plugins</a> on WordPress.org, some with tens of thousands of users. Developers using versions 1.x will want to be aware of the future of the Mapbox GL JS library. </p>\n\n\n\n<p>&ldquo;Mapbox&rsquo;s decision this week to release a brand new version of Mapbox GL JS and keep it proprietary stunned me,&rdquo; <a href=\"httpss://www.azavea.com/\">Azavea</a> product specialist Joe Morrison <a href=\"httpss://joemorrison.medium.com/death-of-an-open-source-business-model-62bc227a7e9b\">wrote</a> on his personal blog. &ldquo;Not only was v1 already a wildly popular open source library, but Mapbox&rsquo;s reputation as a prolific creator of open source software is a cornerstone of their whole identity. Describing what makes Mapbox special without mentioning &lsquo;open source&rsquo; is like trying to describe chocolate milk to an alien without using the word &lsquo;liquid.\'&rdquo;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Mapbox GL JS v2: <br />We need to deduct a few points for Mapbox\'s ridiculously obfuscated and convoluted way of trying to avoid mentioning the licence change in their announcement email. Can only imagine what series of meetings between comms, marketing and devs led to this. <a href=\"httpss://t.co/wWK4z51fzo\">pic.twitter.com/wWK4z51fzo</a></p>&mdash; Steve Bennett (@stevage1) <a href=\"httpss://twitter.com/stevage1/status/1336498655793086464?ref_src=twsrc%5Etfw\">December 9, 2020</a></blockquote>\n</div>\n\n\n\n<p>Mapbox hasn&rsquo;t formally clarified why it went proprietary with the library so speculation abounds. Morrison theorizes that cloud providers are killing the open core business model of software companies. <a href=\"https://crunchydata.com/\">Crunchy Data</a> Geospatial Engineer Paul Ramsey <a href=\"https://blog.cleverelephant.ca/2020/12/mapbox-morrison.html\">responded</a> to Morrison&rsquo;s article, contending that Mapbox is not an &ldquo;open core&rdquo; company and that the business of selling location based services may not be panning out for them:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>But like Google, the value proposition Mapbox sells isn&rsquo;t in the software, so much as the data and the platform underneath. Mapbox has built a unique, scalable platform for handling the huge problem of turning raw OSM data into usable services, and raw location streams into usable services. They sell access to that platform.</p><p>Mapbox has never been a software company, they&rsquo;ve always been a data and services company.</p></blockquote>\n\n\n\n<p>Mapbox employee Saman Bemel Benrud said the company is finally moving to make its products sustainable:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Disruption by undercutting costs via VC subsidies is still a thriving business model, and it just creates unsustainable products while destroying the thing that existed before. Mapbox is trying to become sustainable, finally, and I&rsquo;m here for it.</p>&mdash; Saman Bemel Benrud (@samanbb) <a href=\"httpss://twitter.com/samanbb/status/1336380594410770434?ref_src=twsrc%5Etfw\">December 8, 2020</a></blockquote>\n</div>\n\n\n\n<p>This change has the potential to negatively impact the developers and companies that built products on top of Mapbox GL JS, thinking its open source licensing was set in stone.</p>\n\n\n\n<p>&ldquo;The change says nothing about &lsquo;open source&rsquo; in the large as a model, and everything about &lsquo;single vendor projects&rsquo; and whether you should, strategically, believe their licensing,&rdquo; Ramsey said.</p>\n\n\n\n<p>&ldquo;I (and others) took the licensing (incorrectly) of Mapbox GL JS to be a promise, not only for now but the future, and made decisions based on that (incorrect) interpretation. I integrated GL JS into&nbsp;<a href=\"httpss://github.com/CrunchyData/pg_tileserv/blob/master/assets/preview-table.html\">an open source project</a>&nbsp;and now I have to revisit that decision.&rdquo;</p>\n\n\n\n<p>Some community members have already <a href=\"httpss://github.com/maplibre/maplibre-gl-js\">forked Mapbox GL JS</a> to maintain the 1.x version, but the vast majority of contributors to the original library were sponsored by Mapbox. The immediate future of the MapLibre GL fork may not include many new features, as the initial roadmap&rsquo;s stated goal is &ldquo;consistency and backwards-compatibility with previous releases and continued bug-fixes and maintenance going forward.&rdquo; </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Our first pre-release version of BSD-licensed maplibre-gl is out, a drop-in replacement for mapbox-gl. Big thanks to Seth Nickell! <a href=\"httpss://t.co/f9XqzpwDrT\">httpss://t.co/f9XqzpwDrT</a></p>&mdash; MapLibre (@maplibre) <a href=\"httpss://twitter.com/maplibre/status/1336875209559855104?ref_src=twsrc%5Etfw\">December 10, 2020</a></blockquote>\n</div>\n\n\n\n<p>A lengthy <a href=\"httpss://news.ycombinator.com/item?id=25347310\">discussion</a> on Hacker News drew a <a href=\"httpss://news.ycombinator.com/item?id=25350808\">response</a> from former Mapbox engineer Tom MacWright, who wrote the company&rsquo;s open source policy as a founding member of the team. </p>\n\n\n\n<p>&ldquo;I won&rsquo;t get into all the context, but I think we should consider whether a community without contributors is a community,&rdquo; MacWright said. &ldquo;GL JS never had major active contributors outside of the company, and there are no self-funded webgl experts with lots of time who are ready to maintain a fork.</p>\n\n\n\n<p>&ldquo;OSS, we hoped, was about enabling people and unlocking people&rsquo;s ability to collaborate. It turns out that in 2020, it&rsquo;s mostly helping companies and getting nothing in return. That&rsquo;s not a dynamic you can build a sustainable business on.&rdquo;</p>\n\n\n\n<p>The MapLibre GL fork may gain some momentum and emerge as a viable alternative to Mapbox&rsquo;s closed source library, but it will take time to see how well it is maintained. In the meantime, the existing version 1.x can meet most users&rsquo; needs. Mapbox has burned through a lot of good will with this controversial licensing update, which some perceive as a &ldquo;bait and switch&rdquo; offense. Rebuilding community trust, after removing the freedoms granted by the previous license, will be an uphill battle.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Dec 2020 04:45: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:\"https://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: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:79:\"WPTavern: Jump Start Block-Based Theme Development With the FSE Theme Generator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"httpss://wptavern.com/?p=108900\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:203:\"httpss://wptavern.com/jump-start-block-based-theme-development-with-the-fse-theme-generator?utm_source=rss&utm_medium=rss&utm_campaign=jump-start-block-based-theme-development-with-the-fse-theme-generator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4913:\"<p class=\"has-drop-cap\">Block-based themes are not complicated. Their structure is almost simple enough that developers are unlikely to need a tool to generate a blank theme. However, for those unfamiliar with how themes are built for the upcoming full-site editing (FSE) feature, a boilerplate is a good place to start.</p>\n\n\n\n<p>The <a href=\"httpss://github.com/WordPress/theme-experiments\">Theme Experiments</a> repository now has a new <a href=\"httpss://github.com/WordPress/theme-experiments/tree/master/emptytheme\">Empty Theme</a>. Alongside it is a command-line tool to generate a copy of that theme with a custom name, author, and URI.</p>\n\n\n\n<p>The idea is not new. There are tons of such tools for generating a theme in the wild. However, it is time for new tools that focus on block-based theming.</p>\n\n\n\n<p>For theme authors who want to generate a new block-based theme, they must clone a copy of the Theme Experiments repository. Then navigate to that folder via their command-line tool and type the following command:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>php new-empty-theme.php</code></pre>\n\n\n\n<p>From that point, it is a simple matter of answering a few questions and letting the tool do the work of creating a new theme folder.</p>\n\n\n\n<h2>Digging Into the Generated Theme</h2>\n\n\n\n<p class=\"has-drop-cap\">The generated theme is not much to look at. However, it is a theme that works within the new full-site editing system. After activation, theme authors can begin tinkering with the theme via the Site Editor screen (requires the Gutenberg plugin).</p>\n\n\n\n<img />Generated theme in the Site Editor.\n\n\n\n<p>There is one exception to it being a <em>working</em> theme. Loading the header template part is currently broken. Of course, I <a href=\"httpss://github.com/WordPress/theme-experiments/issues/146\">opened a ticket</a> for that issue, which should be easy for the development team to resolve.</p>\n\n\n\n<p>The file and folder structure is slim in comparison to traditional themes. It contains the bare-bones to get a theme up and running in the Site Editor. The following files and folders are included:</p>\n\n\n\n<ul><li><code>/assets</code><br />&ndash; <code>alignments-front.css</code></li><li><code>/block-template-parts</code><br />&ndash; <code>header.html</code></li><li><code>/block-templates</code><br />&ndash; <code>index.html</code><br />&ndash; <code>singular.html</code></li><li><code>experimental-theme.json</code></li><li><code>functions.php</code></li><li><code>index.php</code></li><li><code>readme.md</code></li><li><code>style.css</code></li></ul>\n\n\n\n<p>Even those are likely to be trimmed down in the future. The <code>experimental-theme.json</code> file will eventually be renamed to <code>theme.json</code>.</p>\n\n\n\n<p>The current <code>alignments-front.css</code> is nearly 80 lines of boilerplate code for handling the various block alignments. There is no need for every theme author to recreate all of this code, which should not change much between themes. That is why there is an open ticket for Gutenberg to <a href=\"httpss://github.com/WordPress/gutenberg/issues/26633\">provide alignment styles</a> on the front end. Theme authors will be able to overwrite this. However, the fewer files and lines of code theme authors need to contend with, the better.</p>\n\n\n\n<p>The standard <code>index.php</code> template is empty. It will no longer be useful for building themes now that block-based templates are stored in the <code>/block-templates</code> and <code>/block-template-parts</code> folders. <code>style.css</code> just houses the theme information. FSE themes will mostly use <code>theme.json</code> to configure default styles.</p>\n\n\n\n<p>In the coming months and years, theme authors will be working primarily in the <code>theme.json</code> file and block template folders. The jury is still out on whether the theming ecosystem will readily accept this change. At the same time, it feels refreshing to see the untangling of theme development. Traditional theming today has created behemoth codebases in an attempt to keep up with features that users want. A shift in how developers build themes was inevitable and necessary.</p>\n\n\n\n<p>My one nit-pick with the generated theme is the inclusion of the pluggable theme setup function in the <code>functions.php</code> file, which has somehow become a mainstay of core-developed themes over the years. There are APIs for enabling or disabling everything in such setup functions, and there is no reason for child themes to overwrite them wholesale.</p>\n\n\n\n<p>If things go according to plan, even the standard theme setup function may be on the chopping block. These functions are generally a list of calls to <code>add_theme_support()</code>. The long-term plan is for the current theme-supported features to either be enabled by default for block-based themes or configurable via the <code>theme.json</code> file.</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, 16 Dec 2020 21:54: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:\"https://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"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:\"Sat, 16 Jan 2021 18:04:01 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sat, 16 Jan 2021 17:45:08 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:2:\"br\";}}s:5:\"build\";s:14:\"20201105205514\";}','no'),(90206,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1610863441','no'),(90207,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1610820241','no'),(90208,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1610863441','no'),(90209,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'httpss://wordpress.org/news/2021/01/the-month-in-wordpress-december-2020/\'>The Month in WordPress: December 2020</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'httpss://wptavern.com/maplibre-launches-as-official-open-source-successor-to-mapbox-gl-js?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=maplibre-launches-as-official-open-source-successor-to-mapbox-gl-js\'>WPTavern: MapLibre Launches as Official Open Source Successor to Mapbox GL JS</a></li><li><a class=\'rsswidget\' href=\'httpss://wptavern.com/a-multi-theme-system-the-decade-long-wait-for-grandchild-themes-and-themeless-templates?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-multi-theme-system-the-decade-long-wait-for-grandchild-themes-and-themeless-templates\'>WPTavern: A Multi-Theme System, the Decade-Long Wait for Grandchild Themes, and Themeless Templates</a></li><li><a class=\'rsswidget\' href=\'httpss://wptavern.com/new-local-blueprint-enables-one-click-setup-for-testing-full-site-editing?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-local-blueprint-enables-one-click-setup-for-testing-full-site-editing\'>WPTavern: New Local Blueprint Enables One-Click Setup for Testing Full Site Editing</a></li></ul></div>','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_pollsa`
--

DROP TABLE IF EXISTS `wp_pollsa`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_pollsa` (
  `polla_aid` int(10) NOT NULL AUTO_INCREMENT,
  `polla_qid` int(10) NOT NULL DEFAULT 0,
  `polla_answers` varchar(200) NOT NULL DEFAULT '',
  `polla_votes` int(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`polla_aid`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_pollsa`
--

LOCK TABLES `wp_pollsa` WRITE;
/*!40000 ALTER TABLE `wp_pollsa` DISABLE KEYS */;
INSERT INTO `wp_pollsa` VALUES (1,1,'Good',0),(2,1,'Excellent',0),(3,1,'Bad',0),(4,1,'Can Be Improved',0),(5,1,'No Comments',0),(6,2,'YES',1),(7,2,'NO',0);
/*!40000 ALTER TABLE `wp_pollsa` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_pollsip`
--

DROP TABLE IF EXISTS `wp_pollsip`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_pollsip` (
  `pollip_id` int(10) NOT NULL AUTO_INCREMENT,
  `pollip_qid` varchar(10) NOT NULL DEFAULT '',
  `pollip_aid` varchar(10) NOT NULL DEFAULT '',
  `pollip_ip` varchar(100) NOT NULL DEFAULT '',
  `pollip_host` varchar(200) NOT NULL DEFAULT '',
  `pollip_timestamp` varchar(20) NOT NULL DEFAULT '0000-00-00 00:00:00',
  `pollip_user` tinytext NOT NULL,
  `pollip_userid` int(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`pollip_id`),
  KEY `pollip_ip` (`pollip_id`),
  KEY `pollip_qid` (`pollip_qid`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_pollsip`
--

LOCK TABLES `wp_pollsip` WRITE;
/*!40000 ALTER TABLE `wp_pollsip` DISABLE KEYS */;
INSERT INTO `wp_pollsip` VALUES (1,'2','6','173.206.164.180','dsl-173-206-164-180.tor.primus.ca','1379712184','sofits',1);
/*!40000 ALTER TABLE `wp_pollsip` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_pollsq`
--

DROP TABLE IF EXISTS `wp_pollsq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_pollsq` (
  `pollq_id` int(10) NOT NULL AUTO_INCREMENT,
  `pollq_question` varchar(200) NOT NULL DEFAULT '',
  `pollq_timestamp` varchar(20) NOT NULL DEFAULT '',
  `pollq_totalvotes` int(10) NOT NULL DEFAULT 0,
  `pollq_active` tinyint(1) NOT NULL DEFAULT 1,
  `pollq_expiry` varchar(20) NOT NULL DEFAULT '',
  `pollq_multiple` tinyint(3) NOT NULL DEFAULT 0,
  `pollq_totalvoters` int(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`pollq_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_pollsq`
--

LOCK TABLES `wp_pollsq` WRITE;
/*!40000 ALTER TABLE `wp_pollsq` DISABLE KEYS */;
INSERT INTO `wp_pollsq` VALUES (1,'How Is My Site?','1379711905',0,1,'',0,0),(2,'Will you be there','1379711997',1,1,'1380283200',0,1);
/*!40000 ALTER TABLE `wp_pollsq` 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) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3477 DEFAULT CHARSET=latin1;
/*!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 (196,63,'_menu_item_type','custom'),(197,63,'_menu_item_menu_item_parent','0'),(198,63,'_menu_item_object_id','63'),(199,63,'_menu_item_object','custom'),(200,63,'_menu_item_target',''),(201,63,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(202,63,'_menu_item_xfn',''),(203,63,'_menu_item_url','https://sofits.ca/'),(214,65,'_menu_item_type','post_type'),(215,65,'_menu_item_menu_item_parent','0'),(216,65,'_menu_item_object_id','21'),(217,65,'_menu_item_object','page'),(218,65,'_menu_item_target',''),(219,65,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(220,65,'_menu_item_xfn',''),(221,65,'_menu_item_url',''),(281,74,'_menu_item_type','post_type'),(282,74,'_menu_item_menu_item_parent','0'),(283,74,'_menu_item_object_id','73'),(284,74,'_menu_item_object','page'),(285,74,'_menu_item_target',''),(286,74,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(287,74,'_menu_item_xfn',''),(288,74,'_menu_item_url',''),(314,93,'_edit_last','7'),(315,93,'_edit_lock','1584314243:7'),(316,94,'_menu_item_type','post_type'),(317,94,'_menu_item_menu_item_parent','0'),(318,94,'_menu_item_object_id','93'),(319,94,'_menu_item_object','page'),(320,94,'_menu_item_target',''),(321,94,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(322,94,'_menu_item_xfn',''),(323,94,'_menu_item_url',''),(358,109,'_wp_attached_file','2013/08/Meech-Ski-with-Rosy_0006.jpg'),(359,109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2048;s:4:\"file\";s:36:\"2013/08/Meech-Ski-with-Rosy_0006.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Meech-Ski-with-Rosy_0006-800x150.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Meech-Ski-with-Rosy_0006-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Meech-Ski-with-Rosy_0006-1024x574.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G12\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";b:0;s:9:\"copyright\";s:36:\"Musicianonskis.ca    J. Holden, 2013\";s:12:\"focal_length\";s:15:\"0.0315789473684\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:3:\"1/0\";s:5:\"title\";s:0:\"\";}}'),(360,109,'_wp_attachment_image_alt','Tracks'),(553,266,'_wp_attached_file','2013/09/Weeds.jpg'),(554,266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:499;s:6:\"height\";i:539;s:4:\"file\";s:17:\"2013/09/Weeds.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Weeds-150x150.jpg\";s:5:\"width\";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:\"Weeds-277x300.jpg\";s:5:\"width\";i:277;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(555,266,'_wp_attachment_image_alt','September Flowers'),(569,288,'_menu_item_type','post_type'),(570,288,'_menu_item_menu_item_parent','0'),(571,288,'_menu_item_object_id','287'),(572,288,'_menu_item_object','page'),(573,288,'_menu_item_target',''),(574,288,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(575,288,'_menu_item_xfn',''),(576,288,'_menu_item_url',''),(595,319,'_edit_lock','1567980721:7'),(597,319,'_edit_last','7'),(600,322,'_menu_item_type','post_type'),(601,322,'_menu_item_menu_item_parent','0'),(602,322,'_menu_item_object_id','319'),(603,322,'_menu_item_object','page'),(604,322,'_menu_item_target',''),(605,322,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(606,322,'_menu_item_xfn',''),(607,322,'_menu_item_url',''),(621,346,'_edit_last','7'),(622,346,'_edit_lock','1568730831:7'),(623,347,'_menu_item_type','post_type'),(624,347,'_menu_item_menu_item_parent','0'),(625,347,'_menu_item_object_id','346'),(626,347,'_menu_item_object','page'),(627,347,'_menu_item_target',''),(628,347,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(629,347,'_menu_item_xfn',''),(630,347,'_menu_item_url',''),(680,363,'_menu_item_type','post_type'),(681,363,'_menu_item_menu_item_parent','0'),(682,363,'_menu_item_object_id','362'),(683,363,'_menu_item_object','page'),(684,363,'_menu_item_target',''),(685,363,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(686,363,'_menu_item_xfn',''),(687,363,'_menu_item_url',''),(717,422,'_edit_lock','1379702999:1'),(718,422,'_edit_last','1'),(719,423,'_location_id','2'),(720,423,'_blog_id',''),(721,423,'_location_address','Champlain Parkway'),(722,423,'_location_town','Gatineau Park'),(723,423,'_location_state','Quebec'),(724,423,'_location_postcode',''),(725,423,'_location_region',''),(726,423,'_location_country','CA'),(727,423,'_location_latitude','45.492343'),(728,423,'_location_longitude','-75.86928260000002'),(729,423,'_location_status','1'),(730,422,'_event_id','1'),(731,422,'_event_start_time','13:00:00'),(732,422,'_event_end_time','15:00:00'),(733,422,'_event_all_day','0'),(734,422,'_event_start_date','2013-09-27'),(735,422,'_event_end_date','2013-09-27'),(736,422,'_event_rsvp','1'),(737,422,'_event_rsvp_date',''),(738,422,'_event_rsvp_time','00:00:00'),(739,422,'_event_rsvp_spaces','1'),(740,422,'_event_spaces','0'),(741,422,'_location_id','2'),(742,422,'_recurrence_id',''),(743,422,'_event_status','1'),(744,422,'_event_private','0'),(745,422,'_event_date_created',''),(746,422,'_event_date_modified',''),(747,422,'_blog_id',''),(748,422,'_group_id','0'),(749,422,'_recurrence','0'),(750,422,'_recurrence_interval',''),(751,422,'_recurrence_freq',''),(752,422,'_recurrence_days','0'),(753,422,'_recurrence_byday',''),(754,422,'_recurrence_byweekno',''),(755,422,'_start_ts','1380286800'),(756,422,'_end_ts','1380294000'),(833,502,'_wp_attached_file','2013/09/Workout-of-September-19-2013.pdf'),(885,542,'_edit_last','1'),(886,542,'_edit_lock','1384799812:1'),(905,549,'_edit_last','1'),(906,549,'_edit_lock','1381783916:1'),(911,557,'_wp_attached_file','2013/09/Workout-of-Sept-26-2013-.pdf'),(912,561,'_edit_last','1'),(913,561,'_edit_lock','1384183925:1'),(922,593,'_wp_attached_file','2013/09/Workout-of-Oct-3-2013-.pdf'),(923,598,'_wp_attached_file','2013/09/SOFITS-GENERIC-2013-BASE1.pdf'),(935,615,'_edit_lock','1381448048:1'),(936,615,'_edit_last','1'),(954,632,'_menu_item_type','post_type'),(955,632,'_menu_item_menu_item_parent','0'),(956,632,'_menu_item_object_id','628'),(957,632,'_menu_item_object','page'),(958,632,'_menu_item_target',''),(959,632,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(960,632,'_menu_item_xfn',''),(961,632,'_menu_item_url',''),(963,634,'_edit_lock','1384799744:1'),(964,635,'_wp_attached_file','2013/10/Sofits-Oct-10-2013.jpg'),(965,635,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:545;s:4:\"file\";s:30:\"2013/10/Sofits-Oct-10-2013.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(966,635,'_wp_attachment_image_alt','Top of Penguin Hill'),(967,634,'_edit_last','1'),(973,647,'_edit_lock','1382533264:1'),(974,647,'_edit_last','1'),(980,652,'_wp_attached_file','2013/09/Workout-of-Oct10-2013-.pdf'),(990,666,'_wp_attached_file','2013/09/Workout-of-Oct-18-2013-.pdf'),(991,668,'_edit_lock','1384372153:1'),(992,668,'_edit_last','1'),(1004,687,'_wp_attached_file','2013/09/Create-Your-Own-Training-Plan.pdf'),(1005,690,'_wp_attached_file','2013/09/Background-Questions.pdf'),(1006,692,'_wp_attached_file','2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf'),(1007,693,'_wp_attached_file','2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf'),(1008,703,'_wp_attached_file','2013/09/Workout-of-Oct-25-2013.pdf'),(1021,723,'_edit_lock','1476714978:7'),(1022,723,'_edit_last','7'),(1023,724,'_wp_attached_file','2013/11/Kathy1.jpg'),(1024,724,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:18:\"2013/11/Kathy1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1025,725,'_wp_attached_file','2013/11/Kathy2.jpg'),(1026,725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:18:\"2013/11/Kathy2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1027,726,'_menu_item_type','post_type'),(1028,726,'_menu_item_menu_item_parent','0'),(1029,726,'_menu_item_object_id','723'),(1030,726,'_menu_item_object','page'),(1031,726,'_menu_item_target',''),(1032,726,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1033,726,'_menu_item_xfn',''),(1034,726,'_menu_item_url',''),(1036,724,'_wp_attachment_image_alt','All that is missing is the snow'),(1040,732,'_wp_attached_file','2013/09/Workout-of-November-1-2013.pdf'),(1043,743,'_edit_lock','1385476090:1'),(1044,743,'_edit_last','1'),(1047,746,'_edit_last','1'),(1048,746,'_edit_lock','1386446558:1'),(1057,754,'_wp_attached_file','2013/11/081029a.jpg'),(1058,754,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:378;s:4:\"file\";s:19:\"2013/11/081029a.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1059,754,'_wp_attachment_image_alt','October 29, 2008'),(1062,756,'_wp_attached_file','2013/11/081028.jpg'),(1063,756,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:398;s:4:\"file\";s:18:\"2013/11/081028.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1064,756,'_wp_attachment_image_alt','Waxing Poetic'),(1075,774,'_wp_attached_file','2013/09/Workout-of-November-8-2013-.pdf'),(1082,782,'_wp_attached_file','2013/11/051115.jpg'),(1083,782,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:18:\"2013/11/051115.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1084,782,'_wp_attachment_image_alt','Boots and Skis'),(1106,799,'_edit_lock','1384474527:1'),(1107,800,'_wp_attached_file','2013/11/131114_Moon_Dusk.jpg'),(1108,800,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:28:\"2013/11/131114_Moon_Dusk.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1109,799,'_edit_last','1'),(1111,803,'_wp_attached_file','2013/09/Workout-of-November-15-2013-.pdf'),(1113,806,'_wp_attached_file','2013/11/Sharon_mpeg4.mp4'),(1114,806,'_wp_attachment_metadata','a:9:{s:8:\"filesize\";i:594068;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:6;s:16:\"length_formatted\";s:4:\"0:05\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:5:\"mpeg4\";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:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}}'),(1127,814,'_wp_attached_file','2013/11/Kathy_Nov1_2013.mp4'),(1128,814,'_wp_attachment_metadata','a:9:{s:7:\"bitrate\";i:751605;s:8:\"filesize\";i:665219;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:8;s:16:\"length_formatted\";s:4:\"0:07\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";}'),(1129,821,'_wp_attached_file','2013/11/Janey1.mp4'),(1130,821,'_wp_attachment_metadata','a:9:{s:7:\"bitrate\";i:795457;s:8:\"filesize\";i:700051;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:8;s:16:\"length_formatted\";s:4:\"0:07\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";}'),(1131,824,'_edit_last','1'),(1132,824,'_edit_lock','1385476292:1'),(1138,829,'_edit_lock','1384816997:1'),(1139,829,'_edit_last','1'),(1141,832,'_edit_last','1'),(1142,832,'_edit_lock','1384801060:1'),(1150,839,'_wp_attached_file','2013/09/training-hours.pdf'),(1151,842,'_wp_attached_file','2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf'),(1152,844,'_wp_attached_file','2013/09/Ski-Waxing.pdf'),(1153,846,'_wp_attached_file','2013/11/Wax-Bench_0001.jpg'),(1154,846,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:467;s:4:\"file\";s:26:\"2013/11/Wax-Bench_0001.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1155,846,'_wp_attachment_image_alt','Wax Bench'),(1161,855,'_wp_attached_file','2013/09/Workout-of-November-22-2013.pdf'),(1162,861,'_edit_lock','1385997244:1'),(1163,861,'_edit_last','1'),(1165,864,'_wp_attached_file','2013/11/130116_Asticou.jpg'),(1166,864,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:449;s:4:\"file\";s:26:\"2013/11/130116_Asticou.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1167,864,'_wp_attachment_image_alt','Perfect Winter Day'),(1179,879,'_wp_attached_file','2013/09/Workout-of-November-29-2013-SNOW.pdf'),(1180,881,'_wp_attached_file','2013/09/Everything-You-Wanted-to-Know-About-Ski-Waxing-.pdf'),(1183,890,'_edit_lock','1386446338:1'),(1184,891,'_wp_attached_file','2013/12/Nov-28-Ridge-Swamp.jpg'),(1185,891,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:443;s:4:\"file\";s:30:\"2013/12/Nov-28-Ridge-Swamp.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1186,890,'_edit_last','1'),(1190,890,'_wp_old_slug','890'),(1193,895,'_edit_last','1'),(1194,895,'_edit_lock','1386637119:1'),(1200,901,'_wp_attached_file','2013/09/ski-waxing-notes-2013-.pdf'),(1203,904,'_wp_attached_file','2013/11/Sharon-weight-shift.jpg'),(1204,904,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:450;s:4:\"file\";s:31:\"2013/11/Sharon-weight-shift.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1205,905,'_wp_attached_file','2013/11/Sharon-legs-toghether-phase.jpg'),(1206,905,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:450;s:4:\"file\";s:39:\"2013/11/Sharon-legs-toghether-phase.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1213,915,'_wp_attached_file','2013/12/Sharon4_x264.mp4'),(1214,915,'_wp_attachment_metadata','a:9:{s:7:\"bitrate\";i:2145937;s:8:\"filesize\";i:2682470;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:10;s:16:\"length_formatted\";s:4:\"0:10\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";}'),(1223,923,'_wp_attached_file','2013/12/sharon-in-slo-mo_x264.mp4'),(1224,923,'_wp_attachment_metadata','a:9:{s:7:\"bitrate\";i:176268;s:8:\"filesize\";i:2049766;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:94;s:16:\"length_formatted\";s:4:\"1:33\";s:5:\"width\";i:640;s:6:\"height\";i:480;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";}'),(1227,895,'_wp_old_slug','waxing-pdf'),(1234,939,'_edit_lock','1386631621:1'),(1235,939,'_edit_last','1'),(1242,901,'_edit_lock','1386464708:1'),(1248,954,'_wp_attached_file','130111_Skiers-in-the-rain.jpg'),(1249,954,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:582;s:4:\"file\";s:29:\"130111_Skiers-in-the-rain.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1250,955,'_wp_attached_file','Ski-Waxing-Updated-Dec-9-2013.pdf'),(1251,956,'_wp_attached_file','SOFITS-GENERIC-2013-BUILD-1.pdf'),(1252,958,'_wp_attached_file','BUILD-1-for-ALSO-SKIS-.pdf'),(1253,960,'_wp_attached_file','SKI-FIRST-OR-ALSO-SKIS.pdf'),(1254,966,'_edit_last','1'),(1255,966,'_edit_lock','1386644832:1'),(1259,969,'_wp_attached_file','Chocolate-Banana-Bread.pdf'),(1260,970,'_wp_attached_file','Big-Sur-Power-Bar.pdf'),(1261,971,'_wp_attached_file','Chewy-Date-and-Seed-Bars.pdf'),(1276,983,'_edit_lock','1567306917:7'),(1277,983,'_edit_last','1'),(1282,992,'_edit_lock','1387056238:1'),(1283,992,'_edit_last','1'),(1285,994,'_edit_lock','1387056201:1'),(1286,994,'_edit_last','1'),(1300,1011,'_edit_lock','1387376853:1'),(1301,1011,'_edit_last','1'),(1303,1011,'inpost_gallery_data','1'),(1310,994,'inpost_gallery_data','1'),(1312,992,'inpost_gallery_data','1'),(1315,1018,'_edit_lock','1387376738:1'),(1316,1018,'_edit_last','1'),(1318,1018,'inpost_gallery_data','1'),(1320,1020,'_wp_attached_file','Workout-of-Dec-13-2013.pdf'),(1321,346,'inpost_gallery_data','1'),(1329,983,'inpost_gallery_data','1'),(1351,1050,'_edit_lock','1388414172:1'),(1352,1050,'_edit_last','1'),(1354,1050,'inpost_gallery_data','1'),(1359,1054,'_edit_lock','1568471593:7'),(1360,1054,'_edit_last','7'),(1361,1054,'inpost_gallery_data','1'),(1364,1059,'_menu_item_type','post_type'),(1365,1059,'_menu_item_menu_item_parent','0'),(1366,1059,'_menu_item_object_id','1054'),(1367,1059,'_menu_item_object','page'),(1368,1059,'_menu_item_target',''),(1369,1059,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1370,1059,'_menu_item_xfn',''),(1371,1059,'_menu_item_url',''),(1372,1060,'_edit_last','6'),(1373,1060,'_edit_lock','1388958020:6'),(1374,1060,'inpost_gallery_data','1'),(1378,1070,'_edit_lock','1389187130:1'),(1379,1070,'_edit_last','1'),(1381,1070,'inpost_gallery_data','1'),(1384,1070,'_thumbnail_id','864'),(1396,1094,'_edit_lock','1390921574:1'),(1397,1094,'_edit_last','1'),(1399,1094,'inpost_gallery_data','1'),(1404,1097,'_edit_lock','1391052596:1'),(1405,1097,'_edit_last','1'),(1407,1097,'inpost_gallery_data','1'),(1411,1102,'_edit_last','1'),(1412,1102,'_edit_lock','1390921529:1'),(1414,1102,'inpost_gallery_data','1'),(1438,1102,'_wp_old_slug','warm-up-and-workout-for-jan-24'),(1443,1094,'_wp_old_slug','friday-january-24'),(1473,1143,'_edit_last','1'),(1474,1143,'_edit_lock','1391744549:1'),(1476,1143,'inpost_gallery_data','1'),(1477,1146,'_edit_lock','1391607928:1'),(1478,1146,'_edit_last','1'),(1480,1146,'inpost_gallery_data','1'),(1489,1158,'_edit_lock','1391744436:1'),(1490,1158,'_edit_last','1'),(1492,1158,'inpost_gallery_data','1'),(1494,1161,'_wp_attached_file','Uphill-time-Trial.pdf'),(1507,1178,'_edit_lock','1392649355:1'),(1508,1178,'_edit_last','1'),(1510,1178,'inpost_gallery_data','1'),(1512,1180,'_edit_lock','1392394268:1'),(1513,1180,'_edit_last','1'),(1515,1180,'inpost_gallery_data','1'),(1522,1208,'_edit_lock','1393617516:1'),(1523,1208,'_edit_last','1'),(1525,1208,'inpost_gallery_data','1'),(1526,1210,'_edit_last','1'),(1527,1210,'_edit_lock','1394162933:1'),(1529,1210,'inpost_gallery_data','1'),(1535,1210,'_wp_old_slug','friday-march-6'),(1538,1220,'_edit_last','1'),(1539,1220,'_edit_lock','1394625637:1'),(1541,1220,'inpost_gallery_data','1'),(1542,1222,'_edit_last','1'),(1543,1222,'_edit_lock','1394625367:1'),(1545,1222,'inpost_gallery_data','1'),(1548,319,'inpost_gallery_data','1'),(1549,723,'inpost_gallery_data','1'),(1550,1229,'_edit_lock','1406922568:1'),(1551,1230,'_wp_attached_file','140311_Yvonne-and-Susan.jpg'),(1552,1230,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:27:\"140311_Yvonne-and-Susan.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1553,1231,'_wp_attached_file','140314_Sofits-at-Huron.jpg'),(1554,1231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:26:\"140314_Sofits-at-Huron.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1555,1232,'_wp_attached_file','140316_Crust-Cruising.jpg'),(1556,1232,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:25:\"140316_Crust-Cruising.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1557,1233,'_wp_attached_file','140316_Ila-and-Susan.jpg'),(1558,1233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:24:\"140316_Ila-and-Susan.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1559,1229,'_edit_last','1'),(1561,1229,'inpost_gallery_data','1'),(1563,1229,'_wp_old_slug','1229'),(1564,1236,'_edit_last','1'),(1565,1236,'_edit_lock','1395367705:1'),(1567,1236,'inpost_gallery_data','1'),(1568,1238,'_edit_lock','1395171062:1'),(1569,1238,'_edit_last','1'),(1571,1238,'inpost_gallery_data','1'),(1579,1248,'_edit_lock','1407853421:6'),(1580,1249,'_wp_attached_file','130216_Gatineau-Loppet.jpg'),(1581,1249,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:467;s:4:\"file\";s:26:\"130216_Gatineau-Loppet.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1582,1248,'_edit_last','1'),(1583,1250,'_wp_attached_file','120712_Tea-Party2.jpg'),(1584,1250,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:485;s:4:\"file\";s:21:\"120712_Tea-Party2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";b:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:14:\"0.277777777778\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";}}'),(1585,1251,'_wp_attached_file','120505_Sofits-Wakefield.jpg'),(1586,1251,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:562;s:4:\"file\";s:27:\"120505_Sofits-Wakefield.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";b:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:14:\"0.125490196078\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:3:\"1/0\";s:5:\"title\";s:0:\"\";}}'),(1587,1252,'_wp_attached_file','120712_Tea-Party.jpg'),(1588,1252,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:413;s:4:\"file\";s:20:\"120712_Tea-Party.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";b:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:14:\"0.232558139535\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";}}'),(1589,1253,'_wp_attached_file','120831_Cycling-Sofits.jpg'),(1590,1253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:411;s:4:\"file\";s:25:\"120831_Cycling-Sofits.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:0;s:6:\"credit\";s:5:\"55:13\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";b:0;s:9:\"copyright\";s:9:\"J. Holden\";s:12:\"focal_length\";s:14:\"0.277777777778\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:14:\"0.333333333333\";s:5:\"title\";s:0:\"\";}}'),(1591,1254,'_wp_attached_file','120907_Sofits.jpg'),(1592,1254,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:477;s:4:\"file\";s:17:\"120907_Sofits.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1285545600;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:13:\"0.25641025641\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:14:\"0.333333333333\";s:5:\"title\";s:0:\"\";}}'),(1593,1255,'_wp_attached_file','121109_Sofits-Skipping2.jpg'),(1594,1255,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:515;s:4:\"file\";s:27:\"121109_Sofits-Skipping2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";b:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:14:\"0.243902439024\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";}}'),(1595,1248,'inpost_gallery_data','1'),(1611,1280,'_wp_attached_file','140404_Sofits-Skate.jpg'),(1612,1280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:483;s:4:\"file\";s:23:\"140404_Sofits-Skate.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1613,1281,'_wp_attached_file','Sofits.jpg'),(1614,1281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:359;s:4:\"file\";s:10:\"Sofits.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1628,1296,'_edit_lock','1397182344:1'),(1629,1296,'_edit_last','1'),(1631,1296,'inpost_gallery_data','1'),(1646,93,'inpost_gallery_data','1'),(1653,1339,'_edit_lock','1412782940:1'),(1654,1339,'_edit_last','1'),(1656,1339,'inpost_gallery_data','1'),(1725,1468,'_edit_lock','1415373152:1'),(1726,1468,'_edit_last','1'),(1728,1468,'inpost_gallery_data','1'),(1810,1482,'_wp_attached_file','131009_River-Fog.jpg'),(1811,1482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"131009_River-Fog.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1816,1495,'_wp_attached_file','Stretches.pdf'),(1855,1514,'_wp_attached_file','140929_Penguin-Picnic.jpg'),(1856,1514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:337;s:4:\"file\";s:25:\"140929_Penguin-Picnic.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:8;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G16\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1411980454;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"7.366\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(1857,1514,'_wp_attachment_image_alt','Penguin Picnic'),(1859,1516,'_edit_lock','1412041726:1'),(1860,1516,'_edit_last','1'),(1862,1516,'inpost_gallery_data','1'),(1865,1535,'_wp_attached_file','image.jpg'),(1866,1535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1936;s:4:\"file\";s:9:\"image.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"image-800x597.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:3;}}'),(1868,1536,'_wp_attached_file','141003_Sofits4.jpg'),(1869,1536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:587;s:4:\"file\";s:18:\"141003_Sofits4.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:8;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G16\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1412340374;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"9.658\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1880,1552,'_wp_attached_file','141003_Sofits2.jpg'),(1881,1552,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:544;s:4:\"file\";s:18:\"141003_Sofits2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:8;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G16\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1412339377;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"9.432\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1887,1557,'_wp_attached_file','141010_Sofits.jpg'),(1888,1557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:409;s:4:\"file\";s:17:\"141010_Sofits.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:3.20000000000000017763568394002504646778106689453125;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"TG-2\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1412951375;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:22:\"OLYMPUS DIGITAL CAMERA\";s:11:\"orientation\";i:1;}}'),(1898,1572,'_wp_attached_file','Blondies.pdf'),(1899,1572,'_edit_lock','1414185089:6'),(1974,1626,'_wp_attached_file','131104_Ice-Chrystals.jpg'),(1975,1626,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:24:\"131104_Ice-Chrystals.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(1976,1627,'_wp_attached_file','131114_Ice-and-Snow.jpg'),(1977,1627,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:23:\"131114_Ice-and-Snow.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2020,1651,'_wp_attached_file','140307_Sofits.jpg'),(2021,1651,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:699;s:6:\"height\";i:525;s:4:\"file\";s:17:\"140307_Sofits.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2032,1665,'_edit_lock','1420034788:1'),(2033,1665,'_edit_last','6'),(2034,1666,'_wp_attached_file','GregChristie_Nov2014.pdf'),(2035,1665,'inpost_gallery_data','1'),(2053,1687,'_wp_attached_file','100_4746.jpg'),(2054,1687,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2160;s:6:\"height\";i:1440;s:4:\"file\";s:12:\"100_4746.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"100_4746-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:4.79999999999999982236431605997495353221893310546875;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:27:\"KODAK DX4330 DIGITAL CAMERA\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1075639714;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:10:\"0.00142857\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(2061,1692,'_wp_attached_file','Time-Trial-START-HERE.jpg'),(2062,1692,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:785;s:4:\"file\";s:25:\"Time-Trial-START-HERE.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Time-Trial-START-HERE-382x600.jpg\";s:5:\"width\";i:382;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:8;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G16\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1417428816;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:6:\"13.556\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2063,1692,'_wp_attachment_image_alt','Start Here'),(2064,1693,'_wp_attached_file','Time-Trial-FINISH.jpg'),(2065,1693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:785;s:4:\"file\";s:21:\"Time-Trial-FINISH.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Time-Trial-FINISH-382x600.jpg\";s:5:\"width\";i:382;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:8;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G16\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1417428816;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:6:\"13.556\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(2066,1694,'_wp_attached_file','Dec-1-Time-Trial-TURN-AROUND.jpg'),(2067,1694,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:450;s:4:\"file\";s:32:\"Dec-1-Time-Trial-TURN-AROUND.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:2.79999999999999982236431605997495353221893310546875;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G16\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1417430568;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"8.334\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2068,1694,'_wp_attachment_image_alt','Turnaround'),(2122,1736,'_wp_attached_file','Time-Trial-Results-Dec-5-2014.pdf'),(2192,1810,'_wp_attached_file','141219_Sofits.jpg'),(2193,1810,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:450;s:4:\"file\";s:17:\"141219_Sofits.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"141219_Sofits-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:8;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G16\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1419000735;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2210,1850,'_wp_attached_file','140124_Sofits2.jpg'),(2211,1850,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:449;s:4:\"file\";s:18:\"140124_Sofits2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"140124_Sofits2-800x449.jpg\";s:5:\"width\";i:800;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;}}'),(2230,1887,'_wp_attached_file','Sofits_Jan-16-2015.jpg'),(2231,1887,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:449;s:4:\"file\";s:22:\"Sofits_Jan-16-2015.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Sofits_Jan-16-2015-800x449.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:2.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G16\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1421418403;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.1\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2261,1972,'_wp_attached_file','150306_Sofits-Skate.jpg'),(2262,1972,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:542;s:4:\"file\";s:23:\"150306_Sofits-Skate.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"150306_Sofits-Skate-800x542.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:8;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon PowerShot G16\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1425648739;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2265,1984,'_wp_attached_file','Anne-V..pdf'),(2286,2019,'_edit_last','7'),(2287,2019,'_edit_lock','1479567613:7'),(2288,2019,'inpost_gallery_data','1'),(2289,2020,'_menu_item_type','post_type'),(2290,2020,'_menu_item_menu_item_parent','0'),(2291,2020,'_menu_item_object_id','2019'),(2292,2020,'_menu_item_object','page'),(2293,2020,'_menu_item_target',''),(2294,2020,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2295,2020,'_menu_item_xfn',''),(2296,2020,'_menu_item_url',''),(2352,2104,'_wp_attached_file','150925_Sofits10.jpg'),(2353,2104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:19:\"150925_Sofits10.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1443187167;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2362,2116,'_wp_attached_file','151002_Sofits-Mount-Mooney04.jpg'),(2363,2116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:427;s:4:\"file\";s:32:\"151002_Sofits-Mount-Mooney04.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"151002_Sofits-Mount-Mooney04-800x427.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1443794168;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2373,2136,'_wp_attached_file','151008_Ridge-Dog-Walk_0002.jpg'),(2374,2136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:583;s:4:\"file\";s:30:\"151008_Ridge-Dog-Walk_0002.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"151008_Ridge-Dog-Walk_0002-800x583.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1444304474;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2375,2149,'_wp_attached_file','Sofits-Etienne-Brule_0022.jpg'),(2376,2149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3264;s:6:\"height\";i:2448;s:4:\"file\";s:29:\"Sofits-Etienne-Brule_0022.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Sofits-Etienne-Brule_0022-800x600.jpg\";s:5:\"width\";i:800;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;}}'),(2390,2172,'_wp_attached_file','061011.jpg'),(2391,2172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:332;s:4:\"file\";s:10:\"061011.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"061011-800x332.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2420,2192,'_wp_attached_file','151018_Trail-8-Sofits-Ski-Walk_0015.jpg'),(2421,2192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:39:\"151018_Trail-8-Sofits-Ski-Walk_0015.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"151018_Trail-8-Sofits-Ski-Walk_0015-800x600.jpg\";s:5:\"width\";i:800;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:1445166145;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2424,2209,'_wp_attached_file','Buff2.jpg'),(2425,2209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1553;s:4:\"file\";s:9:\"Buff2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Buff2-618x800.jpg\";s:5:\"width\";i:618;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;}}'),(2435,2219,'_wp_attached_file','061107.jpg'),(2436,2219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:403;s:4:\"file\";s:10:\"061107.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2439,2232,'_wp_attached_file','S995_ABC15_jacket.pdf'),(2440,2232,'_edit_lock','1447447283:8'),(2470,2259,'_wp_attached_file','091202.jpg'),(2471,2259,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:460;s:4:\"file\";s:10:\"091202.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2473,2292,'_wp_attached_file','151201_071204.jpg'),(2474,2292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:324;s:4:\"file\";s:17:\"151201_071204.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2475,2314,'_wp_attached_file','091211.jpg'),(2476,2314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:459;s:4:\"file\";s:10:\"091211.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(2490,2329,'_wp_attached_file','130412_Fire-at-Western.jpg'),(2491,2329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:420;s:4:\"file\";s:26:\"130412_Fire-at-Western.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"130412_Fire-at-Western-800x420.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"130412_Fire-at-Western-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(2505,2354,'_edit_lock','1555361273:7'),(2506,2354,'_edit_last','7'),(2507,2355,'_wp_attached_file','Sofits_Jan-16-2015-1.jpg'),(2508,2355,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:449;s:4:\"file\";s:24:\"Sofits_Jan-16-2015-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Sofits_Jan-16-2015-1-800x449.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:449;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Sofits_Jan-16-2015-1-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1421418403;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(2510,2354,'inpost_gallery_data','1'),(2538,2395,'_wp_attached_file','151230_Sofits01.jpg'),(2539,2395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:504;s:4:\"file\";s:19:\"151230_Sofits01.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"151230_Sofits01-800x504.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"151230_Sofits01-768x484.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:484;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1136075376;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(2551,2420,'_wp_attached_file','Winter-Trail-53.jpg'),(2552,2420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:487;s:4:\"file\";s:19:\"Winter-Trail-53.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(2585,2446,'_edit_lock','1584314247:7'),(2586,2446,'_edit_last','7'),(2587,2446,'inpost_gallery_data','1'),(2590,2448,'_menu_item_type','post_type'),(2591,2448,'_menu_item_menu_item_parent','0'),(2592,2448,'_menu_item_object_id','2446'),(2593,2448,'_menu_item_object','page'),(2594,2448,'_menu_item_target',''),(2595,2448,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2596,2448,'_menu_item_xfn',''),(2597,2448,'_menu_item_url',''),(2600,2451,'_wp_attached_file','160126_Sofits-Skate13.jpg'),(2601,2451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:549;s:4:\"file\";s:25:\"160126_Sofits-Skate13.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"160126_Sofits-Skate13-800x549.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"160126_Sofits-Skate13-768x527.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:527;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:10:\"1453806588\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2602,2452,'_wp_attached_file','150208_Trail-36a.jpg'),(2603,2452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:20:\"150208_Trail-36a.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"150208_Trail-36a-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"150208_Trail-36a-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:10:\"1423404995\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2616,2459,'_wp_attached_file','160206_Screen-Shot-2016-02-06-at-2.58.34-PM.png'),(2617,2459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:618;s:6:\"height\";i:480;s:4:\"file\";s:47:\"160206_Screen-Shot-2016-02-06-at-2.58.34-PM.png\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2628,2468,'_wp_attached_file','160206_Screen-Shot-updated.gif'),(2629,2468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:618;s:6:\"height\";i:480;s:4:\"file\";s:30:\"160206_Screen-Shot-updated.gif\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2637,2481,'_wp_attached_file','160121_Asticou-Area01.jpg'),(2638,2481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:484;s:4:\"file\";s:25:\"160121_Asticou-Area01.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"160121_Asticou-Area01-800x484.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:484;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"160121_Asticou-Area01-768x465.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:465;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:10:\"1453374157\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2658,2612,'_wp_attached_file','Cycle-Orleans-57-1577-1578-.jpg'),(2659,2612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:31:\"Cycle-Orleans-57-1577-1578-.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Cycle-Orleans-57-1577-1578--800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Cycle-Orleans-57-1577-1578--768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2660,2618,'_wp_attached_file','111011_weeds1.jpg'),(2661,2618,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:501;s:4:\"file\";s:17:\"111011_weeds1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"111011_weeds1-800x501.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"111011_weeds1-768x481.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:481;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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2662,2619,'_wp_attached_file','121005_Sofits.jpg'),(2663,2619,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:563;s:4:\"file\";s:17:\"121005_Sofits.jpg\";s:5:\"sizes\";a:0:{}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:10:\"1349446375\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2664,2631,'_wp_attached_file','161014_Sofits-Mulvihill_001503.jpg'),(2665,2631,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:34:\"161014_Sofits-Mulvihill_001503.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"161014_Sofits-Mulvihill_001503-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"161014_Sofits-Mulvihill_001503-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:10:\"1476463739\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2666,2642,'_wp_attached_file','160126_Sofits-Skate14.jpg'),(2667,2642,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:586;s:4:\"file\";s:25:\"160126_Sofits-Skate14.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"160126_Sofits-Skate14-800x586.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:586;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"160126_Sofits-Skate14-768x563.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:563;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:10:\"1453806596\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2668,2649,'_wp_attached_file','151106_Sofits04.jpg'),(2669,2649,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:405;s:4:\"file\";s:19:\"151106_Sofits04.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"151106_Sofits04-800x405.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"151106_Sofits04-768x389.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:389;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:22:\"OLYMPUS DIGITAL CAMERA\";s:17:\"created_timestamp\";s:10:\"1446821492\";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:22:\"OLYMPUS DIGITAL CAMERA\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2670,2660,'_wp_attached_file','161028_Sofits02.jpg'),(2671,2660,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:19:\"161028_Sofits02.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"161028_Sofits02-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"161028_Sofits02-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:10:\"1477648157\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2672,2678,'_edit_lock','1568472508:7'),(2673,2678,'_edit_last','7'),(2674,2678,'inpost_gallery_data','1'),(2675,2679,'_menu_item_type','post_type'),(2676,2679,'_menu_item_menu_item_parent','0'),(2677,2679,'_menu_item_object_id','2678'),(2678,2679,'_menu_item_object','page'),(2679,2679,'_menu_item_target',''),(2680,2679,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2681,2679,'_menu_item_xfn',''),(2682,2679,'_menu_item_url',''),(2689,2693,'_edit_lock','1571267647:7'),(2690,2693,'_edit_last','7'),(2691,2693,'inpost_gallery_data','1'),(2692,2694,'_menu_item_type','post_type'),(2693,2694,'_menu_item_menu_item_parent','0'),(2694,2694,'_menu_item_object_id','2693'),(2695,2694,'_menu_item_object','page'),(2696,2694,'_menu_item_target',''),(2697,2694,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2698,2694,'_menu_item_xfn',''),(2699,2694,'_menu_item_url',''),(2700,2711,'_wp_attached_file','161029_Favorite-Beech-and-Fog_0025.jpg'),(2701,2711,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:767;s:4:\"file\";s:38:\"161029_Favorite-Beech-and-Fog_0025.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"161029_Favorite-Beech-and-Fog_0025-800x614.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"161029_Favorite-Beech-and-Fog_0025-768x589.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:589;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:10:\"1477758993\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2702,2717,'_wp_attached_file','151124_First-Ski01.jpg'),(2703,2717,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:563;s:4:\"file\";s:22:\"151124_First-Ski01.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"151124_First-Ski01-800x563.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"151124_First-Ski01-768x540.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:540;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:10:\"1448358402\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2710,2735,'_wp_attached_file','161121_Ski10.jpg'),(2711,2735,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:16:\"161121_Ski10.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"161121_Ski10-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"161121_Ski10-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:10:\"1479749830\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2712,2744,'_wp_attached_file','161127_Snow-Report05.jpg'),(2713,2744,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:24:\"161127_Snow-Report05.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"161127_Snow-Report05-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"161127_Snow-Report05-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:10:\"1480266701\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2714,2758,'_wp_attached_file','150306_Sofits-Skate-1.jpg'),(2715,2758,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:542;s:4:\"file\";s:25:\"150306_Sofits-Skate-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"150306_Sofits-Skate-1-800x542.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"150306_Sofits-Skate-1-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;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:10:\"1425648739\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2716,2766,'_wp_attached_file','161206_North-Loop10.jpg'),(2717,2766,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:23:\"161206_North-Loop10.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"161206_North-Loop10-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"161206_North-Loop10-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:10:\"1481043142\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2718,2774,'_wp_attached_file','041207.jpg'),(2719,2774,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:467;s:4:\"file\";s:10:\"041207.jpg\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2720,2775,'_wp_attached_file','060323a.jpg'),(2721,2775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:333;s:4:\"file\";s:11:\"060323a.jpg\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2722,2776,'_wp_attached_file','060302-2.jpg'),(2723,2776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:12:\"060302-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"060302-2-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"060302-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2724,2777,'_wp_attached_file','110119_EtienneBrule.jpg'),(2725,2777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:666;s:4:\"file\";s:23:\"110119_EtienneBrule.jpg\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2726,2789,'_wp_attached_file','070203.jpg'),(2727,2789,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:543;s:4:\"file\";s:10:\"070203.jpg\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2728,2811,'_wp_attached_file','170110_Gossip02_1.jpg'),(2729,2811,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:669;s:4:\"file\";s:21:\"170110_Gossip02_1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"170110_Gossip02_1-800x535.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:535;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"170110_Gossip02_1-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;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:10:\"1484066883\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2730,2814,'_wp_attached_file','160120_Pink-Lake04.jpg'),(2731,2814,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:22:\"160120_Pink-Lake04.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"160120_Pink-Lake04-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"160120_Pink-Lake04-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:10:\"1136079359\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2732,2822,'_wp_attached_file','170131_Yurt_0001.jpg'),(2733,2822,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:715;s:4:\"file\";s:20:\"170131_Yurt_0001.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"170131_Yurt_0001-800x572.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:572;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"170131_Yurt_0001-768x549.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:549;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:10:\"1485852938\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2734,2825,'_wp_attached_file','170205_Snowy-Classic_0018.jpg'),(2735,2825,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:933;s:4:\"file\";s:29:\"170205_Snowy-Classic_0018.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"170205_Snowy-Classic_0018-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;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:10:\"1486298673\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2736,2832,'_wp_attached_file','150228_Beautiful-Train-Bed-Ski.jpg'),(2737,2832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:450;s:4:\"file\";s:34:\"150228_Beautiful-Train-Bed-Ski.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"150228_Beautiful-Train-Bed-Ski-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"150228_Beautiful-Train-Bed-Ski-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:10:\"1425136903\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2738,2837,'_wp_attached_file','160315_Foggy-Skate06.jpg'),(2739,2837,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:547;s:4:\"file\";s:24:\"160315_Foggy-Skate06.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"160315_Foggy-Skate06-800x547.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:547;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"160315_Foggy-Skate06-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;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:10:\"1458059232\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2740,2844,'_wp_attached_file','170224_Sofits.jpg'),(2741,2844,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:17:\"170224_Sofits.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"170224_Sofits-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"170224_Sofits-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:10:\"1487932368\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2742,2848,'_wp_attached_file','170305_Cold-Skate-P17_0007.jpg'),(2743,2848,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:740;s:4:\"file\";s:30:\"170305_Cold-Skate-P17_0007.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"170305_Cold-Skate-P17_0007-800x592.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"170305_Cold-Skate-P17_0007-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;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:10:\"1488715293\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2744,2892,'_wp_attached_file','161016_Sofits-Mulvihill_001106.jpg'),(2745,2892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:34:\"161016_Sofits-Mulvihill_001106.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"161016_Sofits-Mulvihill_001106-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"161016_Sofits-Mulvihill_001106-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:10:\"1476463699\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2757,2928,'_wp_attached_file','160214_Cold-Kingsmere-Hike_0053.jpg'),(2758,2928,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:531;s:4:\"file\";s:35:\"160214_Cold-Kingsmere-Hike_0053.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"160214_Cold-Kingsmere-Hike_0053-800x531.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:531;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"160214_Cold-Kingsmere-Hike_0053-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;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:10:\"1455468789\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2759,2929,'_wp_attached_file','170102_Late-Classic-Relais_0010.jpg'),(2760,2929,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:35:\"170102_Late-Classic-Relais_0010.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"170102_Late-Classic-Relais_0010-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"170102_Late-Classic-Relais_0010-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:10:\"1483372061\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2778,2988,'_wp_attached_file','Green-Blue-RedOct-13.pdf'),(2783,2997,'_wp_attached_file','Ski-Goals-2017.pdf'),(2798,3002,'_wp_attached_file','Green-Blue-Red5.pdf'),(2799,3006,'_wp_attached_file','22769770_10154706221106627_5942911290522149752_o.jpg'),(2800,3006,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:52:\"22769770_10154706221106627_5942911290522149752_o.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"22769770_10154706221106627_5942911290522149752_o-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"22769770_10154706221106627_5942911290522149752_o-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2801,3007,'_wp_attached_file','Green-Blue-Red6.pdf'),(2802,3013,'_wp_attached_file','Green-Blue-Red7-1.pdf'),(2803,3013,'_edit_lock','1509568525:10'),(2805,3029,'_wp_attached_file','Green-Blue-Red8-ANYTHING-IS-POSSIBLE-.pdf'),(2806,3033,'_wp_attached_file','23519206_2065096266848884_3891200855174690853_n.jpg'),(2807,3033,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:51:\"23519206_2065096266848884_3891200855174690853_n.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"23519206_2065096266848884_3891200855174690853_n-800x533.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"23519206_2065096266848884_3891200855174690853_n-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;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:\"0\";s:8:\"keywords\";a:0:{}}}'),(2808,3034,'_wp_attached_file','Green-Blue-Red9.pdf'),(2809,3042,'_wp_attached_file','NakkerSofits_Dec1.pdf'),(2810,3044,'_wp_attached_file','Green-Blue-Red12.pdf'),(2811,3050,'_wp_attached_file','30-20-10-Skis.pdf'),(2812,3053,'_wp_attached_file','Green-Blue-Red13-Dec-22.pdf'),(2813,3060,'_wp_attached_file','Green-Blue-Red14-Jan12.pdf'),(2814,3067,'_wp_attached_file','Green-Blue-Red15-Jan19.pdf'),(2822,3079,'_wp_attached_file','Sofits-Summer-Activities.pdf'),(2829,3128,'_edit_lock','1570732944:7'),(2830,3128,'_edit_last','7'),(2831,3128,'inpost_gallery_data','1'),(2832,3129,'_menu_item_type','post_type'),(2833,3129,'_menu_item_menu_item_parent','0'),(2834,3129,'_menu_item_object_id','3128'),(2835,3129,'_menu_item_object','page'),(2836,3129,'_menu_item_target',''),(2837,3129,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2838,3129,'_menu_item_xfn',''),(2839,3129,'_menu_item_url',''),(2862,3190,'_edit_lock','1537622587:7'),(2863,3190,'_edit_last','7'),(2864,3190,'inpost_gallery_data','1'),(2865,3191,'_menu_item_type','post_type'),(2866,3191,'_menu_item_menu_item_parent','0'),(2867,3191,'_menu_item_object_id','3190'),(2868,3191,'_menu_item_object','page'),(2869,3191,'_menu_item_target',''),(2870,3191,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2871,3191,'_menu_item_xfn',''),(2872,3191,'_menu_item_url',''),(2873,3195,'_edit_lock','1569196885:7'),(2874,3195,'_edit_last','7'),(2875,3195,'inpost_gallery_data','1'),(2876,3196,'_menu_item_type','post_type'),(2877,3196,'_menu_item_menu_item_parent','0'),(2878,3196,'_menu_item_object_id','3195'),(2879,3196,'_menu_item_object','page'),(2880,3196,'_menu_item_target',''),(2881,3196,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2882,3196,'_menu_item_xfn',''),(2883,3196,'_menu_item_url',''),(2884,3205,'_edit_lock','1538179937:7'),(2885,3205,'_edit_last','7'),(2886,3205,'inpost_gallery_data','1'),(2887,3206,'_menu_item_type','post_type'),(2888,3206,'_menu_item_menu_item_parent','0'),(2889,3206,'_menu_item_object_id','3205'),(2890,3206,'_menu_item_object','page'),(2891,3206,'_menu_item_target',''),(2892,3206,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2893,3206,'_menu_item_xfn',''),(2894,3206,'_menu_item_url',''),(2896,3213,'_wp_attached_file','01-Tuesday-Oct-16.pdf'),(2897,3219,'_wp_attached_file','02-Tuesday-Oct-23.pdf'),(2898,3221,'_wp_attached_file','02-Tuesday-Oct-23A.pdf'),(2899,3222,'_wp_attached_file','02-Tuesday-Oct-23B.pdf'),(2900,3224,'_wp_attached_file','04-Friday-Oct-26.pdf'),(2912,3231,'_wp_attached_file','Sofits-GOALs-2018-2019.pdf'),(2913,3233,'_wp_attached_file','03-Tuesday-Oct-30A.pdf'),(2914,3234,'_wp_attached_file','03-Tuesday-Oct-30B.pdf'),(2915,3235,'_wp_attached_file','03-Tuesday-Oct-30C.pdf'),(2916,3238,'_wp_attached_file','05-Friday-Nov-2.pdf'),(2917,3243,'_wp_attached_file','04-Tuesday-Nov-6.pdf'),(2918,3245,'_wp_attached_file','04-Tuesday-Nov-6-1.pdf'),(2919,3247,'_wp_attached_file','06-Friday-Nov-9.pdf'),(2920,3251,'_wp_attached_file','08-Friday-Nov-23-.pdf'),(2921,3254,'_wp_attached_file','09-Tuesday-Dec-4.pdf'),(2922,3256,'_wp_attached_file','10-Friday-Dec-7-5K.pdf'),(2923,3261,'_edit_lock','1567980760:7'),(2924,3261,'_edit_last','7'),(2925,3262,'_wp_attached_file','DEC-7-RESULTS.pdf'),(2926,3261,'inpost_gallery_data','1'),(2927,3263,'_menu_item_type','post_type'),(2928,3263,'_menu_item_menu_item_parent','0'),(2929,3263,'_menu_item_object_id','3261'),(2930,3263,'_menu_item_object','page'),(2931,3263,'_menu_item_target',''),(2932,3263,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2933,3263,'_menu_item_xfn',''),(2934,3263,'_menu_item_url',''),(2935,3267,'_wp_attached_file','12-Tuesday-Jan-8.pdf'),(2936,3269,'_wp_attached_file','13-Tuesday-Jan-15.pdf'),(2937,3277,'_wp_attached_file','Jan-25-Workout-Continuous-Ski.pdf'),(2957,3282,'_VenueOrigin','events-calendar'),(2958,3282,'_tribe_modified_fields','a:14:{s:12:\"_VenueOrigin\";d:1555231588;s:17:\"_EventShowMapLink\";d:1555231588;s:13:\"_EventShowMap\";d:1555231588;s:17:\"_VenueShowMapLink\";d:1555231589;s:13:\"_VenueShowMap\";d:1555231589;s:13:\"_VenueAddress\";d:1555231589;s:10:\"_VenueCity\";d:1555231589;s:13:\"_VenueCountry\";d:1555231590;s:14:\"_VenueProvince\";d:1555231590;s:11:\"_VenueState\";d:1555231590;s:9:\"_VenueZip\";d:1555231591;s:11:\"_VenuePhone\";d:1555231591;s:9:\"_VenueURL\";d:1555231591;s:19:\"_VenueStateProvince\";d:1555231591;}'),(2959,3282,'_EventShowMapLink','1'),(2960,3282,'_EventShowMap','1'),(2961,3282,'_VenueShowMapLink','1'),(2962,3282,'_VenueShowMap','1'),(2963,3282,'_VenueAddress','Meet at P10 to hike up to the Cabin'),(2964,3282,'_VenueCity',''),(2965,3282,'_VenueCountry',''),(2966,3282,'_VenueProvince',''),(2967,3282,'_VenueState',''),(2968,3282,'_VenueZip',''),(2969,3282,'_VenuePhone',''),(2970,3282,'_VenueURL',''),(2971,3282,'_VenueStateProvince',''),(2973,3283,'_OrganizerOrigin','events-calendar'),(2974,3283,'_tribe_modified_fields','a:6:{s:16:\"_OrganizerOrigin\";d:1555231592;s:21:\"_OrganizerOrganizerID\";d:1555231593;s:15:\"_OrganizerPhone\";d:1555231593;s:17:\"_OrganizerWebsite\";d:1555231593;s:15:\"_OrganizerEmail\";d:1555232014;s:10:\"_edit_last\";d:1555232014;}'),(2975,3283,'_OrganizerOrganizerID','0'),(2976,3283,'_OrganizerPhone',''),(2977,3283,'_OrganizerWebsite',''),(2978,3283,'_OrganizerEmail',''),(3012,3283,'_edit_lock','1555246298:7'),(3013,3283,'_edit_last','7'),(3017,3288,'_wp_attached_file','080429.jpg'),(3018,3288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:560;s:4:\"file\";s:10:\"080429.jpg\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3041,3301,'gd_calendar_gd_calendar_select_events_by','event_category'),(3042,3301,'gd_calendar_gd_calendar_cat','a:0:{}'),(3043,3301,'gd_calendar_gd_calendar_view_type','a:2:{i:0;i:0;i:1;i:1;}'),(3044,3301,'gd_calendar_gd_calendar_theme','0'),(3045,3303,'gd_calendar_gd_venues_address','1201 South Figueroa Street, Los Angeles, California 90015, United States'),(3046,3303,'gd_calendar_gd_venues_latitude','34.0413606'),(3047,3303,'gd_calendar_gd_venues_longitude','-118.2697771'),(3048,3304,'gd_calendar_gd_organizers_organized_by','John Smith'),(3049,3304,'gd_calendar_gd_organizers_organizer_address','Centre de conventions de Los Angeles, South Figueroa Street, Los Angeles, Californie'),(3050,3304,'gd_calendar_gd_organizers_phone','+12016543210'),(3051,3304,'gd_calendar_gd_organizers_website','https://grandwp.com'),(3052,3304,'gd_calendar_gd_organizers_organizer_email','admin@grandwp.com'),(3053,3302,'gd_calendar_gd_events_start_date','04/14/2019 04:40 pm'),(3054,3302,'gd_calendar_gd_events_end_date','04/15/2019 12:00 am'),(3055,3302,'gd_calendar_gd_events_event_venue','3303'),(3056,3302,'gd_calendar_gd_events_event_organizer','a:1:{i:0;i:3304;}'),(3057,3302,'gd_calendar_gd_events_date_range','a:0:{}'),(3058,3302,'gd_calendar_gd_events_organizer','3304'),(3059,3302,'_edit_lock','1555260024:7'),(3060,3306,'ecwd_added_shortcode','1'),(3061,3308,'_edit_lock','1555260928:7'),(3062,3308,'_edit_last','7'),(3063,3309,'ecwd_organizer_meta_phone',''),(3064,3309,'ecwd_organizer_meta_website',''),(3065,3310,'ecwd_venue_show_map','no'),(3066,3310,'ecwd_venue_location',''),(3067,3310,'ecwd_venue_lat_long',''),(3068,3310,'ecwd_map_zoom',''),(3069,3310,'ecwd_venue_meta_phone',''),(3070,3310,'ecwd_venue_meta_website',''),(3071,3308,'ecwd_event_date_from','2019/04/26 09:30'),(3072,3308,'ecwd_event_date_to','2019/04/26 13:00'),(3073,3308,'ecwd_event_calendars','a:1:{i:0;s:4:\"3306\";}'),(3074,3308,'ecwd_event_venue','3310'),(3075,3308,'ecwd_event_location',''),(3076,3308,'ecwd_lat_long',''),(3077,3308,'ecwd_event_show_map','no'),(3078,3308,'ecwd_map_zoom',''),(3079,3308,'ecwd_event_organizers','a:2:{i:0;s:14:\"{organizer_id}\";i:1;s:4:\"3309\";}'),(3080,3308,'ecwd_event_url',''),(3081,3308,'ecwd_event_video',''),(3082,3308,'ecwd_event_repeat_event','no_repeat'),(3083,3308,'ecwd_event_day','a:0:{}'),(3084,3308,'ecwd_event_repeat_how',''),(3085,3308,'ecwd_event_repeat_month_on_days','1'),(3086,3308,'ecwd_event_repeat_year_on_days','1'),(3087,3308,'ecwd_event_repeat_repeat_until',''),(3088,3306,'_edit_lock','1555261051:7'),(3089,3306,'_edit_last','7'),(3090,3306,'ecwd_calendar_theme','calendar'),(3091,3306,'_wp_old_slug','calendar'),(3092,3311,'_wp_attached_file','170425_Fortune-and-Burma_0099.jpg'),(3093,3311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:738;s:4:\"file\";s:33:\"170425_Fortune-and-Burma_0099.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"170425_Fortune-and-Burma_0099-800x590.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:590;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"170425_Fortune-and-Burma_0099-768x567.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:567;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:10:\"1493131615\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3108,2354,'classic-editor-remember','block-editor'),(3111,3317,'classic-editor-remember','classic-editor'),(3112,3317,'_edit_lock','1584299445:7'),(3113,3317,'_edit_last','7'),(3114,3317,'inpost_gallery_data','1'),(3115,3318,'_menu_item_type','post_type'),(3116,3318,'_menu_item_menu_item_parent','0'),(3117,3318,'_menu_item_object_id','3317'),(3118,3318,'_menu_item_object','page'),(3119,3318,'_menu_item_target',''),(3120,3318,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3121,3318,'_menu_item_xfn',''),(3122,3318,'_menu_item_url',''),(3162,3331,'_wp_attached_file','160831_-Gats-Bike-Ride-13-2.jpg'),(3163,3331,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:31:\"160831_-Gats-Bike-Ride-13-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"160831_-Gats-Bike-Ride-13-2-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"160831_-Gats-Bike-Ride-13-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:10:\"1472638152\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3195,983,'classic-editor-remember','classic-editor'),(3209,3355,'_menu_item_type','post_type'),(3211,3355,'_menu_item_menu_item_parent','0'),(3214,3355,'_menu_item_object_id','3352'),(3217,3355,'_menu_item_object','page'),(3220,3355,'_menu_item_target',''),(3223,3355,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3226,3355,'_menu_item_xfn',''),(3229,3355,'_menu_item_url',''),(3251,3352,'_edit_lock','1567373892:7'),(3252,3352,'classic-editor-remember','classic-editor'),(3253,3352,'_edit_last','7'),(3254,3352,'inpost_gallery_data','1'),(3274,2678,'classic-editor-remember','classic-editor'),(3280,319,'classic-editor-remember','block-editor'),(3281,3261,'classic-editor-remember','block-editor'),(3289,3128,'classic-editor-remember','classic-editor'),(3300,1054,'classic-editor-remember','classic-editor'),(3301,3195,'classic-editor-remember','classic-editor'),(3302,3401,'_wp_attached_file','180902_BHR.jpg'),(3303,3401,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:1000;s:6:\"height\";i:429;s:4:\"file\";s:14:\"180902_BHR.jpg\";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:10:\"1535878434\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3304,3402,'_wp_attached_file','081018.jpg'),(3305,3402,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:600;s:6:\"height\";i:398;s:4:\"file\";s:10:\"081018.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3306,346,'classic-editor-remember','classic-editor'),(3307,93,'classic-editor-remember','classic-editor'),(3320,3426,'_wp_attached_file','190920_Sofits-Send-Off_02.jpg'),(3321,3426,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:1000;s:6:\"height\";i:552;s:4:\"file\";s:29:\"190920_Sofits-Send-Off_02.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3322,3429,'_wp_attached_file','111003_comparison.jpg'),(3323,3429,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:525;s:4:\"file\";s:21:\"111003_comparison.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3324,3430,'_wp_attached_file','141006_View-to-Fortune.jpg'),(3325,3430,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:489;s:4:\"file\";s:26:\"141006_View-to-Fortune.jpg\";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:10:\"1412586155\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3338,2693,'classic-editor-remember','classic-editor'),(3339,2446,'classic-editor-remember','block-editor'),(3344,3448,'_wp_attached_file','190902_Sofits-200908.jpg'),(3345,3448,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:474;s:4:\"file\";s:24:\"190902_Sofits-200908.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3346,3449,'_wp_attached_file','190902_Sofits-200909.jpg'),(3347,3449,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:478;s:4:\"file\";s:24:\"190902_Sofits-200909.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3348,3450,'_wp_attached_file','190902_Sofits-200910.jpg'),(3349,3450,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:470;s:4:\"file\";s:24:\"190902_Sofits-200910.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3350,3451,'_wp_attached_file','190902_Sofits-201001.jpg'),(3351,3451,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:505;s:4:\"file\";s:24:\"190902_Sofits-201001.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3352,3452,'_wp_attached_file','190902_Sofits-201002.jpg'),(3353,3452,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:489;s:4:\"file\";s:24:\"190902_Sofits-201002.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3354,3453,'_wp_attached_file','190902_Sofits-201003.jpg'),(3355,3453,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:544;s:4:\"file\";s:24:\"190902_Sofits-201003.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3356,3454,'_wp_attached_file','190902_Sofits-201006.jpg'),(3357,3454,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:515;s:4:\"file\";s:24:\"190902_Sofits-201006.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3358,3455,'_wp_attached_file','190902_Sofits-201007.jpg'),(3359,3455,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:504;s:4:\"file\";s:24:\"190902_Sofits-201007.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3374,3460,'_edit_lock','1571081342:7'),(3375,3460,'classic-editor-remember','block-editor'),(3376,3461,'_wp_attached_file','190902_Sofits-200908-1.jpg'),(3377,3461,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:474;s:4:\"file\";s:26:\"190902_Sofits-200908-1.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3378,3462,'_wp_attached_file','190902_Sofits-200909-1.jpg'),(3379,3462,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:478;s:4:\"file\";s:26:\"190902_Sofits-200909-1.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3380,3463,'_wp_attached_file','190902_Sofits-200910-1.jpg'),(3381,3463,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:470;s:4:\"file\";s:26:\"190902_Sofits-200910-1.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3382,3464,'_wp_attached_file','190902_Sofits-200909-2.jpg'),(3383,3464,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:478;s:4:\"file\";s:26:\"190902_Sofits-200909-2.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3384,3465,'_wp_attached_file','190902_Sofits-201002-1.jpg'),(3385,3465,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:489;s:4:\"file\";s:26:\"190902_Sofits-201002-1.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3386,3467,'_wp_attached_file','190902_Sofits-200910-2.jpg'),(3387,3466,'_wp_attached_file','190902_Sofits-201001-1.jpg'),(3388,3470,'_wp_attached_file','190902_Sofits-201003-1.jpg'),(3389,3469,'_wp_attached_file','190902_Sofits-201007-1.jpg'),(3390,3468,'_wp_attached_file','190902_Sofits-201006-1.jpg'),(3391,3466,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:505;s:4:\"file\";s:26:\"190902_Sofits-201001-1.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3392,3467,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:470;s:4:\"file\";s:26:\"190902_Sofits-200910-2.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3393,3469,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:504;s:4:\"file\";s:26:\"190902_Sofits-201007-1.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3394,3470,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:544;s:4:\"file\";s:26:\"190902_Sofits-201003-1.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3395,3468,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:515;s:4:\"file\";s:26:\"190902_Sofits-201006-1.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3396,3471,'_wp_attached_file','190902_Sofits-201001-2.jpg'),(3397,3471,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:505;s:4:\"file\";s:26:\"190902_Sofits-201001-2.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3398,3472,'_wp_attached_file','190902_Sofits-201002-2.jpg'),(3399,3472,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:489;s:4:\"file\";s:26:\"190902_Sofits-201002-2.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3400,3473,'_wp_attached_file','190902_Sofits-201003-2.jpg'),(3401,3473,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:544;s:4:\"file\";s:26:\"190902_Sofits-201003-2.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3402,3474,'_wp_attached_file','190902_Sofits-201006-2.jpg'),(3403,3474,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:515;s:4:\"file\";s:26:\"190902_Sofits-201006-2.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3404,3475,'_wp_attached_file','190902_Sofits-201007-2.jpg'),(3405,3475,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:504;s:4:\"file\";s:26:\"190902_Sofits-201007-2.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3406,3476,'_menu_item_type','post_type'),(3407,3476,'_menu_item_menu_item_parent','0'),(3408,3476,'_menu_item_object_id','3460'),(3409,3476,'_menu_item_object','page'),(3410,3476,'_menu_item_target',''),(3411,3476,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3412,3476,'_menu_item_xfn',''),(3413,3476,'_menu_item_url',''),(3414,3460,'_edit_last','7'),(3415,3460,'inpost_gallery_data','1'),(3418,3488,'_wp_attached_file','190902_Sofits-201104.jpg'),(3419,3488,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:490;s:4:\"file\";s:24:\"190902_Sofits-201104.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3420,3489,'_wp_attached_file','190902_Sofits-201105.jpg'),(3421,3489,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:554;s:4:\"file\";s:24:\"190902_Sofits-201105.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3422,3490,'_wp_attached_file','190902_Sofits-201111.jpg'),(3423,3490,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:500;s:6:\"height\";i:666;s:4:\"file\";s:24:\"190902_Sofits-201111.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3424,3491,'_wp_attached_file','190902_Sofits-201112.jpg'),(3425,3491,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:611;s:4:\"file\";s:24:\"190902_Sofits-201112.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3426,3492,'_wp_attached_file','190902_Sofits-201113.jpg'),(3427,3492,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:500;s:6:\"height\";i:684;s:4:\"file\";s:24:\"190902_Sofits-201113.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3428,3493,'_wp_attached_file','190902_Sofits-201114.jpg'),(3429,3493,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:499;s:6:\"height\";i:629;s:4:\"file\";s:24:\"190902_Sofits-201114.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3430,3494,'_wp_attached_file','190902_Sofits-201115.jpg'),(3431,3494,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:613;s:4:\"file\";s:24:\"190902_Sofits-201115.jpg\";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:10:\"1323441487\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3432,3495,'_wp_attached_file','190902_Sofits-201216.jpg'),(3433,3495,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:469;s:4:\"file\";s:24:\"190902_Sofits-201216.jpg\";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:10:\"1327065847\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3434,3496,'_wp_attached_file','190902_Sofits-201217.jpg'),(3435,3496,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:479;s:4:\"file\";s:24:\"190902_Sofits-201217.jpg\";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:10:\"1327748287\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3436,3497,'_wp_attached_file','190902_Sofits-201225.jpg'),(3437,3497,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:468;s:4:\"file\";s:24:\"190902_Sofits-201225.jpg\";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:10:\"1354286435\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3438,3498,'_wp_attached_file','190902_Sofits-201226.jpg'),(3439,3498,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:800;s:6:\"height\";i:556;s:4:\"file\";s:24:\"190902_Sofits-201226.jpg\";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:10:\"1354885426\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3440,3504,'_wp_attached_file','181028_First-Snow_10.jpg'),(3441,3504,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:24:\"181028_First-Snow_10.jpg\";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:10:\"1540726229\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3442,3513,'_wp_attached_file','061114.jpg'),(3443,3513,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:700;s:6:\"height\";i:510;s:4:\"file\";s:10:\"061114.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3444,3516,'_wp_attached_file','060101.jpg'),(3445,3516,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:750;s:6:\"height\";i:509;s:4:\"file\";s:10:\"060101.jpg\";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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3461,3532,'_wp_attached_file','191025_Sofits-Penguin_1.jpg'),(3462,3532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:27:\"191025_Sofits-Penguin_1.jpg\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3463,3537,'_wp_attached_file','191119_Sofits-At-Nakkertok.jpg'),(3464,3537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:30:\"191119_Sofits-At-Nakkertok.jpg\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3465,3538,'_wp_attached_file','191121_Nakkertok01.jpg'),(3466,3538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:764;s:4:\"file\";s:22:\"191121_Nakkertok01.jpg\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3467,3539,'_wp_attached_file','191122_Sofits-Post-Rain-Nakkertok_2.jpg'),(3468,3539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:39:\"191122_Sofits-Post-Rain-Nakkertok_2.jpg\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3471,3542,'_wp_attached_file','191122_Sofits-Post-Rain-Nakkertok181130.jpg'),(3472,3542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:630;s:4:\"file\";s:43:\"191122_Sofits-Post-Rain-Nakkertok181130.jpg\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3473,3544,'_wp_attached_file','191129_Sofits-Nakkertok1.jpg'),(3474,3544,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:587;s:4:\"file\";s:28:\"191129_Sofits-Nakkertok1.jpg\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}'),(3475,3547,'_wp_attached_file','191213_Sofits-Ruins_21.jpg'),(3476,3547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:648;s:4:\"file\";s:26:\"191213_Sofits-Ruins_21.jpg\";s:5:\"sizes\";a:0:{}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:\"0\";s:8:\"keywords\";a:0:{}}}');
/*!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 NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`),
  KEY `post_name` (`post_name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3563 DEFAULT CHARSET=latin1;
/*!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 (63,7,'2013-08-19 20:56:05','2013-08-20 00:56:05','','Home','','publish','open','open','','home','','','2013-08-19 20:58:14','2013-08-20 00:58:14','',0,'https://sofits.ca/?p=63',1,'nav_menu_item','',0),(65,7,'2013-08-19 20:56:05','2013-08-20 00:56:05',' ','','','publish','open','open','','65','','','2013-08-19 20:58:14','2013-08-20 00:58:14','',0,'https://sofits.ca/?p=65',3,'nav_menu_item','',0),(74,7,'2013-08-19 21:16:53','2013-08-20 01:16:53',' ','','','publish','open','open','','74','','','2013-08-19 21:16:53','2013-08-20 01:16:53','',0,'https://sofits.ca/2013/08/19/74/',10,'nav_menu_item','',0),(93,7,'2013-08-19 23:06:27','2013-08-20 03:06:27','<h2><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\"> </span></span></h2>\r\n&nbsp;\r\n\r\n<strong>Silver Spoon:\r\n</strong>\r\n\r\n<strong>Tay Valley Loppet</strong>\r\n\r\n<strong>Opeongo Loppet:</strong>\r\n\r\n<strong>Winterlude Triathlon:</strong>   <strong>\r\n</strong>\r\n\r\n<strong>Viking Loppet:\r\n</strong>\r\n\r\n<strong>Canadian Ski Marathon:</strong>\r\n\r\n<strong>Gatineau Loppet:</strong>  <strong>\r\n</strong>\r\n\r\n<strong>Jackrabbit Classic</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\" rel=\"noopener noreferrer\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES & EVENTS','','publish','open','open','','xc-races-and-events','','','2020-03-15 19:18:52','2020-03-15 23:18:52','',0,'https://sofits.ca/?page_id=93',0,'page','',0),(94,7,'2013-08-19 23:06:27','2013-08-20 03:06:27',' ','','','publish','open','open','','94','','','2013-08-19 23:06:27','2013-08-20 03:06:27','',0,'https://sofits.ca/2013/08/19/94/',11,'nav_menu_item','',0),(95,7,'2013-08-19 23:06:27','2013-08-20 03:06:27','','RACES and EVENTS','','inherit','open','open','','93-revision-v1','','','2013-08-19 23:06:27','2013-08-20 03:06:27','',93,'https://sofits.ca/2013/08/19/93-revision-v1/',0,'revision','',0),(109,7,'2013-08-20 20:38:16','2013-08-21 00:38:16','','Meech Ski with Rosy_0006','','inherit','open','open','','meech-ski-with-rosy_0006','','','2014-09-23 23:13:57','2014-09-24 03:13:57','',0,'https://sofits.ca/wp-content/uploads/2013/08/Meech-Ski-with-Rosy_0006.jpg',0,'attachment','image/jpeg',0),(120,7,'2013-08-20 20:49:49','2013-08-21 00:49:49','Loppets, time trials, \"epic skis\", marathons, workshops, etc.','RACES and EVENTS','','inherit','open','open','','93-revision-v1','','','2013-08-20 20:49:49','2013-08-21 00:49:49','',93,'https://sofits.ca/2013/08/20/93-revision-v1/',0,'revision','',0),(266,7,'2013-09-03 15:52:18','2013-09-03 19:52:18','','Weeds','','inherit','closed','closed','','weeds','','','2013-09-03 15:52:18','2013-09-03 19:52:18','',0,'https://sofits.ca/wp-content/uploads/2013/09/Weeds.jpg',0,'attachment','image/jpeg',0),(288,7,'2013-09-04 07:59:51','2013-09-04 11:59:51',' ','','','publish','closed','closed','','288','','','2013-09-04 07:59:51','2013-09-04 11:59:51','',0,'https://sofits.ca/2013/09/04/288/',17,'nav_menu_item','',0),(319,7,'2019-09-07 07:44:06','2019-09-07 11:44:06','&nbsp;\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SKI-FIRST-OR-ALSO-SKIS.pdf\">SKI FIRST THEN RUNS OR ALSO SKIS</a>&nbsp;</strong>(read this first, then open the appropriate BUILD document.)\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/BUILD-1-for-ALSO-SKIS-.pdf\">BUILD 1 for ALSO SKIS, weeks of Dec 9 - 30</a></strong>\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SOFITS-GENERIC-2013-BUILD-1.pdf\">BUILD 1 for SKIS FIRST</a>&nbsp;</strong>\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>&nbsp; &nbsp; </strong>Just one sample from Joe Friel (see Reading list in the next article)\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\n\n&nbsp;\n\n&nbsp;','CREATE A PLAN (ask if you would like the password)','','private','open','closed','','training-plans','','','2019-09-08 18:12:01','2019-09-08 22:12:01','',0,'https://sofits.ca/?page_id=319',0,'page','',0),(321,7,'2013-09-07 07:36:26','2013-09-07 11:36:26','<a href=\"https://sofits.ca/wp-content/uploads/2013/09/SOFITS-GENERIC-BASE1-Sept-to-Oct-20.pdf\">SOFITS GENERIC BASE1 Sept to Oct 20</a>','Generic Training Plans','','inherit','closed','closed','','319-revision-v1','','','2013-09-07 07:36:26','2013-09-07 11:36:26','',319,'https://sofits.ca/2013/09/07/319-revision-v1/',0,'revision','',0),(322,7,'2013-09-07 07:44:06','2013-09-07 11:44:06',' ','','','publish','closed','closed','','322','','','2013-09-07 07:44:06','2013-09-07 11:44:06','',0,'https://sofits.ca/2013/09/07/322/',18,'nav_menu_item','',0),(323,7,'2013-09-07 07:44:06','2013-09-07 11:44:06','This is a very general outline of things to incorporate during each week\'s training.  How you do it is up to you, and the hours put in will vary from person to person, depending on your fitness level and previous experience.  It is important to start \"where you are at\", and to alternate harder and easier days, as well as harder and easier weeks.  Plan one day off a week.   The Friday sessions will include one strength workout, plyometrics, technique drills and of course hill work and other intensity training.   The specifics of each training session will be posted after we have met, in case you have missed it and wish to do it on your own.\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/09/SOFITS-GENERIC-BASE1-Sept-to-Oct-20.pdf\">SOFITS GENERIC BASE1 Sept 9 to Oct 20</a>','GENERIC TRAINING PLANS','','inherit','closed','closed','','319-revision-v1','','','2013-09-07 07:44:06','2013-09-07 11:44:06','',319,'https://sofits.ca/2013/09/07/319-revision-v1/',0,'revision','',0),(325,7,'2013-09-07 07:46:45','2013-09-07 11:46:45','This is a very general outline of things to incorporate during each week\'s training.  How you do it is up to you, and the hours put in will vary from person to person, depending on your fitness level and previous experience.  It is important to start \"where you are at\", and to alternate harder and easier days, as well as harder and easier weeks.  Plan one day off a week.   The Friday sessions will include one strength workout, plyometrics, technique drills and of course hill work and other intensity training.   The specifics of each training session will be posted after we have met, in case you have missed it and wish to do it on your own.\r\n\r\n<strong><span style=\"color: #0000ff;\"><a href=\"https://sofits.ca/wp-content/uploads/2013/09/SOFITS-GENERIC-BASE1-Sept-to-Oct-20.pdf\"><span style=\"color: #0000ff;\">GENERIC  TRAINING PLAN BASE 1 Sept 7 to Oct 20</span></a></span></strong>','GENERIC TRAINING PLANS','','inherit','closed','closed','','319-revision-v1','','','2013-09-07 07:46:45','2013-09-07 11:46:45','',319,'https://sofits.ca/2013/09/07/319-revision-v1/',0,'revision','',0),(346,7,'2014-09-30 08:35:27','2014-09-30 12:35:27','<img class=\"alignnone size-full wp-image-1536\" src=\"https://sofits.ca/wp-content/uploads/141003_Sofits4.jpg\" alt=\"\" width=\"800\" height=\"587\" />Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2,  ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">Be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds.Ski Striding in the fall and classic or skate skiing when the snow arrives.\r\n</span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just walking or running with poles, it doesn’t count ! Here is what ski striding/ski-bounding looks like:\r\n</span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and an impressive variety of strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: skiers usually do not use pacing as runners do, as  snow conditions are highly variable )</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before heading to Les Saisons for coffee with the group or heading home.\r\n</span></span></span></span>','FALL TRAINING','','publish','closed','closed','','fall-training','','','2019-09-17 10:36:06','2019-09-17 14:36:06','',0,'https://sofits.ca/?page_id=346',0,'page','',0),(347,7,'2013-09-10 08:35:27','2013-09-10 12:35:27',' ','','','publish','closed','closed','','347','','','2013-09-10 08:35:27','2013-09-10 12:35:27','',0,'https://sofits.ca/2013/09/10/347/',17,'nav_menu_item','',0),(348,7,'2013-09-10 08:35:27','2013-09-10 12:35:27','Each week\'s specific workout will be posted here so that you can do it on your own if you happened to miss the class.','Weekly Workout','','inherit','closed','closed','','346-revision-v1','','','2013-09-10 08:35:27','2013-09-10 12:35:27','',346,'https://sofits.ca/2013/09/10/346-revision-v1/',0,'revision','',0),(349,7,'2013-09-10 08:36:15','2013-09-10 12:36:15','Each week\'s specific workout will be posted here so that you can do it on your own if you happened to miss the class.','WEEKLY WORKOUT','','inherit','closed','closed','','346-revision-v1','','','2013-09-10 08:36:15','2013-09-10 12:36:15','',346,'https://sofits.ca/2013/09/10/346-revision-v1/',0,'revision','',0),(363,7,'2013-09-11 07:54:53','2013-09-11 11:54:53',' ','','','publish','closed','closed','','363','','','2013-09-11 07:54:53','2013-09-11 11:54:53','',0,'https://sofits.ca/2013/09/11/363/',19,'nav_menu_item','',0),(422,7,'2013-09-20 14:49:14','2013-09-20 18:49:14','','Sept 27','','publish','closed','closed','','sept-27','','','2013-09-20 14:49:14','2013-09-20 18:49:14','',0,'https://sofits.ca/?post_type=event&#038;p=422',0,'event','',0),(423,7,'2013-09-20 14:49:14','2013-09-20 18:49:14','','Lac Bourgeois Parking Lot','','publish','closed','closed','','lac-bourgeois-parking-lot','','','2013-09-20 14:49:14','2013-09-20 18:49:14','',0,'https://sofits.ca/locations/lac-bourgeois-parking-lot/',0,'location','',0),(491,7,'2013-09-21 13:05:27','2013-09-21 17:05:27','This is a very general outline of things to incorporate during each week\'s training.  How you do it is up to you, and the hours put in will vary from person to person, depending on your fitness level and previous experience.  It is important to start \"where you are at\", and to alternate harder and easier days, as well as harder and easier weeks.  Plan one day off a week.   The Friday sessions will include one strength workout, plyometrics, technique drills and of course hill work and other intensity training.   The specifics of each training session will be posted after we have met, in case you have missed it and wish to do it on your own.\r\n\r\n<strong><span style=\"color: #0000ff;\"><a href=\"https://sofits.ca/wp-content/uploads/2013/09/SOFITS-GENERIC-BASE1-Sept-to-Oct-20.pdf\"><span style=\"color: #0000ff;\">GENERIC  TRAINING PLAN BASE 1 Sept 7 to Oct 20</span></a></span></strong>\r\n\r\n[yop_poll id=\"11\"]','GENERIC TRAINING PLANS','','inherit','closed','closed','','319-revision-v1','','','2013-09-21 13:05:27','2013-09-21 17:05:27','',319,'https://sofits.ca/2013/09/21/319-revision-v1/',0,'revision','',0),(492,7,'2013-09-21 13:06:16','2013-09-21 17:06:16','This is a very general outline of things to incorporate during each week\'s training.  How you do it is up to you, and the hours put in will vary from person to person, depending on your fitness level and previous experience.  It is important to start \"where you are at\", and to alternate harder and easier days, as well as harder and easier weeks.  Plan one day off a week.   The Friday sessions will include one strength workout, plyometrics, technique drills and of course hill work and other intensity training.   The specifics of each training session will be posted after we have met, in case you have missed it and wish to do it on your own.\r\n\r\n<strong><span style=\"color: #0000ff;\"><a href=\"https://sofits.ca/wp-content/uploads/2013/09/SOFITS-GENERIC-BASE1-Sept-to-Oct-20.pdf\"><span style=\"color: #0000ff;\">GENERIC  TRAINING PLAN BASE 1 Sept 7 to Oct 20</span></a></span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"11\"]','GENERIC TRAINING PLANS','','inherit','closed','closed','','319-revision-v1','','','2013-09-21 13:06:16','2013-09-21 17:06:16','',319,'https://sofits.ca/2013/09/21/319-revision-v1/',0,'revision','',0),(493,7,'2013-09-21 13:07:44','2013-09-21 17:07:44','This is a very general outline of things to incorporate during each week\'s training.  How you do it is up to you, and the hours put in will vary from person to person, depending on your fitness level and previous experience.  It is important to start \"where you are at\", and to alternate harder and easier days, as well as harder and easier weeks.  Plan one day off a week.   The Friday sessions will include one strength workout, plyometrics, technique drills and of course hill work and other intensity training.   The specifics of each training session will be posted after we have met, in case you have missed it and wish to do it on your own.\r\n\r\n<strong><span style=\"color: #0000ff;\"><a href=\"https://sofits.ca/wp-content/uploads/2013/09/SOFITS-GENERIC-BASE1-Sept-to-Oct-20.pdf\"><span style=\"color: #0000ff;\">GENERIC  TRAINING PLAN BASE 1 Sept 7 to Oct 20</span></a></span></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"11\"]','GENERIC TRAINING PLANS','','inherit','closed','closed','','319-revision-v1','','','2013-09-21 13:07:44','2013-09-21 17:07:44','',319,'https://sofits.ca/2013/09/21/319-revision-v1/',0,'revision','',0),(496,7,'2013-09-21 14:36:08','2013-09-21 18:36:08','[yop_poll id=\"12\"]','WEEKLY WORKOUT','','inherit','closed','closed','','346-revision-v1','','','2013-09-21 14:36:08','2013-09-21 18:36:08','',346,'https://sofits.ca/2013/09/21/346-revision-v1/',0,'revision','',0),(497,7,'2013-09-21 14:37:47','2013-09-21 18:37:47','[yop_poll id=\"12\"]','WHAT YOU MISSED THIS WEEK','','inherit','closed','closed','','346-revision-v1','','','2013-09-21 14:37:47','2013-09-21 18:37:47','',346,'https://sofits.ca/2013/09/21/346-revision-v1/',0,'revision','',0),(498,7,'2019-09-17 10:34:31','2019-09-17 14:34:31','Many of our practices will be in a format similar to  this:\n\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2,  ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\n<span style=\"font-size: medium;\">Be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\n<p lang=\"en-US\">**********************************************************************************************************</p>\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\n\n*********************************************************************************************************\n\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds.Ski Striding in the fall and classic or skate skiing when the snow arrives.\n</span></span></span></span>\n\n*********************************************************************************************************\n\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just walking or running with poles, it doesn’t count ! Here is what ski striding/ski-bounding looks like:\n</span></span></span></span>\n\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and an impressive variety of strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: skiers usually do not use pacing as runners do, as  snow conditions are highly variable )</span></span></span></p>\n<p lang=\"en-US\">*********************************************************************************************************</p>\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before heading to Les Saisons for coffee with the group or heading home.\n</span></span></span></span>','FALL TRAINING','','inherit','closed','closed','','346-autosave-v1','','','2019-09-17 10:34:31','2019-09-17 14:34:31','',346,'https://sofits.ca/2013/09/21/346-autosave-v1/',0,'revision','',0),(500,7,'2013-09-21 14:44:10','2013-09-21 18:44:10','<a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-19.pdf\">Workout of Sept 19</a>\r\n\r\n[yop_poll id=\"12\"]','WHAT YOU MISSED THIS WEEK','','inherit','closed','closed','','346-revision-v1','','','2013-09-21 14:44:10','2013-09-21 18:44:10','',346,'https://sofits.ca/2013/09/21/346-revision-v1/',0,'revision','',0),(501,7,'2013-09-21 14:44:47','2013-09-21 18:44:47','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-19.pdf\">Workout of Sept 19</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','WHAT YOU MISSED THIS WEEK','','inherit','closed','closed','','346-revision-v1','','','2013-09-21 14:44:47','2013-09-21 18:44:47','',346,'https://sofits.ca/2013/09/21/346-revision-v1/',0,'revision','',0),(502,7,'2013-09-21 14:47:26','2013-09-21 18:47:26','','Workout of September 19 2013','What you missed','inherit','closed','closed','','workout-of-september-19-2013','','','2013-09-21 14:47:26','2013-09-21 18:47:26','',346,'https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf',0,'attachment','application/pdf',0),(503,7,'2013-09-21 14:48:28','2013-09-21 18:48:28','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Workout of September 19 2013</a> </strong>\r\n\r\n[yop_poll id=\"12\"]','IN CASE YOU MISSED A WORKOUT','','inherit','closed','closed','','346-revision-v1','','','2013-09-21 14:48:28','2013-09-21 18:48:28','',346,'https://sofits.ca/2013/09/21/346-revision-v1/',0,'revision','',0),(504,7,'2013-09-21 14:48:36','2013-09-21 18:48:36','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Workout of September 19 2013</a> </strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','IN CASE YOU MISSED A WORKOUT','','inherit','closed','closed','','346-revision-v1','','','2013-09-21 14:48:36','2013-09-21 18:48:36','',346,'https://sofits.ca/2013/09/21/346-revision-v1/',0,'revision','',0),(505,7,'2013-09-21 14:49:08','2013-09-21 18:49:08','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a> </strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','IN CASE YOU MISSED A WORKOUT','','inherit','closed','closed','','346-revision-v1','','','2013-09-21 14:49:08','2013-09-21 18:49:08','',346,'https://sofits.ca/2013/09/21/346-revision-v1/',0,'revision','',0),(520,7,'2013-09-23 16:50:59','2013-09-23 20:50:59','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a> </strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','closed','closed','','346-revision-v1','','','2013-09-23 16:50:59','2013-09-23 20:50:59','',346,'https://sofits.ca/2013/09/23/346-revision-v1/',0,'revision','',0),(521,7,'2013-09-23 17:11:52','2013-09-23 21:11:52','[yop_poll id=\"13\"]','RACES and EVENTS','','inherit','closed','closed','','93-revision-v1','','','2013-09-23 17:11:52','2013-09-23 21:11:52','',93,'https://sofits.ca/2013/09/23/93-revision-v1/',0,'revision','',0),(542,7,'2013-09-12 20:54:45','2013-09-13 00:54:45','I am reposting this - although you hopefully all read it when it was first  posted  in early September - note #6 in particular.  A couple of people have already missed 3 workouts since Thanksgiving (before that doesn\'t count as the sessions were on Thursdays).\r\n\r\n1.    The 22 week season is  periodized to peak and end in early February.  It will build from week to week.  Although training ends in mid February, there will likely be at least 6 more weeks of great skiing after that for group outings.\r\n\r\n2.    Each weekly workout and a generic plan of other timely workouts for that week will be posted on the website . We can arrange a group meeting for those who wish to have help personalizing the plans.\r\n\r\n3.    There will be 3 or 4 casual and fun time trials.\r\n\r\n4.    There will be one (or more)all-day clinic (including both skate and classic) at Nakkertok in January.\r\n\r\n5.    An epic ski is planned for Dec 27, in lieu of a workout.  In addition to scenery and a party afterwards, there will be components of a workout embedded into the long ski. Potluck to follow at my house.\r\n\r\n6.     There is a $15.00 fee to join, (enough to cover  website costs, keep my coaching credentials up to date and purchase small amounts of equipment).  After some deliberating, I have decided not to be “locked in” by charging  for each workout. <strong><span style=\"color: #000000;\">However if anyone  misses a total of 3 Friday workouts, then there will be a $10 penalty fee for any workout missed after that. </span></strong> If anyone misses 3 Fridays in a row and is not ill or traveling, they will be asked if they want to continue with the group.   Members are welcome to bring a guest, but the guest  must pay $10.  If you know you will be missing many of the sessions, please consider whether you really want to join this group.\r\n\r\n7.     Membership for Friday Dryland and Ski Training will be capped at around 20, with first dibs to those who participated in the dryland and ski training last year.  If a member offers some skills which I can use I may accept one or two more!\r\n\r\n8.     Each participant is required to contribute volunteer time and effort on behalf of the group.  See the  <a href=\"https://www.sofits.ca/co-op\">CO-OP</a>  link for some ideas.','ABOUT THIS YEAR','','publish','closed','closed','','for-this-year','','','2013-11-18 13:36:49','2013-11-18 18:36:49','',0,'https://sofits.ca/?p=542',0,'post','',0),(543,7,'2013-09-26 20:54:45','2013-09-27 00:54:45','Specific dates for the entire season are listed under WEEKLY GROUP TRAINING.\r\n\r\n1.    The 22 week season is  periodized to peak and end in early February.  It will build from week to week.  Although training ends in mid February, there will likely be at least 6 more weeks of great skiing after that for group outings.\r\n\r\n2.    Each weekly workout and a generic plan of other timely workouts for that week will be posted on the website . We can arrange a group meeting for those who wish to have help personalizing the plans.\r\n\r\n3.    There will be 3 or 4 casual and fun time trials.\r\n\r\n4.    There will be one (or more)all-day clinic (including both skate and classic) at Nakkertok in January.\r\n\r\n5.    An epic ski is planned for Dec 27, in lieu of a workout.  In addition to scenery and a party afterwards, there will be components of a workout embedded into the long ski. Potluck to follow at my house.\r\n\r\n6.     There is a $15.00 fee to join, (enough to cover  website costs, keep my coaching credentials up to date and purchase small amounts of equipment).  After some deliberating, I have decided not to be “locked in” by charging  for each workout. However if anyone  misses a total of 3 Friday workouts, then there will be a $10 penalty fee for any workout missed after that.  If anyone misses 3 Fridays in a row and is not ill or traveling, they will be asked if they want to continue with the group.   Members are welcome to bring a guest, but the guest  must pay $10.  If you know you will be missing many of the sessions, please consider whether you really want to join this group.\r\n\r\n7.     Membership for Friday Dryland and Ski Training will be capped at around 20, with first dibs to those who participated in the dryland and ski training last year.  If a member offers some skills which I can use I may accept one or two more!\r\n\r\n8.     Each participant is required to contribute volunteer time and effort on behalf of the group.  See the  <a href=\"https://www.sofits.ca/co-op\">CO-OP</a>  link for some ideas.','FOR THIS YEAR','','inherit','closed','closed','','542-revision-v1','','','2013-09-26 20:54:45','2013-09-27 00:54:45','',542,'https://sofits.ca/2013/09/26/542-revision-v1/',0,'revision','',0),(549,7,'2013-09-27 08:10:36','2013-09-27 12:10:36','After some thought I\'m experimenting with opening this site to comments.  With the controls we have in place (no search engines, and the  password) it\'s much more private than Facebook, and more importantly, things can be deleted if we wish - unlike Facebook.  Please keep comments  short, pithy and related directly to the post or page.  (Anything unrelated, personal or chatty will be deleted )','COMMENTS','','publish','open','closed','','comments','','','2013-09-27 08:14:55','2013-09-27 12:14:55','',0,'https://sofits.ca/?p=549',0,'post','',0),(550,7,'2013-09-27 08:10:36','2013-09-27 12:10:36','After some thought I\'m experimenting with opening this site to comments.  With the controls we have in place (no search engines, and the  password) it\'s much more private than Facebook, and more importantly, things can be deleted if we wish - unlike Facebook.  Please keep comments  short, pithy and related directly to the post or page.  Anything personal or chatty will be deleted.','COMMENTS','','inherit','open','closed','','549-revision-v1','','','2013-09-27 08:10:36','2013-09-27 12:10:36','',549,'https://sofits.ca/2013/09/27/549-revision-v1/',0,'revision','',0),(551,7,'2013-09-27 08:12:12','2013-09-27 12:12:12','After some thought I\'m experimenting with opening this site to comments.  With the controls we have in place (no search engines, and the  password) it\'s much more private than Facebook, and more importantly, things can be deleted if we wish - unlike Facebook.  Please keep comments  short, pithy and related directly to the post or page.  (Anything personal or chatty will be deleted )','COMMENTS','','inherit','open','closed','','549-autosave-v1','','','2013-09-27 08:12:12','2013-09-27 12:12:12','',549,'https://sofits.ca/2013/09/27/549-autosave-v1/',0,'revision','',0),(552,7,'2013-09-27 08:12:25','2013-09-27 12:12:25','After some thought I\'m experimenting with opening this site to comments.  With the controls we have in place (no search engines, and the  password) it\'s much more private than Facebook, and more importantly, things can be deleted if we wish - unlike Facebook.  Please keep comments  short, pithy and related directly to the post or page.  (Anything personal or chatty will be deleted )','COMMENTS','','inherit','open','closed','','549-revision-v1','','','2013-09-27 08:12:25','2013-09-27 12:12:25','',549,'https://sofits.ca/2013/09/27/549-revision-v1/',0,'revision','',0),(553,7,'2013-09-27 08:14:55','2013-09-27 12:14:55','After some thought I\'m experimenting with opening this site to comments.  With the controls we have in place (no search engines, and the  password) it\'s much more private than Facebook, and more importantly, things can be deleted if we wish - unlike Facebook.  Please keep comments  short, pithy and related directly to the post or page.  (Anything unrelated, personal or chatty will be deleted )','COMMENTS','','inherit','open','closed','','549-revision-v1','','','2013-09-27 08:14:55','2013-09-27 12:14:55','',549,'https://sofits.ca/2013/09/27/549-revision-v1/',0,'revision','',0),(554,7,'2013-09-27 08:15:34','2013-09-27 12:15:34','Specific dates for the entire season are listed under WEEKLY GROUP TRAINING.\r\n\r\n1.    The 22 week season is  periodized to peak and end in early February.  It will build from week to week.  Although training ends in mid February, there will likely be at least 6 more weeks of great skiing after that for group outings.\r\n\r\n2.    Each weekly workout and a generic plan of other timely workouts for that week will be posted on the website . We can arrange a group meeting for those who wish to have help personalizing the plans.\r\n\r\n3.    There will be 3 or 4 casual and fun time trials.\r\n\r\n4.    There will be one (or more)all-day clinic (including both skate and classic) at Nakkertok in January.\r\n\r\n5.    An epic ski is planned for Dec 27, in lieu of a workout.  In addition to scenery and a party afterwards, there will be components of a workout embedded into the long ski. Potluck to follow at my house.\r\n\r\n6.     There is a $15.00 fee to join, (enough to cover  website costs, keep my coaching credentials up to date and purchase small amounts of equipment).  After some deliberating, I have decided not to be “locked in” by charging  for each workout. However if anyone  misses a total of 3 Friday workouts, then there will be a $10 penalty fee for any workout missed after that.  If anyone misses 3 Fridays in a row and is not ill or traveling, they will be asked if they want to continue with the group.   Members are welcome to bring a guest, but the guest  must pay $10.  If you know you will be missing many of the sessions, please consider whether you really want to join this group.\r\n\r\n7.     Membership for Friday Dryland and Ski Training will be capped at around 20, with first dibs to those who participated in the dryland and ski training last year.  If a member offers some skills which I can use I may accept one or two more!\r\n\r\n8.     Each participant is required to contribute volunteer time and effort on behalf of the group.  See the  <a href=\"https://www.sofits.ca/co-op\">CO-OP</a>  link for some ideas.','ABOUT THIS YEAR','','inherit','open','closed','','542-revision-v1','','','2013-09-27 08:15:34','2013-09-27 12:15:34','',542,'https://sofits.ca/2013/09/27/542-revision-v1/',0,'revision','',0),(557,7,'2013-09-27 16:18:20','2013-09-27 20:18:20','','Workout of Sept 26 2013','','inherit','open','closed','','workout-of-sept-26-2013','','','2013-09-27 16:18:20','2013-09-27 20:18:20','',346,'https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf',0,'attachment','application/pdf',0),(558,7,'2013-09-27 16:19:31','2013-09-27 20:19:31','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  26 2013</a></strong>\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-09-27 16:19:31','2013-09-27 20:19:31','',346,'https://sofits.ca/2013/09/27/346-revision-v1/',0,'revision','',0),(560,7,'2013-09-27 16:20:39','2013-09-27 20:20:39','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  26 2013</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-09-27 16:20:39','2013-09-27 20:20:39','',346,'https://sofits.ca/2013/09/27/346-revision-v1/',0,'revision','',0),(561,7,'2013-11-11 10:29:10','2013-11-11 15:29:10','<div></div>\r\nHi! I have the pleasure of joining you this year in SOFITS. I have volunteered to organize a Pot Luck to serve as a \'Meet and Greet\' and to celebrate the beginning of a new ski season. Please join us on Sunday, November 17 at 11:00, 28 Centrepark Drive, Blackburn Hamlet. Sunday brunch has a great appeal in the cold, dark days of November. Hot coffee, fresh fruit... croissants, good friends. Please feel free to invite your partners/spouses as well.   RSVP on the Facebook event page.\r\nSusan\r\n613 824 2091\r\n\r\n&nbsp;\r\n\r\n&nbsp;','SUSAN O\'s POTLUCK  Sat. Nov.  17, 11:00 am','','publish','closed','closed','','november-potluck','','','2013-11-11 10:33:52','2013-11-11 15:33:52','',0,'https://sofits.ca/?p=561',0,'post','',0),(562,7,'2013-09-27 20:05:10','2013-09-28 00:05:10','<div>\"Hi!</div>\r\n<div>My name is Susan Overholt-Newton and I have the pleasure of joining you this year in SOFITS. I have volunteered to organize a Pot Luck to serve as a \'Meet and Greet\' and to celebrate the beginning of a new ski season. Please join us on Sunday, November 10 at 11:00, in Blackburn Hamlet.  Sunday brunch has a great appeal in the cold, dark days of November. Hot coffee, fresh fruit... croissants, good friends. Please feel free to invite your partners/spouses as well\".</div>\r\n<div>Susan</div>\r\n<div></div>','November Potluck','','inherit','open','closed','','561-revision-v1','','','2013-09-27 20:05:10','2013-09-28 00:05:10','',561,'https://sofits.ca/2013/09/27/561-revision-v1/',0,'revision','',0),(563,7,'2013-09-27 20:16:35','2013-09-28 00:16:35','<div>\"Hi!</div>\r\n<div>My name is Susan Overholt-Newton and I have the pleasure of joining you this year in SOFITS. I have volunteered to organize a Pot Luck to serve as a \'Meet and Greet\' and to celebrate the beginning of a new ski season. Please join us on Sunday, November 10 at 11:00, in Blackburn Hamlet.  Sunday brunch has a great appeal in the cold, dark days of November. Hot coffee, fresh fruit... croissants, good friends. Please feel free to invite your partners/spouses as well\".</div>\r\n<div>Susan</div>\r\n<div></div>','NOVEMBER POTLUCK','','inherit','open','closed','','561-revision-v1','','','2013-09-27 20:16:35','2013-09-28 00:16:35','',561,'https://sofits.ca/2013/09/27/561-revision-v1/',0,'revision','',0),(577,7,'2013-10-01 11:02:37','2013-10-01 15:02:37','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  27 2013</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-10-01 11:02:37','2013-10-01 15:02:37','',346,'https://sofits.ca/2013/10/01/346-revision-v1/',0,'revision','',0),(593,7,'2013-10-05 07:55:02','2013-10-05 11:55:02','','Workout of Oct 3 2013','','inherit','open','closed','','workout-of-oct-3-2013','','','2013-10-05 07:55:02','2013-10-05 11:55:02','',346,'https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-3-2013-.pdf',0,'attachment','application/pdf',0),(594,7,'2013-10-05 07:56:02','2013-10-05 11:56:02','<strong> <a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-3-2013-.pdf\">Week 3: Workout of October 3 2013</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  27 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a></strong>\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-10-05 07:56:02','2013-10-05 11:56:02','',346,'https://sofits.ca/2013/10/05/346-revision-v1/',0,'revision','',0),(596,7,'2013-10-05 07:59:29','2013-10-05 11:59:29','This is a very general outline of things to incorporate during each week\'s training.  How you do it is up to you, and the hours put in will vary from person to person, depending on your fitness level and previous experience.  It is important to start \"where you are at\", and to alternate harder and easier days, as well as harder and easier weeks.  Plan one day off a week.   The Friday sessions will include one strength workout, plyometrics, technique drills and of course hill work and other intensity training.   The specifics of each training session will be posted after we have met, in case you have missed it and wish to do it on your own.\r\n\r\n<strong><span style=\"color: #0000ff;\"><a href=\"https://sofits.ca/wp-content/uploads/2013/09/SOFITS-GENERIC-BASE1-Sept-to-Oct-20.pdf\"><span style=\"color: #0000ff;\">GENERIC  TRAINING PLAN BASE 1 Sept 7 to Oct 20 (note - the dates are wrong on all but the first week!)</span></a></span></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"11\"]','GENERIC TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-10-05 07:59:29','2013-10-05 11:59:29','',319,'https://sofits.ca/2013/10/05/319-revision-v1/',0,'revision','',0),(597,7,'2013-10-05 08:01:43','2013-10-05 12:01:43','This is a very general outline of things to incorporate during each week\'s training.  How you do it is up to you, and the hours put in will vary from person to person, depending on your fitness level and previous experience.  It is important to start \"where you are at\", and to alternate harder and easier days, as well as harder and easier weeks.  Plan one day off a week.   The Friday sessions will include one strength workout, plyometrics, technique drills and of course hill work and other intensity training.   The specifics of each training session will be posted after we have met, in case you have missed it and wish to do it on your own.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"11\"]','GENERIC TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-10-05 08:01:43','2013-10-05 12:01:43','',319,'https://sofits.ca/2013/10/05/319-revision-v1/',0,'revision','',0),(598,7,'2013-10-05 08:04:25','2013-10-05 12:04:25','','SOFITS GENERIC 2013 BASE1','','inherit','open','closed','','sofits-generic-2013-base1','','','2013-10-05 08:04:25','2013-10-05 12:04:25','',319,'https://sofits.ca/wp-content/uploads/2013/09/SOFITS-GENERIC-2013-BASE1.pdf',0,'attachment','application/pdf',0),(599,7,'2013-10-05 08:05:11','2013-10-05 12:05:11','This is a very general outline of things to incorporate during each week\'s training.  How you do it is up to you, and the hours put in will vary from person to person, depending on your fitness level and previous experience.  It is important to start \"where you are at\", and to alternate harder and easier days, as well as harder and easier weeks.  Plan one day off a week.   The Friday sessions will include one strength workout, plyometrics, technique drills and of course hill work and other intensity training.   The specifics of each training session will be posted after we have met, in case you have missed it and wish to do it on your own.\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/SOFITS-GENERIC-2013-BASE1.pdf\">SOFITS GENERIC 2013 BASE1 :September 16 to October 13</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"11\"]','GENERIC TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-10-05 08:05:11','2013-10-05 12:05:11','',319,'https://sofits.ca/2013/10/05/319-revision-v1/',0,'revision','',0),(606,7,'2013-10-06 16:11:14','2013-10-06 20:11:14','<div>\"Hi!</div>\r\n<div>My name is Susan Overholt-Newton and I have the pleasure of joining you this year in SOFITS. I have volunteered to organize a Pot Luck to serve as a \'Meet and Greet\' and to celebrate the beginning of a new ski season. Please join us on Sunday, November 10 at 11:00, in Blackburn Hamlet.  Sunday brunch has a great appeal in the cold, dark days of November. Hot coffee, fresh fruit... croissants, good friends. Please feel free to invite your partners/spouses as well\".</div>\r\n<div>Susan</div>\r\n<div></div>','November Potluck','','inherit','open','closed','','561-revision-v1','','','2013-10-06 16:11:14','2013-10-06 20:11:14','',561,'https://sofits.ca/2013/10/06/561-revision-v1/',0,'revision','',0),(615,7,'2013-10-08 11:00:32','2013-10-08 15:00:32','I have revised the co-op list  and removed the things that are spoken for.   Several names are still blank on the list.  Feel free to come up with something that is not on the list, as long as it is useful to me or to the group.    I would be fantastic to  have several yurt trips organized in the park.  I have organized these in the past, and the trips were fabulously fun, but when I stopped organizing them, the trips didn\'t happen.  Also it would be very useful if someone would collect phone numbers and emails, and print one out for each of us.  There have been one or two occasions (winter storms, internet failures and facebook weirdness) when this would have been very handy.','Co-op and the LIST','','publish','open','closed','','co-op-and-the-list','','','2013-10-10 19:35:54','2013-10-10 23:35:54','',0,'https://sofits.ca/?p=615',0,'post','',0),(616,7,'2013-10-08 11:00:32','2013-10-08 15:00:32','I have revised the list and removed those jobs that were \"taken\".   Several names are still blank on the list.  Feel free to come up with something that is not on the list, as long as it is useful to me or to the group.    Personally I would love someone to spearhead some research into a  ski trip in the winter - perhaps Papineau Labelle or Mont Ste. Anne.    Similarly it would be fantastic to to have several yurt trips organized in the park.  I have organized these in the past, and the trips were fabulous, but when I stopped doing it, the trips didn\'t happen.','Co-op and the LIST','','inherit','open','closed','','615-revision-v1','','','2013-10-08 11:00:32','2013-10-08 15:00:32','',615,'https://sofits.ca/2013/10/08/615-revision-v1/',0,'revision','',0),(617,7,'2013-10-08 11:06:27','2013-10-08 15:06:27','I have revised the list and removed those jobs that were \"taken\".   Several names are still blank on the list.  Feel free to come up with something that is not on the list, as long as it is useful to me or to the group.    Personally I would love someone to spearhead some research into a  ski trip in the winter - perhaps Papineau Labelle or Mont Ste. Anne.    Similarly it would be fantastic to  have several yurt trips organized in the park.  I have organized these in the past, and the trips were fabulous, but when I stopped doing it, the trips didn\'t happen.','Co-op and the LIST','','inherit','open','closed','','615-revision-v1','','','2013-10-08 11:06:27','2013-10-08 15:06:27','',615,'https://sofits.ca/2013/10/08/615-revision-v1/',0,'revision','',0),(618,7,'2013-10-10 19:35:03','2013-10-10 23:35:03','I have revised the co-op list  and removed the things that are spoken for.   Several names are still blank on the list.  Feel free to come up with something that is not on the list, as long as it is useful to me or to the group.    I would be fantastic to  have several yurt trips organized in the park.  I have organized these in the past, and the trips were fabulously fun, but when I stopped organizing them, the trips didn\'t happen.  Also it would be very useful if someone would collect phone numbers and emails, and print one out for each of us.  There have been one or two occasions (winter storms and internet failures) when this wou','Co-op and the LIST','','inherit','open','closed','','615-autosave-v1','','','2013-10-10 19:35:03','2013-10-10 23:35:03','',615,'https://sofits.ca/2013/10/08/615-autosave-v1/',0,'revision','',0),(619,7,'2013-10-08 15:06:24','2013-10-08 19:06:24','I have revised the co-op list  and removed those jobs that were \"taken\".   Several names are still blank on the list.  Feel free to come up with something that is not on the list, as long as it is useful to me or to the group.    Personally I would love it if someone would  spearhead some research into a  ski trip in the winter - perhaps Papineau Labelle or Mont Ste. Anne.    Similarly it would be fantastic to  have several yurt trips organized in the park.  I have organized these in the past, and the trips were fabulously fun, but when I stopped organizing them, the trips didn\'t happen.','Co-op and the LIST','','inherit','open','closed','','615-revision-v1','','','2013-10-08 15:06:24','2013-10-08 19:06:24','',615,'https://sofits.ca/2013/10/08/615-revision-v1/',0,'revision','',0),(620,7,'2013-10-08 15:07:19','2013-10-08 19:07:19','I have revised the co-op list  and removed the things that are spoken for.   Several names are still blank on the list.  Feel free to come up with something that is not on the list, as long as it is useful to me or to the group.    Personally I would love it if someone would  spearhead some research into a  ski trip in the winter - perhaps Papineau Labelle or Mont Ste. Anne.    Similarly it would be fantastic to  have several yurt trips organized in the park.  I have organized these in the past, and the trips were fabulously fun, but when I stopped organizing them, the trips didn\'t happen.','Co-op and the LIST','','inherit','open','closed','','615-revision-v1','','','2013-10-08 15:07:19','2013-10-08 19:07:19','',615,'https://sofits.ca/2013/10/08/615-revision-v1/',0,'revision','',0),(623,7,'2013-10-23 09:01:47','2013-10-23 13:01:47','<div></div>\nHi! I have the pleasure of joining you this year in SOFITS. I have volunteered to organize a Pot Luck to serve as a \'Meet and Greet\' and to celebrate the beginning of a new ski season. Please join us on Sunday, November 17 at 11:00, 28 Centrepark Drive, Blackburn Hamlet. Sunday brunch has a great appeal in the cold, dark days of November. Hot coffee, fresh fruit... croissants, good friends. Please feel free to invite your partners/spouses as well.   RSVP on the Facebook event page.\nSusan\n613 824 2091\n\n&nbsp;\n\n&nbsp;','ovember Potluck Nov. 17 !','','inherit','open','closed','','561-autosave-v1','','','2013-10-23 09:01:47','2013-10-23 13:01:47','',561,'https://sofits.ca/2013/10/10/561-autosave-v1/',0,'revision','',0),(624,7,'2013-10-10 10:30:27','2013-10-10 14:30:27','<div></div>\r\nHi! I have the pleasure of joining you this year in SOFITS. I have volunteered to organize a Pot Luck to serve as a \'Meet and Greet\' and to celebrate the beginning of a new ski season. Please join us on Sunday, November 10 at 11:00, 28 Centrepark Drive, Blackburn Hamlet. Sunday brunch has a great appeal in the cold, dark days of November. Hot coffee, fresh fruit... croissants, good friends. Please feel free to invite your partners/spouses as well.\r\nSusan\r\n613 824 2091\r\n\r\n(comment from Jo-Ann - this has posted in Facebook as an event,  please RSVP there or write a comment below, so that Susan knows how many are coming . )\r\n\r\n&nbsp;','November Potluck!','','inherit','open','closed','','561-revision-v1','','','2013-10-10 10:30:27','2013-10-10 14:30:27','',561,'https://sofits.ca/2013/10/10/561-revision-v1/',0,'revision','',0),(627,7,'2013-10-10 11:21:26','2013-10-10 15:21:26','There is so little interest in this, I will not bother posting any more of these.  However if it is something that interests you, speak to me about it.\r\n\r\n&nbsp;','GENERIC TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-10-10 11:21:26','2013-10-10 15:21:26','',319,'https://sofits.ca/2013/10/10/319-revision-v1/',0,'revision','',0),(632,7,'2013-10-10 16:43:02','2013-10-10 20:43:02',' ','','','publish','open','closed','','632','','','2013-10-10 16:43:02','2013-10-10 20:43:02','',0,'https://sofits.ca/2013/10/10/632/',15,'nav_menu_item','',0),(634,7,'2013-10-12 16:45:35','2013-10-12 20:45:35','<a href=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\"><img class=\"alignnone size-full wp-image-635\" alt=\"Top of Penguin Hill\" src=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\" width=\"700\" height=\"545\" /></a>','Sofits at the Top of Penguin','','publish','open','closed','','sofits-at-the-top-of-penguin','','','2013-11-18 13:35:42','2013-11-18 18:35:42','',0,'https://sofits.ca/?p=634',0,'post','',0),(635,7,'2013-10-10 16:44:46','2013-10-10 20:44:46','','Sofits-Oct-10-2013','','inherit','open','closed','','sofits-oct-10-2013','','','2013-10-10 16:44:46','2013-10-10 20:44:46','',634,'https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg',0,'attachment','image/jpeg',0),(636,7,'2013-10-10 16:45:35','2013-10-10 20:45:35','<a href=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\"><img class=\"alignnone size-full wp-image-635\" alt=\"Top of Penguin Hill\" src=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\" width=\"700\" height=\"545\" /></a>','Sofits at the Top of Penguin','','inherit','open','closed','','634-revision-v1','','','2013-10-10 16:45:35','2013-10-10 20:45:35','',634,'https://sofits.ca/2013/10/10/634-revision-v1/',0,'revision','',0),(637,7,'2013-10-10 19:35:54','2013-10-10 23:35:54','I have revised the co-op list  and removed the things that are spoken for.   Several names are still blank on the list.  Feel free to come up with something that is not on the list, as long as it is useful to me or to the group.    I would be fantastic to  have several yurt trips organized in the park.  I have organized these in the past, and the trips were fabulously fun, but when I stopped organizing them, the trips didn\'t happen.  Also it would be very useful if someone would collect phone numbers and emails, and print one out for each of us.  There have been one or two occasions (winter storms, internet failures and facebook weirdness) when this would have been very handy.','Co-op and the LIST','','inherit','open','closed','','615-revision-v1','','','2013-10-10 19:35:54','2013-10-10 23:35:54','',615,'https://sofits.ca/2013/10/10/615-revision-v1/',0,'revision','',0),(647,7,'2013-10-07 08:41:40','2013-10-07 12:41:40','We have decided to keep it simple.   The short sleeved shirts will remain as is (logo on the front, not on the back), but the long ones will have the additional plain name on the back.  To see how fetching the short tees are, check out the photo !\r\n\r\nThe deadline for ordering is <span style=\"text-decoration: underline;\"><strong>Thursday October 17</strong></span>.  To order, use the comment form below, and be sure to specify the size you would like.  If you are not sure about the size, you can add that in on Friday, when there will be one additional chance to try them on.  But please place your order before that, to give Meryl a heads up with numbers.   Meryl, do we need a minimum number to order either of these items?\r\n\r\nShort Tee\r\n$19.50 plus tax\r\n\r\nLong Tee with logo on front, and Sofits name on back\r\n$$38.50 plus tax','Order SOFITS SHIRTS, now!','','publish','open','closed','','order-your-sofits-shirts-now','','','2013-10-23 09:02:53','2013-10-23 13:02:53','',0,'https://sofits.ca/?p=647',0,'post','',0),(648,7,'2013-10-11 08:41:40','2013-10-11 12:41:40','We have decided to keep it simple.   The short sleeved shirts will remain as is (logo on the front, not on the back), but the long ones will have the additional plain name on the back.\r\n\r\nThe deadline for ordering is <span style=\"text-decoration: underline;\"><strong>Thursday October 17</strong></span>.  To order, use the comment form below, and be sure to specify the size you would like.  If you are not sure about the size, you can add that in on Friday, when there will be one additional chance to try them on.  But please place your order before that, to give Meryl a heads up with numbers.   Meryl, do we need a minimum number to order either of these items?\r\n\r\nShort Tee\r\n$19.50 plus tax\r\n\r\nLong Tee with logo on front, and Sofits name on back\r\n$$38.50 plus tax','Order your SOFITS shirts, now!','','inherit','open','closed','','647-revision-v1','','','2013-10-11 08:41:40','2013-10-11 12:41:40','',647,'https://sofits.ca/2013/10/11/647-revision-v1/',0,'revision','',0),(649,7,'2013-10-11 08:43:17','2013-10-11 12:43:17','We have decided to keep it simple.   The short sleeved shirts will remain as is (logo on the front, not on the back), but the long ones will have the additional plain name on the back.  To see how fetching the short tees are, check the\n\nThe deadline for ordering is <span style=\"text-decoration: underline;\"><strong>Thursday October 17</strong></span>.  To order, use the comment form below, and be sure to specify the size you would like.  If you are not sure about the size, you can add that in on Friday, when there will be one additional chance to try them on.  But please place your order before that, to give Meryl a heads up with numbers.   Meryl, do we need a minimum number to order either of these items?\n\nShort Tee\n$19.50 plus tax\n\nLong Tee with logo on front, and Sofits name on back\n$$38.50 plus tax','Order SOFITS SHIRTS, now!','','inherit','open','closed','','647-autosave-v1','','','2013-10-11 08:43:17','2013-10-11 12:43:17','',647,'https://sofits.ca/2013/10/11/647-autosave-v1/',0,'revision','',0),(650,7,'2013-10-11 08:43:30','2013-10-11 12:43:30','We have decided to keep it simple.   The short sleeved shirts will remain as is (logo on the front, not on the back), but the long ones will have the additional plain name on the back.  To see how fetching the short tees are, check out the photo !\r\n\r\nThe deadline for ordering is <span style=\"text-decoration: underline;\"><strong>Thursday October 17</strong></span>.  To order, use the comment form below, and be sure to specify the size you would like.  If you are not sure about the size, you can add that in on Friday, when there will be one additional chance to try them on.  But please place your order before that, to give Meryl a heads up with numbers.   Meryl, do we need a minimum number to order either of these items?\r\n\r\nShort Tee\r\n$19.50 plus tax\r\n\r\nLong Tee with logo on front, and Sofits name on back\r\n$$38.50 plus tax','Order SOFITS SHIRTS, now!','','inherit','open','closed','','647-revision-v1','','','2013-10-11 08:43:30','2013-10-11 12:43:30','',647,'https://sofits.ca/2013/10/11/647-revision-v1/',0,'revision','',0),(651,7,'2013-10-11 08:50:15','2013-10-11 12:50:15','Please leave a comment if you are interested in creating your own personal training plan.\r\n\r\n&nbsp;','GENERIC TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-10-11 08:50:15','2013-10-11 12:50:15','',319,'https://sofits.ca/2013/10/11/319-revision-v1/',0,'revision','',0),(652,7,'2013-10-14 16:46:19','2013-10-14 20:46:19','','Workout of  Oct10 2013','','inherit','open','closed','','workout-of-oct10-2013','','','2013-10-14 16:46:19','2013-10-14 20:46:19','',346,'https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct10-2013-.pdf',0,'attachment','application/pdf',0),(653,7,'2013-10-14 16:46:47','2013-10-14 20:46:47','<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct10-2013-.pdf\">Week 4: Workout of October 10 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-3-2013-.pdf\">Week 3: Workout of October 3 2013</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  27 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a></strong>\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-10-14 16:46:47','2013-10-14 20:46:47','',346,'https://sofits.ca/2013/10/14/346-revision-v1/',0,'revision','',0),(654,7,'2013-10-14 16:47:00','2013-10-14 20:47:00','<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct10-2013-.pdf\">Week 4: Workout of October 10 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-3-2013-.pdf\">Week 3: Workout of October 3 2013</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  27 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-10-14 16:47:00','2013-10-14 20:47:00','',346,'https://sofits.ca/2013/10/14/346-revision-v1/',0,'revision','',0),(658,7,'2013-10-14 16:52:54','2013-10-14 20:52:54','<div></div>\r\nHi! I have the pleasure of joining you this year in SOFITS. I have volunteered to organize a Pot Luck to serve as a \'Meet and Greet\' and to celebrate the beginning of a new ski season. Please join us on Sunday, November 10 at 11:00, 28 Centrepark Drive, Blackburn Hamlet. Sunday brunch has a great appeal in the cold, dark days of November. Hot coffee, fresh fruit... croissants, good friends. Please feel free to invite your partners/spouses as well.\r\nSusan\r\n613 824 2091\r\n\r\n(comment from Jo-Ann - this has posted in Facebook as an event,  please RSVP there, so that Susan knows who is  coming . )\r\n\r\n&nbsp;','November Potluck!','','inherit','open','closed','','561-revision-v1','','','2013-10-14 16:52:54','2013-10-14 20:52:54','',561,'https://sofits.ca/2013/10/14/561-revision-v1/',0,'revision','',0),(660,7,'2013-10-15 11:13:57','2013-10-15 15:13:57','If you would like some help in creating your own training plan, we are meeting on Saturday, October 19, at my house in Chelsea.   11:00 a.m. with a possible run first, if there is interest.    Bring a calendar or datebook and have a rough idea of how many hours you have trained over the last year, not counting walking.\r\n\r\n&nbsp;','GENERIC TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-10-15 11:13:57','2013-10-15 15:13:57','',319,'https://sofits.ca/2013/10/15/319-revision-v1/',0,'revision','',0),(661,7,'2013-10-15 11:14:31','2013-10-15 15:14:31','If you would like some help in creating your own training plan, we are meeting on Saturday, October 19, at my house in Chelsea.   11:00 a.m. with a possible run first, if there is interest.    Bring a calendar or datebook and have a rough idea of how many hours you have trained over the last year, not counting walking.\r\n\r\n&nbsp;','GENERIC & PERSONAL TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-10-15 11:14:31','2013-10-15 15:14:31','',319,'https://sofits.ca/2013/10/15/319-revision-v1/',0,'revision','',0),(666,7,'2013-10-18 16:19:46','2013-10-18 20:19:46','','Workout of Oct 18 2013','','inherit','open','closed','','workout-of-oct-18-2013','','','2013-10-18 16:19:46','2013-10-18 20:19:46','',346,'https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-18-2013-.pdf',0,'attachment','application/pdf',0),(667,7,'2013-10-18 16:20:22','2013-10-18 20:20:22','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-18-2013-.pdf\">Week 5: Workout of October 18 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct10-2013-.pdf\">Week 4: Workout of October 10 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-3-2013-.pdf\">Week 3: Workout of October 3 2013</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  27 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-10-18 16:20:22','2013-10-18 20:20:22','',346,'https://sofits.ca/2013/10/18/346-revision-v1/',0,'revision','',0),(668,7,'2013-10-27 08:13:38','2013-10-27 12:13:38','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Saturday.  Nov. 2,   2:00- 4:30  pm at Yvonne\'s house in Chelsea\r\n</strong></span>\r\n\r\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">The address is 23 Muskoka Road. </span></strong></span>\r\n\r\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">819-827-6311\r\n</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff0000;\"><span style=\"color: #000000;\">(Note: Yvonne suggests taking an <strong>antihistamine</strong> if you are allergic to cats.)</span></span></strong><span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">\r\n</span></strong></span>\r\n\r\nThis is who I have on the list for Saturday:   Please let me know if are planning to come and are not on the list.\r\n\r\nYvonne, Susan R, Susan O, Cary, Carol, Bea, Joanne, Anne, and Kathy.   Ila has also offered to come and update the previous notes. (yay!)  I\'m sure we will have some interesting discussion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','NEW LOCATION for Training Plan Workshop','','publish','open','closed','','sat-nov-2-training-plan-workshop-2','','','2013-11-13 11:46:10','2013-11-13 16:46:10','',0,'https://sofits.ca/?p=668',0,'post','',0),(669,7,'2013-10-21 08:13:38','2013-10-21 12:13:38','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Saturday, November 2,   2:00- 4:30  pm</strong></span>\r\n\r\nIf you are interested, please leave your name below, in the comments session.   Maximum of 8 people, open only to those who did not attend the October session.   This will be the last planning session offered, although we may have a \"part 2\" session  when we reach the \"build\" phase around the 2nd week of December.','Sat. Nov 2 - Training Plan Workshop #2','','inherit','open','closed','','668-revision-v1','','','2013-10-21 08:13:38','2013-10-21 12:13:38','',668,'https://sofits.ca/2013/10/21/668-revision-v1/',0,'revision','',0),(670,7,'2013-10-21 08:20:48','2013-10-21 12:20:48','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Saturday, November 2,   2:00- 4:30  pm</strong></span>\r\n\r\nIf you are interested, please leave your name below, in the comments session.   Maximum of 7 people  (plus me), open  to those who did not attend the October session.   This will be the last planning session offered, although we may have a \"part 2\" session  when we reach the \"build\" phase around the 2nd week of December.','Sat. Nov 2 - Training Plan Workshop #2','','inherit','open','closed','','668-revision-v1','','','2013-10-21 08:20:48','2013-10-21 12:20:48','',668,'https://sofits.ca/2013/10/21/668-revision-v1/',0,'revision','',0),(678,7,'2013-10-21 09:04:51','2013-10-21 13:04:51','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Sat.  Nov. 2,   2:00- 4:30  pm</strong></span>\r\n\r\nIf you are interested, please leave your name below, in the comments session.   Maximum of 7 people  (plus me), open  to those who did not attend the October session.   This will be the last planning session offered, although we may have a \"part 2\" session  when we reach the \"build\" phase around the 2nd week of December.','Sat. Nov 2 - Training Plan Workshop #2','','inherit','open','closed','','668-revision-v1','','','2013-10-21 09:04:51','2013-10-21 13:04:51','',668,'https://sofits.ca/2013/10/21/668-revision-v1/',0,'revision','',0),(679,7,'2013-10-31 15:49:55','2013-10-31 19:49:55','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Saturday.  Nov. 2,   2:00- 4:30  pm at Yvonne\'s house in Chelsea\n</strong></span>\n\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">The address is 23 Muskoka Road. </span></strong></span>\n\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">819-827-6311\n</span></strong></span>\n\n<strong><span style=\"color: #ff0000;\"><span style=\"color: #000000;\">(Note: Yvonne suggests taking an <strong>antihistamine</strong> if you are allergic to cats.</span></span></strong><span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">\n</span></strong></span>\n\nThis is who I have on the list for Saturday:   Please let me know if are planning to come and are not on the list.\n\n&nbsp;\n\nYvonne, Susan R, Susan O, Cary, Carol, Bea, Joanne, Anne, and Kathy.   Ila has also offered to come and update the previous notes. (yay!)  I\'m sure we will have some interesting discussion.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','NEW LOCATION for Training Plan Workshop','','inherit','open','closed','','668-autosave-v1','','','2013-10-31 15:49:55','2013-10-31 19:49:55','',668,'https://sofits.ca/2013/10/21/668-autosave-v1/',0,'revision','',0),(680,7,'2013-10-21 09:09:01','2013-10-21 13:09:01','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Sat.  Nov. 2,   2:00- 4:30  pm</strong></span>\r\n\r\n<span style=\"text-decoration: underline; color: #ff0000;\"><strong>20  Lilsam, Chelsea</strong></span>\r\n\r\nMaximum of 7 people  (plus me), open  to those who did not attend the October session.   This will be the last planning session offered, although we may have a \"continued, part 2\" session  when we reach the \"build\" phase around the 2nd week of December.   If you wish to take part, leave a comment below.','Sat. Nov 2 - Training Plan Workshop #2','','inherit','open','closed','','668-revision-v1','','','2013-10-21 09:09:01','2013-10-21 13:09:01','',668,'https://sofits.ca/2013/10/21/668-revision-v1/',0,'revision','',0),(681,7,'2013-10-21 09:12:25','2013-10-21 13:12:25','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Sat.  Nov. 2,   2:00- 4:30  pm</strong></span>\r\n\r\n<span style=\"text-decoration: underline; color: #ff0000;\"><strong>20  Lilsam, Chelsea</strong></span>\r\n\r\nMaximum of 7 people  (plus me), open  to those who did not attend the October session.   This will be the last planning session offered, although we may have a \"continued, part 2\" session  when we reach the \"build\" phase around the 2nd week of December.  Anyone wishing to take part, leave a comment below.\r\n\r\nNote, if there is an unexpectedly huge interest in this, perhaps we could move it to  a different  (larger) house, but otherwise I prefer to have it at mine.','Sat. Nov 2 - Training Plan Workshop #2','','inherit','open','closed','','668-revision-v1','','','2013-10-21 09:12:25','2013-10-21 13:12:25','',668,'https://sofits.ca/2013/10/21/668-revision-v1/',0,'revision','',0),(682,7,'2013-10-23 09:00:08','2013-10-23 13:00:08','<div></div>\r\nHi! I have the pleasure of joining you this year in SOFITS. I have volunteered to organize a Pot Luck to serve as a \'Meet and Greet\' and to celebrate the beginning of a new ski season. Please join us on Sunday, November 17 at 11:00, 28 Centrepark Drive, Blackburn Hamlet. Sunday brunch has a great appeal in the cold, dark days of November. Hot coffee, fresh fruit... croissants, good friends. Please feel free to invite your partners/spouses as well.\r\nSusan\r\n613 824 2091\r\n\r\n(comment from Jo-Ann - this has posted in Facebook as an event,  please RSVP there, so that Susan knows who is  coming . )\r\n\r\n&nbsp;','November Potluck Nov. 17 !','','inherit','open','closed','','561-revision-v1','','','2013-10-23 09:00:08','2013-10-23 13:00:08','',561,'https://sofits.ca/2013/10/23/561-revision-v1/',0,'revision','',0),(683,7,'2013-10-23 09:01:51','2013-10-23 13:01:51','<div></div>\r\nHi! I have the pleasure of joining you this year in SOFITS. I have volunteered to organize a Pot Luck to serve as a \'Meet and Greet\' and to celebrate the beginning of a new ski season. Please join us on Sunday, November 17 at 11:00, 28 Centrepark Drive, Blackburn Hamlet. Sunday brunch has a great appeal in the cold, dark days of November. Hot coffee, fresh fruit... croissants, good friends. Please feel free to invite your partners/spouses as well.   RSVP on the Facebook event page.\r\nSusan\r\n613 824 2091\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ovember Potluck Nov. 17 !','','inherit','open','closed','','561-revision-v1','','','2013-10-23 09:01:51','2013-10-23 13:01:51','',561,'https://sofits.ca/2013/10/23/561-revision-v1/',0,'revision','',0),(684,7,'2013-10-23 09:02:19','2013-10-23 13:02:19','<div></div>\r\nHi! I have the pleasure of joining you this year in SOFITS. I have volunteered to organize a Pot Luck to serve as a \'Meet and Greet\' and to celebrate the beginning of a new ski season. Please join us on Sunday, November 17 at 11:00, 28 Centrepark Drive, Blackburn Hamlet. Sunday brunch has a great appeal in the cold, dark days of November. Hot coffee, fresh fruit... croissants, good friends. Please feel free to invite your partners/spouses as well.   RSVP on the Facebook event page.\r\nSusan\r\n613 824 2091\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Potluck November 17 !','','inherit','open','closed','','561-revision-v1','','','2013-10-23 09:02:19','2013-10-23 13:02:19','',561,'https://sofits.ca/2013/10/23/561-revision-v1/',0,'revision','',0),(687,7,'2013-10-24 18:55:34','2013-10-24 22:55:34','','Create Your Own Training Plan','','inherit','open','closed','','create-your-own-training-plan','','','2013-10-24 18:55:34','2013-10-24 22:55:34','',319,'https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf',0,'attachment','application/pdf',0),(688,7,'2013-10-24 18:55:56','2013-10-24 22:55:56','<a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan</a>','GENERIC & PERSONAL TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-10-24 18:55:56','2013-10-24 22:55:56','',319,'https://sofits.ca/2013/10/24/319-revision-v1/',0,'revision','',0),(690,7,'2013-10-24 19:01:46','2013-10-24 23:01:46','','Background Questions','','inherit','open','closed','','background-questions','','','2013-10-24 19:01:46','2013-10-24 23:01:46','',319,'https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf',0,'attachment','application/pdf',0),(692,7,'2013-10-24 19:12:14','2013-10-24 23:12:14','','BASE2 Weeks of  Oct 21 to Nov 11','','inherit','open','closed','','base2-weeks-of-oct-21-to-nov-11','','','2013-10-24 19:12:14','2013-10-24 23:12:14','',319,'https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf',0,'attachment','application/pdf',0),(693,7,'2013-10-24 19:13:35','2013-10-24 23:13:35','','BASE3 Weeks of Nov 18 to Dec 9','','inherit','open','closed','','base3-weeks-of-nov-18-to-dec-9','','','2013-10-24 19:13:35','2013-10-24 23:13:35','',319,'https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf',0,'attachment','application/pdf',0),(694,7,'2013-10-24 19:13:58','2013-10-24 23:13:58','<a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\"><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></a>\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan</a>\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a>\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a>','GENERIC & PERSONAL TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-10-24 19:13:58','2013-10-24 23:13:58','',319,'https://sofits.ca/2013/10/24/319-revision-v1/',0,'revision','',0),(695,7,'2013-10-24 19:14:58','2013-10-24 23:14:58','Here are the preliminary documents and forms.    More to come.\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan</a>\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a>\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a>\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a>','GENERIC & PERSONAL TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-10-24 19:14:58','2013-10-24 23:14:58','',319,'https://sofits.ca/2013/10/24/319-revision-v1/',0,'revision','',0),(696,7,'2013-10-24 19:16:28','2013-10-24 23:16:28','Here are the preliminary documents from the first workshop.    More to come.\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan</a>\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a>\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a>\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a>','GENERIC & PERSONAL TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-10-24 19:16:28','2013-10-24 23:16:28','',319,'https://sofits.ca/2013/10/24/319-revision-v1/',0,'revision','',0),(697,7,'2013-10-24 19:49:43','2013-10-24 23:49:43','Here are the preliminary documents from the first workshop.    A couple more  to come.\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>','TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-10-24 19:49:43','2013-10-24 23:49:43','',319,'https://sofits.ca/2013/10/24/319-revision-v1/',0,'revision','',0),(703,7,'2013-10-26 08:03:54','2013-10-26 12:03:54','','Workout of Oct 25 2013','','inherit','open','closed','','workout-of-oct-25-2013','','','2013-10-26 08:03:54','2013-10-26 12:03:54','',346,'https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-25-2013.pdf',0,'attachment','application/pdf',0),(704,7,'2013-10-26 08:04:24','2013-10-26 12:04:24','&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-25-2013.pdf\">Week 6: Workout of October 25 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-18-2013-.pdf\">Week 5: Workout of October 18 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct10-2013-.pdf\">Week 4: Workout of October 10 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-3-2013-.pdf\">Week 3: Workout of October 3 2013</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  27 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-10-26 08:04:24','2013-10-26 12:04:24','',346,'https://sofits.ca/2013/10/26/346-revision-v1/',0,'revision','',0),(709,7,'2013-10-26 13:21:21','2013-10-26 17:21:21','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Sat.  Nov. 2,   2:00- 4:30  pm</strong></span>\r\n\r\n<span style=\"text-decoration: underline; color: #ff0000;\"><strong>20  Lilsam, Chelsea</strong></span>\r\n\r\nMaximum of 9 people  (plus me), open  to those who did not attend the October session.   This will be the last planning session offered, although we may have a \"continued, part 2\" session  when we reach the \"build\" phase around the 2nd week of December.  Anyone wishing to take part, leave a comment below.\r\n\r\nNote, if there is an unexpectedly huge interest in this, perhaps we could move it to  a different  (larger) house, but otherwise I prefer to have it at mine.  I now have enough chairs for 9 of us!','Sat. Nov 2 - Training Plan Workshop #2','','inherit','open','closed','','668-revision-v1','','','2013-10-26 13:21:21','2013-10-26 17:21:21','',668,'https://sofits.ca/2013/10/26/668-revision-v1/',0,'revision','',0),(710,7,'2013-10-26 13:29:17','2013-10-26 17:29:17','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Sat.  Nov. 2,   2:00- 4:30  pm</strong></span>\r\n\r\n<span style=\"text-decoration: underline; color: #ff0000;\"><strong>20  Lilsam, Chelsea</strong></span>\r\n\r\nOpen  to those who did not attend the October session.   This will be the last planning session offered, although we may have a \"continued, part 2\" session  when we reach the \"build\" phase around the 2nd week of December.  Anyone wishing to take part, please leave a comment below (if you have not already).\r\n\r\nIt will be at my house (20 Lilsam, in Chelsea) if there are 9 or fewer. If there are more than 9 interested,  Yvonne has generously offered to hold it at her house, just \"up the road\".  I\'d like to be able to let Yvonne know ahead of time, so if you are considering coming, please confirm it with a comment, below.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Sat. Nov 2 - Training Plan Workshop #2','','inherit','open','closed','','668-revision-v1','','','2013-10-26 13:29:17','2013-10-26 17:29:17','',668,'https://sofits.ca/2013/10/26/668-revision-v1/',0,'revision','',0),(711,7,'2013-10-26 13:29:35','2013-10-26 17:29:35','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Sat.  Nov. 2,   2:00- 4:30  pm</strong></span>\r\n\r\nOpen  to those who did not attend the October session.   This will be the last planning session offered, although we may have a \"continued, part 2\" session  when we reach the \"build\" phase around the 2nd week of December.  Anyone wishing to take part, please leave a comment below (if you have not already).\r\n\r\nIt will be at my house (20 Lilsam, in Chelsea) if there are 9 or fewer. If there are more than 9 interested,  Yvonne has generously offered to hold it at her house, just \"up the road\".  I\'d like to be able to let Yvonne know ahead of time, so if you are considering coming, please confirm it with a comment, below.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Sat. Nov 2 - Training Plan Workshop #2','','inherit','open','closed','','668-revision-v1','','','2013-10-26 13:29:35','2013-10-26 17:29:35','',668,'https://sofits.ca/2013/10/26/668-revision-v1/',0,'revision','',0),(712,7,'2013-10-26 13:39:15','2013-10-26 17:39:15','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Sat.  Nov. 2,   2:00- 4:30  pm</strong></span>\r\n\r\nOpen  to those who did not attend the October session.   This will be the last planning session offered, although we may have a \"continued, part 2\" session  when we reach the \"build\" phase around the 2nd week of December.\r\n\r\nIt will be at my house (20 Lilsam, in Chelsea) if there are 9 or fewer. If there are more than 9 interested,  Yvonne has generously offered to hold it at her house, just \"up the road\".  I\'d like to be able to let Yvonne know ahead of time, so if you are considering coming, please confirm it with a comment, below, if you haven\'t already done so.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Sat. Nov 2 - Training Plan Workshop #2','','inherit','open','closed','','668-revision-v1','','','2013-10-26 13:39:15','2013-10-26 17:39:15','',668,'https://sofits.ca/2013/10/26/668-revision-v1/',0,'revision','',0),(713,7,'2013-10-26 13:40:42','2013-10-26 17:40:42','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Sat.  Nov. 2,   2:00- 4:30  pm</strong></span>\r\n\r\nOpen  to those who did not attend the October session.   This will be the last planning session offered, although we may have a \"continued, part 2\" session  when we reach the \"build\" phase around the 2nd week of December.\r\n\r\nIt will be at my house (20 Lilsam, in Chelsea) if there are 9 or fewer. If there are more than 9 interested,  Yvonne has generously offered to hold it at her house, just \"up the road\".  I\'d like to be able to give Yvonne some advance warning if we are going to storm her house,  so if you are considering coming, please confirm it with a comment, below, unless you have already done so.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Sat. Nov 2 - Training Plan Workshop #2','','inherit','open','closed','','668-revision-v1','','','2013-10-26 13:40:42','2013-10-26 17:40:42','',668,'https://sofits.ca/2013/10/26/668-revision-v1/',0,'revision','',0),(714,7,'2013-10-26 13:41:51','2013-10-26 17:41:51','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Sat.  Nov. 2,   2:00- 4:30  pm</strong></span>\r\n\r\nOpen  to those who did not attend the October session.   This will be the last planning session offered, although we may have a \"continued, part 2\" session  when we reach the \"build\" phase around the 2nd week of December.\r\n\r\nIt will be at my house (20 Lilsam, in Chelsea) if there are 9 or fewer. If there are more than 9 interested,  Yvonne has generously offered to hold it at her house, just \"up the road\".  I\'d like to be able to give Yvonne some advance warning if we are going to storm her house,  so if you are considering coming, please confirm it with a comment, below, unless you have already done so.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Sat. November 2 - Training Plan Workshop','','inherit','open','closed','','668-revision-v1','','','2013-10-26 13:41:51','2013-10-26 17:41:51','',668,'https://sofits.ca/2013/10/26/668-revision-v1/',0,'revision','',0),(715,7,'2013-10-30 12:12:07','2013-10-30 16:12:07','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Sat.  Nov. 2,   2:00- 4:30  pm</strong></span>\r\n\r\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">20 Chemin Lilsam, Chelsea</span></strong></span>\r\n\r\nI\'m closing the registration today as everyone has had lots of time to sign up.   Here is who is on the list:   Please let me know if you spoke to me and I forgot to add you!\r\n\r\nYvonne, Susan R, Susan O, Cary, Bea, Joanne, Anne, and Kathy.   Ila has also offered to come and update the previous notes. (yay!)  I\'m sure we will have some interesting discussion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Sat. November 2 - Training Plan Workshop','','inherit','open','closed','','668-revision-v1','','','2013-10-30 12:12:07','2013-10-30 16:12:07','',668,'https://sofits.ca/2013/10/30/668-revision-v1/',0,'revision','',0),(716,7,'2013-10-30 12:14:10','2013-10-30 16:14:10','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Sat.  Nov. 2,   2:00- 4:30  pm</strong></span>\r\n\r\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">20 Chemin Lilsam, Chelsea</span></strong></span>\r\n\r\nI\'m closing the registration today as everyone has had lots of time to sign up.   Here is who is on the list:   Please let me know if you spoke to me and I forgot to add you!\r\n\r\nYvonne, Susan R, Susan O, Cary, Carol, Bea, Joanne, Anne, and Kathy.   Ila has also offered to come and update the previous notes. (yay!)  I\'m sure we will have some interesting discussion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Sat. Nov. 2 - Training Plan Workshop - Final Update','','inherit','open','closed','','668-revision-v1','','','2013-10-30 12:14:10','2013-10-30 16:14:10','',668,'https://sofits.ca/2013/10/30/668-revision-v1/',0,'revision','',0),(717,7,'2013-10-30 12:16:28','2013-10-30 16:16:28','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Sat.  Nov. 2,   2:00- 4:30  pm</strong></span>\r\n\r\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">20 Chemin Lilsam, Chelsea</span></strong></span>\r\n\r\nEveryone has had lots of time to sign up.   Here is who is on the list:   Please let me know if you spoke to me and I forgot to add you!\r\n\r\nYvonne, Susan R, Susan O, Cary, Carol, Bea, Joanne, Anne, and Kathy.   Ila has also offered to come and update the previous notes. (yay!)  I\'m sure we will have some interesting discussion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Sat. Nov. 2 - Training Plan Workshop - Final Update','','inherit','open','closed','','668-revision-v1','','','2013-10-30 12:16:28','2013-10-30 16:16:28','',668,'https://sofits.ca/2013/10/30/668-revision-v1/',0,'revision','',0),(718,7,'2013-10-30 12:17:01','2013-10-30 16:17:01','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Sat.  Nov. 2,   2:00- 4:30  pm</strong></span>\r\n\r\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">20 Chemin Lilsam, Chelsea</span></strong></span>\r\n\r\nThis is who I have on the list for Saturday:   Please let me know if you spoke to me and I forgot to add you!\r\n\r\nYvonne, Susan R, Susan O, Cary, Carol, Bea, Joanne, Anne, and Kathy.   Ila has also offered to come and update the previous notes. (yay!)  I\'m sure we will have some interesting discussion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Sat. Nov. 2 - Training Plan Workshop - Final Update','','inherit','open','closed','','668-revision-v1','','','2013-10-30 12:17:01','2013-10-30 16:17:01','',668,'https://sofits.ca/2013/10/30/668-revision-v1/',0,'revision','',0),(719,7,'2013-10-31 15:50:16','2013-10-31 19:50:16','<span style=\"text-decoration: underline; color: #ff0000;\"><strong>Saturday.  Nov. 2,   2:00- 4:30  pm at Yvonne\'s house in Chelsea\r\n</strong></span>\r\n\r\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">The address is 23 Muskoka Road. </span></strong></span>\r\n\r\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">819-827-6311\r\n</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff0000;\"><span style=\"color: #000000;\">(Note: Yvonne suggests taking an <strong>antihistamine</strong> if you are allergic to cats.)</span></span></strong><span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">\r\n</span></strong></span>\r\n\r\nThis is who I have on the list for Saturday:   Please let me know if are planning to come and are not on the list.\r\n\r\nYvonne, Susan R, Susan O, Cary, Carol, Bea, Joanne, Anne, and Kathy.   Ila has also offered to come and update the previous notes. (yay!)  I\'m sure we will have some interesting discussion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','NEW LOCATION for Training Plan Workshop','','inherit','open','closed','','668-revision-v1','','','2013-10-31 15:50:16','2013-10-31 19:50:16','',668,'https://sofits.ca/2013/10/31/668-revision-v1/',0,'revision','',0),(723,7,'2013-12-09 09:00:05','2013-12-09 14:00:05','<img class=\"alignnone size-full wp-image-2451\" src=\"https://sofits.ca/wp-content/uploads/160126_Sofits-Skate13.jpg\" alt=\"160126_Sofits-Skate13\" width=\"800\" height=\"549\" />\r\n\r\nSOME GREAT WOMEN\'S CLASSIC FOOTAGE: <strong> <a href=\"httpss://youtu.be/2pEIyDLh_P0\">httpss://youtu.be/2pEIyDLh_P0</a></strong>\r\n\r\nBEST SITE EVER for HOW-TO SKI VIDEOS of all techniques  <strong><a href=\"https://crosscountryskitechnique.com\">crosscountryskitechnique.com</a></strong>\r\n\r\nGREAT VIDEO of Ski walking and Ski Striding <strong><a href=\"httpss://www.youtube.com/watch?v=LzlGkpAL5ec\">httpss://www.youtube.com/watch?v=LzlGkpAL5ec</a></strong>\r\n\r\nALSO THIS ONE by Local XCOTTAWA  <strong><a href=\"httpss://www.youtube.com/watch?v=P5wvl50bE8Q\">httpss://www.youtube.com/watch?v=P5wvl50bE8Q</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','XCSKI TECHNIQUE','','publish','open','closed','','ski-technique','','','2016-10-17 10:38:39','2016-10-17 14:38:39','',0,'https://sofits.ca/?page_id=723',0,'page','',0),(724,7,'2013-11-01 18:51:24','2013-11-01 22:51:24','','Kathy1','','inherit','open','closed','','kathy1','','','2013-11-01 18:51:24','2013-11-01 22:51:24','',723,'https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg',0,'attachment','image/jpeg',0),(725,7,'2013-11-01 18:51:28','2013-11-01 22:51:28','','Kathy2','','inherit','open','closed','','kathy2','','','2013-11-01 18:51:28','2013-11-01 22:51:28','',723,'https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg',0,'attachment','image/jpeg',0),(726,7,'2013-11-01 18:52:05','2013-11-01 22:52:05',' ','','','publish','open','closed','','726','','','2013-11-01 18:52:05','2013-11-01 22:52:05','',0,'https://sofits.ca/2013/11/01/726/',16,'nav_menu_item','',0),(727,7,'2013-11-01 18:52:05','2013-11-01 22:52:05','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\"><img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\"><img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" /></a>','Ski Technique','','inherit','open','closed','','723-revision-v1','','','2013-11-01 18:52:05','2013-11-01 22:52:05','',723,'https://sofits.ca/2013/11/01/723-revision-v1/',0,'revision','',0),(730,7,'2013-11-01 19:04:03','2013-11-01 23:04:03','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\"><img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\"><img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" /></a>','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-11-01 19:04:03','2013-11-01 23:04:03','',723,'https://sofits.ca/2013/11/01/723-revision-v1/',0,'revision','',0),(732,7,'2013-11-01 19:15:20','2013-11-01 23:15:20','','Workout of November 1 2013','','inherit','open','closed','','workout-of-november-1-2013','','','2013-11-01 19:15:20','2013-11-01 23:15:20','',346,'https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-1-2013.pdf',0,'attachment','application/pdf',0),(733,7,'2013-11-01 19:15:48','2013-11-01 23:15:48','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-1-2013.pdf\">Week 7: Workout of November 1 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-25-2013.pdf\">Week 6: Workout of October 25 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-18-2013-.pdf\">Week 5: Workout of October 18 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct10-2013-.pdf\">Week 4: Workout of October 10 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-3-2013-.pdf\">Week 3: Workout of October 3 2013</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  27 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-11-01 19:15:48','2013-11-01 23:15:48','',346,'https://sofits.ca/2013/11/01/346-revision-v1/',0,'revision','',0),(737,7,'2013-11-01 19:24:32','2013-11-01 23:24:32','&nbsp;\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.  Click on each photo if you have trouble reading the fine print. Sorry about some of the spelling. Couldn’t see what I was writing in Photoshop.<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" /> <a href=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\"><img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" /></a>','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-11-01 19:24:32','2013-11-01 23:24:32','',723,'https://sofits.ca/2013/11/01/723-revision-v1/',0,'revision','',0),(738,7,'2013-11-01 19:25:42','2013-11-01 23:25:42','&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<span style=\"color: #000000;\">At the risk of embarrassing Kathy I want to show some of her specific (and excellent) technical skills. </span>\r\n\r\n<span style=\"color: #000000;\">Click on each photo if you have trouble reading the fine print. </span>\r\n\r\n<span style=\"color: #000000;\">Sorry about some of the spelling. Couldn’t see what I was writing in Photoshop.</span><img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-11-01 19:25:42','2013-11-01 23:25:42','',723,'https://sofits.ca/2013/11/01/723-revision-v1/',0,'revision','',0),(739,7,'2013-11-01 19:26:38','2013-11-01 23:26:38','&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I want to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about some of the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-11-01 19:26:38','2013-11-01 23:26:38','',723,'https://sofits.ca/2013/11/01/723-revision-v1/',0,'revision','',0),(740,7,'2013-11-01 19:27:38','2013-11-01 23:27:38','&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-11-01 19:27:38','2013-11-01 23:27:38','',723,'https://sofits.ca/2013/11/01/723-revision-v1/',0,'revision','',0),(743,7,'2013-11-17 18:15:21','2013-11-17 23:15:21','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg\"><img class=\"alignnone size-full wp-image-846\" alt=\"Wax Bench\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg\" width=\"700\" height=\"467\" /></a>\r\n\r\n<span style=\"color: #993366;\"><strong>Saturday Nov.23</strong>,  <strong>9 :30 a.m.  </strong></span>\r\n\r\n<span style=\"color: #993366;\"><strong>20 Chemin Lilsam, Chelsea (819 827 6376)</strong></span>\r\n\r\nThis is who I think is coming: Let me know if your name is missing.\r\n\r\nSharon, Julie, Meryl, Marg, Mary Lou, Bea, Ila and Joanne.\r\n\r\nBe sure that your skis are cleaned thoroughly before you come, and bring a small snack. There will be a $2 charge for glide wax.   We will wax the skis which are most in need of it!    Note that this is a basic course in glide and grip waxing.  If you have already glide waxed your own skis successfully for years and years, you do not need this course.   This is not about fancy, expensive race waxing.','WAXING CLINIC on Sat. Nov 23','','publish','open','closed','','waxing-clinic','','','2013-11-26 09:29:57','2013-11-26 14:29:57','',0,'https://sofits.ca/?p=743',0,'post','',0),(744,7,'2013-11-03 15:50:21','2013-11-03 20:50:21','Who would be interested in this?   Here are some possible dates ( with Sharon getting first dibs as she has already mentioned this to me!)  Please let me know if you are interested and which days DO NOT work for you.\r\n\r\n<strong>Thursday November  14</strong>, mid to late afternoon.\r\n\r\n<span style=\"color: #000000;\"><strong>Saturday November 16 or 23</strong></span>,  morning or afternoon (if morning, bring food!)\r\n\r\n<strong><span style=\"color: #000000;\">Monday November 25</span></strong>, morning (bring food ).\r\n\r\n&nbsp;\r\n\r\nIf there is snow by any of these dates, we could finish/start with a short group ski.\r\n\r\nThere will be a small charge for glide wax, $2 a person.  If you have a portable wax bench, or iron, please bring them  along.  I am fully equipped to do only one pair of skis at a time.','Waxing Clinic?','','inherit','open','closed','','743-revision-v1','','','2013-11-03 15:50:21','2013-11-03 20:50:21','',743,'https://sofits.ca/2013/11/03/743-revision-v1/',0,'revision','',0),(745,7,'2013-11-03 15:51:09','2013-11-03 20:51:09','Who would be interested in this?   Here are some possible dates ( with Sharon getting first dibs as she has already mentioned this to me!)  Please let me know if you are interested and which days DO NOT work for you.\r\n\r\n<strong>Thursday November  14</strong>, mid to late afternoon.\r\n\r\n<span style=\"color: #000000;\"><strong>Saturday November 16</strong></span>,  morning or afternoon (if morning, bring food!)\r\n\r\n<strong>Saturday November 23</strong>,  morning or afternoon (if morning, bring food!)\r\n\r\n<strong><span style=\"color: #000000;\">Monday November 25</span></strong>, morning (bring food! ).\r\n\r\n&nbsp;\r\n\r\nIf there is snow by any of these dates, we could finish/start with a short group ski.\r\n\r\nThere will be a small charge for glide wax, $2 a person.  If you have a portable wax bench, or iron, please bring them  along.  I am fully equipped to do only one pair of skis at a time.','Waxing Clinic?','','inherit','open','closed','','743-revision-v1','','','2013-11-03 15:51:09','2013-11-03 20:51:09','',743,'https://sofits.ca/2013/11/03/743-revision-v1/',0,'revision','',0),(746,7,'2013-12-03 16:06:18','2013-12-03 21:06:18','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\"><img class=\"alignnone size-full wp-image-754\" alt=\"October 29, 2008\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\" width=\"600\" height=\"378\" /></a>\r\n\r\n<span style=\"text-decoration: underline;\">If you are buying new equipment, some suggestions</span>:\r\n\r\n1.  Avoid waxless (\"fish-scale\") skis like the plague!   You will neither be able to glide well nor enjoy the downhills. And the noise will drive your friends to distraction.  The exception to this is a dedicated pair of high quality waxless skis chosen specifically for your body weight,  to be used  when conditions are above zero and waxing is tricky.\r\n\r\n2. Garage sale skis are not recommended!!!\r\n\r\n3. Use a dedicated ski shop such as Fresh Air (always my first choice).  They will be sure to fit you with skis of the correct camber, and poles of the correct length.   Avoid generic sports stores or downhill stores such as Tommy and Lefevre (spelling?) etc.   Pecco\'s, although it has good equipment and knowledgeable staff,  is famous for NOT standing behind their products after the sale.\r\n\r\n4. Always keep your old skis for \"rock skiing.   One can never have too many skis!   If they have really poor, antiquated bindings, consider upgrading the bindings to match your new boots, so that you have excellent control on both your rock skis and good skis.\r\n\r\n5. Combi boots are great, especially for control on downhills, or if you have balance problems, or a history of hamstring injuries.  However, DO NOT consider buying combi skis.   They are poor for both classic and skating.   You will need dedicated skis and poles for both classic and skating.\r\n\r\n6. If you are prone to cold hands, you may want to consider the wide, fancier (and more expensive) velcro grips which tend not to cut off circulation.  Be sure to try them out with the gloves or mitts you will be wearing, especially if you will be wearing thick ones.\r\n\r\n7.  Set up a waxing area ahead of time, if you have space to do this.   Then you will be ready to head out the door at the last moment.\r\n\r\nAny more suggestions people want to add?','READY, SET SKI!','','publish','open','closed','','ready-set-ski','','','2013-12-07 15:04:07','2013-12-07 20:04:07','',0,'https://sofits.ca/?p=746',0,'post','',0),(747,7,'2013-11-03 16:06:18','2013-11-03 21:06:18','Don\'t be one of those surprised skiers who is not ready when the white stuff suddenly arrives.  Statistically we ski by mid November about one year out of three (check my website, www.musicianonskis.ca/blog  if you are skeptical).   As soon as there are a few cm of snow we will start to ski.  There is nothing more discouraging than seeing your friends ski while you have to head elsewhere for a wet slog in your running shoes.\r\n\r\nIf you are buying new equipment, some suggestions:\r\n\r\n1.Use a dedicated ski shop such as Fresh Air (always my first choice).   Avoid generic sports stores or downhill stores such as Tommy and LeFevre (spelling?) etc.   Pecco\'s, although it has good equipment and knowledgeable staff,  is famous for NOT standing behind their products after the sale.\r\n\r\n2.Always keep your old skis for \"rock skiing.   One can never have too many skis!   If they have really poor, antiquated bindings, consider upgrading the bindings to match your new boots, so that you have excellent control on both your rock skis and good skis.\r\n\r\n3.Combi boots are great, especially for control on downhills, or if you have balance problems, or a history of hamstring injuries.  However, DO NOT consider buying combi skis.   They are poor for both classic and skating.   You will need dedicated skis and poles for both classic and skating.\r\n\r\n4.  Set up a waxing area ahead of time, if you have space to do this.   Then you will be ready to head out the door at the last moment.\r\n\r\nAny more suggestions people want to add?','READY, SET SKI!','','inherit','open','closed','','746-revision-v1','','','2013-11-03 16:06:18','2013-11-03 21:06:18','',746,'https://sofits.ca/2013/11/03/746-revision-v1/',0,'revision','',0),(748,7,'2013-11-03 16:07:45','2013-11-03 21:07:45','Who would be interested in this?   Here are some possible dates ( with Sharon getting first dibs as she has already mentioned this to me!)  Please let me know if you are interested and which days DO NOT work for you.\r\n\r\n<strong>Thursday November  14</strong>, mid to late afternoon.\r\n\r\n<span style=\"color: #000000;\"><strong>Saturday November 16</strong></span>,  morning or afternoon (if morning, bring food!)\r\n\r\n<strong>Saturday November 23</strong>,  morning or afternoon (if morning, bring food!)\r\n\r\n<strong><span style=\"color: #000000;\">Monday November 25</span></strong>, morning (bring food! ).\r\n\r\n&nbsp;\r\n\r\nIf there is snow by any of these dates, we could finish/start with a short group ski.\r\n\r\nThere will be a small charge for glide wax, $2 a person.  If you have a portable wax bench, or iron, please bring them  along.  I am fully equipped to do only one pair of skis at a time.','WAXING CLINIC?','','inherit','open','closed','','743-revision-v1','','','2013-11-03 16:07:45','2013-11-03 21:07:45','',743,'https://sofits.ca/2013/11/03/743-revision-v1/',0,'revision','',0),(749,7,'2013-11-03 16:08:59','2013-11-03 21:08:59','<div></div>\r\nHi! I have the pleasure of joining you this year in SOFITS. I have volunteered to organize a Pot Luck to serve as a \'Meet and Greet\' and to celebrate the beginning of a new ski season. Please join us on Sunday, November 17 at 11:00, 28 Centrepark Drive, Blackburn Hamlet. Sunday brunch has a great appeal in the cold, dark days of November. Hot coffee, fresh fruit... croissants, good friends. Please feel free to invite your partners/spouses as well.   RSVP on the Facebook event page.\r\nSusan\r\n613 824 2091\r\n\r\n&nbsp;\r\n\r\n&nbsp;','POTLUCK  NOVEMBER  17 !','','inherit','open','closed','','561-revision-v1','','','2013-11-03 16:08:59','2013-11-03 21:08:59','',561,'https://sofits.ca/2013/11/03/561-revision-v1/',0,'revision','',0),(750,7,'2013-11-26 09:33:55','2013-11-26 14:33:55','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\"><img class=\"alignnone size-full wp-image-754\" alt=\"October 29, 2008\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\" width=\"600\" height=\"378\" /></a>\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Ski-Waxing.pdf\">For Ila\'s detailed waxing instructions, click here. </a></strong>\n\nIf you are buying new equipment, some suggestions:\n\n1.  Avoid waxless (\"fish-scale\") skis like the plague!   You will neither be able to glide well nor enjoy the downhills. And the noise will drive your friends to distraction.  The exception to this is a dedicated pair of high quality waxless skis chosen specifically for your body weight,  to be used  when conditions are above zero and waxing is tricky.\n\n2. Garage sale skis are not recommended!!!\n\n3. Use a dedicated ski shop such as Fresh Air (always my first choice).  They will be sure to fit you with skis of the correct camber, and poles of the correct length.   Avoid generic sports stores or downhill stores such as Tommy and Lefevre (spelling?) etc.   Pecco\'s, although it has good equipment and knowledgeable staff,  is famous for NOT standing behind their products after the sale.\n\n4. Always keep your old skis for \"rock skiing.   One can never have too many skis!   If they have really poor, antiquated bindings, consider upgrading the bindings to match your new boots, so that you have excellent control on both your rock skis and good skis.\n\n5. Combi boots are great, especially for control on downhills, or if you have balance problems, or a history of hamstring injuries.  However, DO NOT consider buying combi skis.   They are poor for both classic and skating.   You will need dedicated skis and poles for both classic and skating.\n\n6. If you are prone to cold hands, you may want to consider the wide, fancier (and more expensive) velcro grips which tend not to cut off circulation.  Be sure to try them out with the gloves or mitts you will be wearing, especially if you will be wearing thick ones.\n\n7.  Set up a waxing area ahead of time, if you have space to do this.   Then you will be ready to head out the door at the last moment.\n\nAny more suggestions people want to add?','READY, SET SKI!','','inherit','open','closed','','746-autosave-v1','','','2013-11-26 09:33:55','2013-11-26 14:33:55','',746,'https://sofits.ca/2013/11/03/746-autosave-v1/',0,'revision','',0),(751,7,'2013-11-03 16:20:03','2013-11-03 21:20:03','Don\'t be one of those surprised skiers who is not ready when the white stuff suddenly arrives.  Statistically we ski by mid November about one year out of three (check my website, <a title=\"musician on skis\" href=\"https://www.musicianonskis.ca/blog\">musicianonskis.ca/blog</a>  if you are skeptical).  One year there was was skiing on Hallowe\'en!  As soon as there are a few cm of snow we will start to ski.  There is nothing more discouraging than seeing your friends ski while you have to head elsewhere for a wet slog in your running shoes.\r\n\r\nIf you are buying new equipment, some suggestions:\r\n\r\n1.  Avoid waxless (\"fishscale\") skis like the plague!   You will neither be able to glide well or enjoy the downhills. And the noise will drive your friends to distraction.  The exception to this is a dedicated pair of high quality waxless skis chosen specifically for your body weight,  to be used  when conditions are above zero and waxing is tricky.\r\n\r\n2. Garage sale skis are not recommended!!!\r\n\r\n3. Use a dedicated ski shop such as Fresh Air (always my first choice).  They will be sure to fit you with skis of the correct camber, and poles of the correct length.   Avoid generic sports stores or downhill stores such as Tommy and Lefevre (spelling?) etc.   Pecco\'s, although it has good equipment and knowledgeable staff,  is famous for NOT standing behind their products after the sale.\r\n\r\n4. Always keep your old skis for \"rock skiing.   One can never have too many skis!   If they have really poor, antiquated bindings, consider upgrading the bindings to match your new boots, so that you have excellent control on both your rock skis and good skis.\r\n\r\n5. Combi boots are great, especially for control on downhills, or if you have balance problems, or a history of hamstring injuries.  However, DO NOT consider buying combi skis.   They are poor for both classic and skating.   You will need dedicated skis and poles for both classic and skating.\r\n\r\n6. If you are prone to cold hands, you may want to consider the wide, velcro grips which tend not to cut off circulation.  Be sure to try them out with the gloves or mitts you will be wearing, especially if you will be wearing thick ones.\r\n\r\n7.  Set up a waxing area ahead of time, if you have space to do this.   Then you will be ready to head out the door at the last moment.\r\n\r\nAny more suggestions people want to add?','READY, SET SKI!','','inherit','open','closed','','746-revision-v1','','','2013-11-03 16:20:03','2013-11-03 21:20:03','',746,'https://sofits.ca/2013/11/03/746-revision-v1/',0,'revision','',0),(752,7,'2013-11-03 16:20:38','2013-11-03 21:20:38','Don\'t be one of those surprised skiers who is not ready when the white stuff suddenly arrives.  Statistically we ski by mid November about one year out of three (check my website, <a title=\"musician on skis\" href=\"https://www.musicianonskis.ca/blog\">musicianonskis.ca/blog</a>  if you are skeptical).  One year there was was skiing on Hallowe\'en!  As soon as there are a few cm of snow we will start to ski.  There is nothing more discouraging than seeing your friends ski while you have to head elsewhere for a wet slog in your running shoes.\r\n\r\nIf you are buying new equipment, some suggestions:\r\n\r\n1.  Avoid waxless (\"fishscale\") skis like the plague!   You will neither be able to glide well or enjoy the downhills. And the noise will drive your friends to distraction.  The exception to this is a dedicated pair of high quality waxless skis chosen specifically for your body weight,  to be used  when conditions are above zero and waxing is tricky.\r\n\r\n2. Garage sale skis are not recommended!!!\r\n\r\n3. Use a dedicated ski shop such as Fresh Air (always my first choice).  They will be sure to fit you with skis of the correct camber, and poles of the correct length.   Avoid generic sports stores or downhill stores such as Tommy and Lefevre (spelling?) etc.   Pecco\'s, although it has good equipment and knowledgeable staff,  is famous for NOT standing behind their products after the sale.\r\n\r\n4. Always keep your old skis for \"rock skiing.   One can never have too many skis!   If they have really poor, antiquated bindings, consider upgrading the bindings to match your new boots, so that you have excellent control on both your rock skis and good skis.\r\n\r\n5. Combi boots are great, especially for control on downhills, or if you have balance problems, or a history of hamstring injuries.  However, DO NOT consider buying combi skis.   They are poor for both classic and skating.   You will need dedicated skis and poles for both classic and skating.\r\n\r\n6. If you are prone to cold hands, you may want to consider the wide, fancier (and more expensive) velcro grips which tend not to cut off circulation.  Be sure to try them out with the gloves or mitts you will be wearing, especially if you will be wearing thick ones.\r\n\r\n7.  Set up a waxing area ahead of time, if you have space to do this.   Then you will be ready to head out the door at the last moment.\r\n\r\nAny more suggestions people want to add?','READY, SET SKI!','','inherit','open','closed','','746-revision-v1','','','2013-11-03 16:20:38','2013-11-03 21:20:38','',746,'https://sofits.ca/2013/11/03/746-revision-v1/',0,'revision','',0),(753,7,'2013-11-03 16:21:28','2013-11-03 21:21:28','Don\'t be one of those surprised skiers who is not ready when the white stuff suddenly arrives.  Statistically we ski by mid November about one year out of three (check my website, <a title=\"musician on skis\" href=\"https://www.musicianonskis.ca/blog\">musicianonskis.ca/blog</a>  if you are skeptical).  One year there was was skiing on Hallowe\'en!  As soon as there are a few cm of snow we will start to ski.  There is nothing more discouraging than seeing your friends ski while you have to head elsewhere for a wet slog in your running shoes.\r\n\r\nIf you are buying new equipment, some suggestions:\r\n\r\n1.  Avoid waxless (\"fishscale\") skis like the plague!   You will neither be able to glide well nor enjoy the downhills. And the noise will drive your friends to distraction.  The exception to this is a dedicated pair of high quality waxless skis chosen specifically for your body weight,  to be used  when conditions are above zero and waxing is tricky.\r\n\r\n2. Garage sale skis are not recommended!!!\r\n\r\n3. Use a dedicated ski shop such as Fresh Air (always my first choice).  They will be sure to fit you with skis of the correct camber, and poles of the correct length.   Avoid generic sports stores or downhill stores such as Tommy and Lefevre (spelling?) etc.   Pecco\'s, although it has good equipment and knowledgeable staff,  is famous for NOT standing behind their products after the sale.\r\n\r\n4. Always keep your old skis for \"rock skiing.   One can never have too many skis!   If they have really poor, antiquated bindings, consider upgrading the bindings to match your new boots, so that you have excellent control on both your rock skis and good skis.\r\n\r\n5. Combi boots are great, especially for control on downhills, or if you have balance problems, or a history of hamstring injuries.  However, DO NOT consider buying combi skis.   They are poor for both classic and skating.   You will need dedicated skis and poles for both classic and skating.\r\n\r\n6. If you are prone to cold hands, you may want to consider the wide, fancier (and more expensive) velcro grips which tend not to cut off circulation.  Be sure to try them out with the gloves or mitts you will be wearing, especially if you will be wearing thick ones.\r\n\r\n7.  Set up a waxing area ahead of time, if you have space to do this.   Then you will be ready to head out the door at the last moment.\r\n\r\nAny more suggestions people want to add?','READY, SET SKI!','','inherit','open','closed','','746-revision-v1','','','2013-11-03 16:21:28','2013-11-03 21:21:28','',746,'https://sofits.ca/2013/11/03/746-revision-v1/',0,'revision','',0),(754,7,'2013-11-03 18:53:06','2013-11-03 23:53:06','','081029a','','inherit','open','closed','','081029a','','','2013-11-03 18:53:06','2013-11-03 23:53:06','',746,'https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg',0,'attachment','image/jpeg',0),(755,7,'2013-11-03 18:54:08','2013-11-03 23:54:08','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\"><img class=\"alignnone size-full wp-image-754\" alt=\"October 29, 2008\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\" width=\"600\" height=\"378\" /></a>\r\n\r\n(photo from Oct 29, 2008)\r\n\r\nDon\'t be one of those surprised skiers who is not ready when the white stuff suddenly arrives.  Statistically we ski in November most years.  One year there was was even skiing on Hallowe\'en!  As soon as there are a few cm of snow we will start to ski.  There is nothing more discouraging than seeing your friends ski while you have to head elsewhere for a wet slog in your running shoes.\r\n\r\nIf you are buying new equipment, some suggestions:\r\n\r\n1.  Avoid waxless (\"fishscale\") skis like the plague!   You will neither be able to glide well nor enjoy the downhills. And the noise will drive your friends to distraction.  The exception to this is a dedicated pair of high quality waxless skis chosen specifically for your body weight,  to be used  when conditions are above zero and waxing is tricky.\r\n\r\n2. Garage sale skis are not recommended!!!\r\n\r\n3. Use a dedicated ski shop such as Fresh Air (always my first choice).  They will be sure to fit you with skis of the correct camber, and poles of the correct length.   Avoid generic sports stores or downhill stores such as Tommy and Lefevre (spelling?) etc.   Pecco\'s, although it has good equipment and knowledgeable staff,  is famous for NOT standing behind their products after the sale.\r\n\r\n4. Always keep your old skis for \"rock skiing.   One can never have too many skis!   If they have really poor, antiquated bindings, consider upgrading the bindings to match your new boots, so that you have excellent control on both your rock skis and good skis.\r\n\r\n5. Combi boots are great, especially for control on downhills, or if you have balance problems, or a history of hamstring injuries.  However, DO NOT consider buying combi skis.   They are poor for both classic and skating.   You will need dedicated skis and poles for both classic and skating.\r\n\r\n6. If you are prone to cold hands, you may want to consider the wide, fancier (and more expensive) velcro grips which tend not to cut off circulation.  Be sure to try them out with the gloves or mitts you will be wearing, especially if you will be wearing thick ones.\r\n\r\n7.  Set up a waxing area ahead of time, if you have space to do this.   Then you will be ready to head out the door at the last moment.\r\n\r\nAny more suggestions people want to add?','READY, SET SKI!','','inherit','open','closed','','746-revision-v1','','','2013-11-03 18:54:08','2013-11-03 23:54:08','',746,'https://sofits.ca/2013/11/03/746-revision-v1/',0,'revision','',0),(756,7,'2013-11-03 18:58:26','2013-11-03 23:58:26','','081028','','inherit','open','closed','','081028','','','2013-11-03 18:58:26','2013-11-03 23:58:26','',743,'https://sofits.ca/wp-content/uploads/2013/11/081028.jpg',0,'attachment','image/jpeg',0),(757,7,'2013-11-19 08:21:56','2013-11-19 13:21:56','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg\"><img class=\"alignnone size-full wp-image-846\" alt=\"Wax Bench\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg\" width=\"700\" height=\"467\" /></a>\n\n<span style=\"color: #993366;\"><strong>Saturday Nov.23</strong>,  <strong>9 :30 a.m.  </strong></span>\n\n<span style=\"color: #993366;\"><strong>20 Chemin Lilsam, Chelsea (819 827 6376)</strong></span>\n\nThis is who I think is coming: Let me know if your name is missing.\n\nSharon, Julie, Meryl, Marg, Mary Lou, Bea, Ila and Joanne.\n\nBe sure that your skis are cleaned thoroughly before you come, and bring a small snack. There will be a $2 charge for glide wax.   We will wax the skis which are most in need of it!    Note that this is a basic course in glide and grip waxing.  If you have already glide waxed your own skis successfully for years and years, you do not need this course.   This is not about fancy, expensive race waxing.','WAXING CLINIC on Sat. Nov 23','','inherit','open','closed','','743-autosave-v1','','','2013-11-19 08:21:56','2013-11-19 13:21:56','',743,'https://sofits.ca/2013/11/03/743-autosave-v1/',0,'revision','',0),(758,7,'2013-11-03 18:58:42','2013-11-03 23:58:42','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081028.jpg\"><img class=\"alignnone size-full wp-image-756\" alt=\"Waxing Poetic\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081028.jpg\" width=\"600\" height=\"398\" /></a>Who would be interested in this?   Here are some possible dates ( with Sharon getting first dibs as she has already mentioned this to me!)  Please let me know if you are interested and which days DO NOT work for you.\r\n\r\n<strong>Thursday November  14</strong>, mid to late afternoon.\r\n\r\n<span style=\"color: #000000;\"><strong>Saturday November 16</strong></span>,  morning or afternoon (if morning, bring food!)\r\n\r\n<strong>Saturday November 23</strong>,  morning or afternoon (if morning, bring food!)\r\n\r\n<strong><span style=\"color: #000000;\">Monday November 25</span></strong>, morning (bring food! ).\r\n\r\n&nbsp;\r\n\r\nIf there is snow by any of these dates, we could finish/start with a short group ski.\r\n\r\nThere will be a small charge for glide wax, $2 a person.  If you have a portable wax bench, or iron, please bring them  along.  I am fully equipped to do only one pair of skis at a time.','WAXING CLINIC?','','inherit','open','closed','','743-revision-v1','','','2013-11-03 18:58:42','2013-11-03 23:58:42','',743,'https://sofits.ca/2013/11/03/743-revision-v1/',0,'revision','',0),(759,7,'2013-11-03 19:04:42','2013-11-04 00:04:42','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081028.jpg\"><img class=\"alignnone size-full wp-image-756\" alt=\"Waxing Poetic\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081028.jpg\" width=\"600\" height=\"398\" /></a>\r\n\r\nWho would be interested in this?   Here are some possible dates ( with Sharon getting first dibs as she has already mentioned this to me!)  Please let me know if you are interested and which days DO NOT work for you.\r\n\r\n<strong>Thursday November  14</strong>, mid to late afternoon.\r\n\r\n<span style=\"color: #000000;\"><strong>Saturday November 16</strong></span>,  morning or afternoon (if morning, bring food!)\r\n\r\n<strong>Saturday November 23</strong>,  morning or afternoon (if morning, bring food!)\r\n\r\n<strong><span style=\"color: #000000;\">Monday November 25</span></strong>, morning (bring food! ).\r\n\r\n&nbsp;\r\n\r\nIf there is snow by any of these dates, we could finish/start with a short group ski.\r\n\r\nThere will be a small charge for glide wax, $2 a person.  If you have a portable wax bench, or iron, please bring them  along.  I am fully equipped to do only one pair of skis at a time.','WAXING CLINIC?','','inherit','open','closed','','743-revision-v1','','','2013-11-03 19:04:42','2013-11-04 00:04:42','',743,'https://sofits.ca/2013/11/03/743-revision-v1/',0,'revision','',0),(770,7,'2013-11-09 08:27:51','2013-11-09 13:27:51','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081028.jpg\"><img class=\"alignnone size-full wp-image-756\" alt=\"Waxing Poetic\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081028.jpg\" width=\"600\" height=\"398\" /></a>\r\n\r\n<strong>Saturday November 23</strong>,  morning or afternoon (if morning, bring food!)\r\n\r\n<strong><span style=\"color: #000000;\">If there is a decent amount of snow the clinic will be in the morning, with a ski to follow.  Otherwise it will be in the afternoon.\r\n</span></strong>\r\n\r\nPlease confirm if you are planning to come (comments, below) .\r\n\r\nBe sure that your skis are cleaned thoroughly before you come. There will be a small charge for glide wax, $2 a person.  If you have a portable wax bench, or iron, please bring them  along.','WAXING CLINIC Sat. Nov 23','','inherit','open','closed','','743-revision-v1','','','2013-11-09 08:27:51','2013-11-09 13:27:51','',743,'https://sofits.ca/2013/11/09/743-revision-v1/',0,'revision','',0),(771,7,'2013-11-09 08:29:15','2013-11-09 13:29:15','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\"><img class=\"alignnone size-full wp-image-754\" alt=\"October 29, 2008\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\" width=\"600\" height=\"378\" /></a>\r\n\r\n(photo from Oct 29, 2008)\r\n\r\nIf you are buying new equipment, some suggestions:\r\n\r\n1.  Avoid waxless (\"fishscale\") skis like the plague!   You will neither be able to glide well nor enjoy the downhills. And the noise will drive your friends to distraction.  The exception to this is a dedicated pair of high quality waxless skis chosen specifically for your body weight,  to be used  when conditions are above zero and waxing is tricky.\r\n\r\n2. Garage sale skis are not recommended!!!\r\n\r\n3. Use a dedicated ski shop such as Fresh Air (always my first choice).  They will be sure to fit you with skis of the correct camber, and poles of the correct length.   Avoid generic sports stores or downhill stores such as Tommy and Lefevre (spelling?) etc.   Pecco\'s, although it has good equipment and knowledgeable staff,  is famous for NOT standing behind their products after the sale.\r\n\r\n4. Always keep your old skis for \"rock skiing.   One can never have too many skis!   If they have really poor, antiquated bindings, consider upgrading the bindings to match your new boots, so that you have excellent control on both your rock skis and good skis.\r\n\r\n5. Combi boots are great, especially for control on downhills, or if you have balance problems, or a history of hamstring injuries.  However, DO NOT consider buying combi skis.   They are poor for both classic and skating.   You will need dedicated skis and poles for both classic and skating.\r\n\r\n6. If you are prone to cold hands, you may want to consider the wide, fancier (and more expensive) velcro grips which tend not to cut off circulation.  Be sure to try them out with the gloves or mitts you will be wearing, especially if you will be wearing thick ones.\r\n\r\n7.  Set up a waxing area ahead of time, if you have space to do this.   Then you will be ready to head out the door at the last moment.\r\n\r\nAny more suggestions people want to add?','READY, SET SKI!','','inherit','open','closed','','746-revision-v1','','','2013-11-09 08:29:15','2013-11-09 13:29:15','',746,'https://sofits.ca/2013/11/09/746-revision-v1/',0,'revision','',0),(772,7,'2013-11-09 08:29:33','2013-11-09 13:29:33','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\"><img class=\"alignnone size-full wp-image-754\" alt=\"October 29, 2008\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\" width=\"600\" height=\"378\" /></a>\r\n\r\n(photo from Oct 29, 2008)\r\n\r\nIf you are buying new equipment, some suggestions:\r\n\r\n1.  Avoid waxless (\"fish-scale\") skis like the plague!   You will neither be able to glide well nor enjoy the downhills. And the noise will drive your friends to distraction.  The exception to this is a dedicated pair of high quality waxless skis chosen specifically for your body weight,  to be used  when conditions are above zero and waxing is tricky.\r\n\r\n2. Garage sale skis are not recommended!!!\r\n\r\n3. Use a dedicated ski shop such as Fresh Air (always my first choice).  They will be sure to fit you with skis of the correct camber, and poles of the correct length.   Avoid generic sports stores or downhill stores such as Tommy and Lefevre (spelling?) etc.   Pecco\'s, although it has good equipment and knowledgeable staff,  is famous for NOT standing behind their products after the sale.\r\n\r\n4. Always keep your old skis for \"rock skiing.   One can never have too many skis!   If they have really poor, antiquated bindings, consider upgrading the bindings to match your new boots, so that you have excellent control on both your rock skis and good skis.\r\n\r\n5. Combi boots are great, especially for control on downhills, or if you have balance problems, or a history of hamstring injuries.  However, DO NOT consider buying combi skis.   They are poor for both classic and skating.   You will need dedicated skis and poles for both classic and skating.\r\n\r\n6. If you are prone to cold hands, you may want to consider the wide, fancier (and more expensive) velcro grips which tend not to cut off circulation.  Be sure to try them out with the gloves or mitts you will be wearing, especially if you will be wearing thick ones.\r\n\r\n7.  Set up a waxing area ahead of time, if you have space to do this.   Then you will be ready to head out the door at the last moment.\r\n\r\nAny more suggestions people want to add?','READY, SET SKI!','','inherit','open','closed','','746-revision-v1','','','2013-11-09 08:29:33','2013-11-09 13:29:33','',746,'https://sofits.ca/2013/11/09/746-revision-v1/',0,'revision','',0),(774,7,'2013-11-09 08:34:52','2013-11-09 13:34:52','','Workout of November 8 2013','','inherit','open','closed','','workout-of-november-8-2013','','','2013-11-09 08:34:52','2013-11-09 13:34:52','',346,'https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-8-2013-.pdf',0,'attachment','application/pdf',0),(775,7,'2013-11-09 08:35:19','2013-11-09 13:35:19','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-8-2013-.pdf\">Week 8: Workout of November 8 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-1-2013.pdf\">Week 7: Workout of November 1 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-25-2013.pdf\">Week 6: Workout of October 25 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-18-2013-.pdf\">Week 5: Workout of October 18 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct10-2013-.pdf\">Week 4: Workout of October 10 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-3-2013-.pdf\">Week 3: Workout of October 3 2013</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  27 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-11-09 08:35:19','2013-11-09 13:35:19','',346,'https://sofits.ca/2013/11/09/346-revision-v1/',0,'revision','',0),(782,7,'2013-11-11 09:06:05','2013-11-11 14:06:05','','051115','','inherit','open','closed','','051115','','','2015-11-22 18:47:59','2015-11-22 23:47:59','',0,'https://sofits.ca/wp-content/uploads/2013/11/051115.jpg',0,'attachment','image/jpeg',0),(786,7,'2013-11-11 10:31:39','2013-11-11 15:31:39','<div></div>\r\nHi! I have the pleasure of joining you this year in SOFITS. I have volunteered to organize a Pot Luck to serve as a \'Meet and Greet\' and to celebrate the beginning of a new ski season. Please join us on Sunday, November 17 at 11:00, 28 Centrepark Drive, Blackburn Hamlet. Sunday brunch has a great appeal in the cold, dark days of November. Hot coffee, fresh fruit... croissants, good friends. Please feel free to invite your partners/spouses as well.   RSVP on the Facebook event page.\r\nSusan\r\n613 824 2091\r\n\r\n&nbsp;\r\n\r\n&nbsp;','POTLUCK  SAT. NOV.  17, 11:00 am','','inherit','open','closed','','561-revision-v1','','','2013-11-11 10:31:39','2013-11-11 15:31:39','',561,'https://sofits.ca/2013/11/11/561-revision-v1/',0,'revision','',0),(787,7,'2013-11-11 10:33:52','2013-11-11 15:33:52','<div></div>\r\nHi! I have the pleasure of joining you this year in SOFITS. I have volunteered to organize a Pot Luck to serve as a \'Meet and Greet\' and to celebrate the beginning of a new ski season. Please join us on Sunday, November 17 at 11:00, 28 Centrepark Drive, Blackburn Hamlet. Sunday brunch has a great appeal in the cold, dark days of November. Hot coffee, fresh fruit... croissants, good friends. Please feel free to invite your partners/spouses as well.   RSVP on the Facebook event page.\r\nSusan\r\n613 824 2091\r\n\r\n&nbsp;\r\n\r\n&nbsp;','SUSAN O\'s POTLUCK  Sat. Nov.  17, 11:00 am','','inherit','open','closed','','561-revision-v1','','','2013-11-11 10:33:52','2013-11-11 15:33:52','',561,'https://sofits.ca/2013/11/11/561-revision-v1/',0,'revision','',0),(789,7,'2013-11-11 10:35:17','2013-11-11 15:35:17','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081028.jpg\"><img class=\"alignnone size-full wp-image-756\" alt=\"Waxing Poetic\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081028.jpg\" width=\"600\" height=\"398\" /></a>\r\n\r\n<strong>Saturday November 23</strong>,  morning or afternoon (if morning, bring food!)\r\n\r\n<strong><span style=\"color: #000000;\">If there is a decent amount of snow the clinic will be in the morning, with a ski to follow.  Otherwise it will be in the afternoon.\r\n</span></strong>\r\n\r\nPlease confirm if you are planning to come (comments, below) .\r\n\r\nBe sure that your skis are cleaned thoroughly before you come. There will be a small charge for glide wax, $2 a person.  If you have a portable wax bench, or iron, please bring them  along.','WAXING CLINIC on Sat. Nov 23','','inherit','open','closed','','743-revision-v1','','','2013-11-11 10:35:17','2013-11-11 15:35:17','',743,'https://sofits.ca/2013/11/11/743-revision-v1/',0,'revision','',0),(790,7,'2013-11-13 11:41:09','2013-11-13 16:41:09','Specific dates for the entire season are listed under WEEKLY GROUP TRAINING.\r\n\r\n1.    The 22 week season is  periodized to peak and end in early February.  It will build from week to week.  Although training ends in mid February, there will likely be at least 6 more weeks of great skiing after that for group outings.\r\n\r\n2.    Each weekly workout and a generic plan of other timely workouts for that week will be posted on the website . We can arrange a group meeting for those who wish to have help personalizing the plans.\r\n\r\n3.    There will be 3 or 4 casual and fun time trials.\r\n\r\n4.    There will be one (or more)all-day clinic (including both skate and classic) at Nakkertok in January.\r\n\r\n5.    An epic ski is planned for Dec 27, in lieu of a workout.  In addition to scenery and a party afterwards, there will be components of a workout embedded into the long ski. Potluck to follow at my house.\r\n\r\n6.     There is a $15.00 fee to join, (enough to cover  website costs, keep my coaching credentials up to date and purchase small amounts of equipment).  After some deliberating, I have decided not to be “locked in” by charging  for each workout. <strong><span style=\"color: #000000;\">However if anyone  misses a total of 3 Friday workouts, then there will be a $10 penalty fee for any workout missed after that. </span></strong> If anyone misses 3 Fridays in a row and is not ill or traveling, they will be asked if they want to continue with the group.   Members are welcome to bring a guest, but the guest  must pay $10.  If you know you will be missing many of the sessions, please consider whether you really want to join this group.\r\n\r\n7.     Membership for Friday Dryland and Ski Training will be capped at around 20, with first dibs to those who participated in the dryland and ski training last year.  If a member offers some skills which I can use I may accept one or two more!\r\n\r\n8.     Each participant is required to contribute volunteer time and effort on behalf of the group.  See the  <a href=\"https://www.sofits.ca/co-op\">CO-OP</a>  link for some ideas.','ABOUT THIS YEAR','','inherit','open','closed','','542-revision-v1','','','2013-11-13 11:41:09','2013-11-13 16:41:09','',542,'https://sofits.ca/2013/11/13/542-revision-v1/',0,'revision','',0),(791,7,'2013-11-13 11:44:14','2013-11-13 16:44:14','I am reposting this - although you probably all read it when it was first  posted  in early September - note #6 in particular.  A couple of people have already missed 3 workouts since Thanksgiving (before that doesn\'t count as the sessions were on Thursdays).\n\n1.    The 22 week season is  periodized to peak and end in early February.  It will build from week to week.  Although training ends in mid February, there will likely be at least 6 more weeks of great skiing after that for group outings.\n\n2.    Each weekly workout and a generic plan of other timely workouts for that week will be posted on the website . We can arrange a group meeting for those who wish to have help personalizing the plans.\n\n3.    There will be 3 or 4 casual and fun time trials.\n\n4.    There will be one (or more)all-day clinic (including both skate and classic) at Nakkertok in January.\n\n5.    An epic ski is planned for Dec 27, in lieu of a workout.  In addition to scenery and a party afterwards, there will be components of a workout embedded into the long ski. Potluck to follow at my house.\n\n6.     There is a $15.00 fee to join, (enough to cover  website costs, keep my coaching credentials up to date and purchase small amounts of equipment).  After some deliberating, I have decided not to be “locked in” by charging  for each workout. <strong><span style=\"color: #000000;\">However if anyone  misses a total of 3 Friday workouts, then there will be a $10 penalty fee for any workout missed after that. </span></strong> If anyone misses 3 Fridays in a row and is not ill or traveling, they will be asked if they want to continue with the group.   Members are welcome to bring a guest, but the guest  must pay $10.  If you know you will be missing many of the sessions, please consider whether you really want to join this group.\n\n7.     Membership for Friday Dryland and Ski Training will be capped at around 20, with first dibs to those who participated in the dryland and ski training last year.  If a member offers some skills which I can use I may accept one or two more!\n\n8.     Each participant is required to contribute volunteer time and effort on behalf of the group.  See the  <a href=\"https://www.sofits.ca/co-op\">CO-OP</a>  link for some ideas.','ABOUT THIS YEAR','','inherit','open','closed','','542-autosave-v1','','','2013-11-13 11:44:14','2013-11-13 16:44:14','',542,'https://sofits.ca/2013/11/13/542-autosave-v1/',0,'revision','',0),(792,7,'2013-11-13 11:44:59','2013-11-13 16:44:59','I am reposting this - although you hopefully all read it when it was first  posted  in early September - note #6 in particular.  A couple of people have already missed 3 workouts since Thanksgiving (before that doesn\'t count as the sessions were on Thursdays).\r\n\r\n1.    The 22 week season is  periodized to peak and end in early February.  It will build from week to week.  Although training ends in mid February, there will likely be at least 6 more weeks of great skiing after that for group outings.\r\n\r\n2.    Each weekly workout and a generic plan of other timely workouts for that week will be posted on the website . We can arrange a group meeting for those who wish to have help personalizing the plans.\r\n\r\n3.    There will be 3 or 4 casual and fun time trials.\r\n\r\n4.    There will be one (or more)all-day clinic (including both skate and classic) at Nakkertok in January.\r\n\r\n5.    An epic ski is planned for Dec 27, in lieu of a workout.  In addition to scenery and a party afterwards, there will be components of a workout embedded into the long ski. Potluck to follow at my house.\r\n\r\n6.     There is a $15.00 fee to join, (enough to cover  website costs, keep my coaching credentials up to date and purchase small amounts of equipment).  After some deliberating, I have decided not to be “locked in” by charging  for each workout. <strong><span style=\"color: #000000;\">However if anyone  misses a total of 3 Friday workouts, then there will be a $10 penalty fee for any workout missed after that. </span></strong> If anyone misses 3 Fridays in a row and is not ill or traveling, they will be asked if they want to continue with the group.   Members are welcome to bring a guest, but the guest  must pay $10.  If you know you will be missing many of the sessions, please consider whether you really want to join this group.\r\n\r\n7.     Membership for Friday Dryland and Ski Training will be capped at around 20, with first dibs to those who participated in the dryland and ski training last year.  If a member offers some skills which I can use I may accept one or two more!\r\n\r\n8.     Each participant is required to contribute volunteer time and effort on behalf of the group.  See the  <a href=\"https://www.sofits.ca/co-op\">CO-OP</a>  link for some ideas.','ABOUT THIS YEAR','','inherit','open','closed','','542-revision-v1','','','2013-11-13 11:44:59','2013-11-13 16:44:59','',542,'https://sofits.ca/2013/11/13/542-revision-v1/',0,'revision','',0),(799,7,'2013-11-14 19:17:08','2013-11-15 00:17:08','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/131114_Moon_Dusk.jpg\"><img class=\"alignnone size-full wp-image-800\" alt=\"131114_Moon_Dusk\" src=\"https://sofits.ca/wp-content/uploads/2013/11/131114_Moon_Dusk.jpg\" width=\"800\" height=\"531\" /></a>','P5 This Evening','','publish','open','closed','','p5-this-evening','','','2013-11-14 19:17:08','2013-11-15 00:17:08','',0,'https://sofits.ca/?p=799',0,'post','',0),(800,7,'2013-11-14 19:16:05','2013-11-15 00:16:05','','131114_Moon_Dusk','','inherit','open','closed','','131114_moon_dusk','','','2013-11-14 19:16:05','2013-11-15 00:16:05','',799,'https://sofits.ca/wp-content/uploads/2013/11/131114_Moon_Dusk.jpg',0,'attachment','image/jpeg',0),(801,7,'2013-11-14 19:17:08','2013-11-15 00:17:08','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/131114_Moon_Dusk.jpg\"><img class=\"alignnone size-full wp-image-800\" alt=\"131114_Moon_Dusk\" src=\"https://sofits.ca/wp-content/uploads/2013/11/131114_Moon_Dusk.jpg\" width=\"800\" height=\"531\" /></a>','P5 This Evening','','inherit','open','closed','','799-revision-v1','','','2013-11-14 19:17:08','2013-11-15 00:17:08','',799,'https://sofits.ca/2013/11/14/799-revision-v1/',0,'revision','',0),(803,7,'2013-11-15 16:33:25','2013-11-15 21:33:25','','Workout of November 15 2013','','inherit','open','closed','','workout-of-november-15-2013','','','2013-11-15 16:33:25','2013-11-15 21:33:25','',346,'https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-15-2013-.pdf',0,'attachment','application/pdf',0),(804,7,'2013-11-15 16:33:55','2013-11-15 21:33:55','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-15-2013-.pdf\">Week 9: Workout of November 15 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-8-2013-.pdf\">Week 8: Workout of November 8 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-1-2013.pdf\">Week 7: Workout of November 1 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-25-2013.pdf\">Week 6: Workout of October 25 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-18-2013-.pdf\">Week 5: Workout of October 18 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct10-2013-.pdf\">Week 4: Workout of October 10 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-3-2013-.pdf\">Week 3: Workout of October 3 2013</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  27 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-11-15 16:33:55','2013-11-15 21:33:55','',346,'https://sofits.ca/2013/11/15/346-revision-v1/',0,'revision','',0),(806,7,'2013-11-17 22:28:51','2013-11-18 03:28:51','Sharon Ski Walking, Nov 7, 2013','Sharon_mpeg4','','inherit','open','closed','','sharon_mpeg4','','','2013-11-17 22:28:51','2013-11-18 03:28:51','',0,'https://sofits.ca/wp-content/uploads/2013/11/Sharon_mpeg4.mp4',0,'attachment','video/mp4',0),(814,7,'2013-11-17 23:17:25','2013-11-18 04:17:25','','Kathy_Nov1_2013','','inherit','open','closed','','kathy_nov1_2013','','','2013-11-17 23:17:25','2013-11-18 04:17:25','',723,'https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4',0,'attachment','video/mp4',0),(815,7,'2013-11-17 23:18:34','2013-11-18 04:18:34','&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\">Kathy_Nov1_2013</a>\r\n\r\n<a href=\"https://sofits.ca/ski-technique/kathy_nov1_2013/\">Kathy_Nov1_2013</a>\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-11-17 23:18:34','2013-11-18 04:18:34','',723,'https://sofits.ca/2013/11/17/723-revision-v1/',0,'revision','',0),(816,7,'2013-11-17 23:19:40','2013-11-18 04:19:40','Kathy! And here she is in action (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-11-17 23:19:40','2013-11-18 04:19:40','',723,'https://sofits.ca/2013/11/17/723-revision-v1/',0,'revision','',0),(817,7,'2013-11-17 23:21:48','2013-11-18 04:21:48','(AHA!  I finally figure this out - I\'ll post more of you in the next week or two).\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-11-17 23:21:48','2013-11-18 04:21:48','',723,'https://sofits.ca/2013/11/17/723-revision-v1/',0,'revision','',0),(821,7,'2013-11-18 09:52:12','2013-11-18 14:52:12','','Janey1','','inherit','open','closed','','janey1','','','2013-11-18 09:52:12','2013-11-18 14:52:12','',723,'https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4',0,'attachment','video/mp4',0),(822,7,'2013-11-18 09:52:33','2013-11-18 14:52:33','Below you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-11-18 09:52:33','2013-11-18 14:52:33','',723,'https://sofits.ca/2013/11/18/723-revision-v1/',0,'revision','',0),(823,7,'2013-11-18 09:52:56','2013-11-18 14:52:56','Below you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-11-18 09:52:56','2013-11-18 14:52:56','',723,'https://sofits.ca/2013/11/18/723-revision-v1/',0,'revision','',0),(824,7,'2013-11-19 18:10:11','2013-11-19 23:10:11','\"Can anyone guess what I have in my living room? I\'ll give you a hint: they\'re purple and white! If you guessed SOFITS shirts, you guessed right! (Hey, that rhymes.)\r\nI will bring the shirts to this week\'s Friday workout. The cost of the short sleeved shirts is $22.04 and the long sleeved version is $43.51. Please bring funds on Friday. I guess a cheque would be easiest. Does everyone remember what they ordered? If not, I\'ll post a list of what everyone ordered here.\r\nBy the way, they look great!\"\r\n\r\nMeryl\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\"><img class=\"alignnone size-full wp-image-635\" alt=\"Top of Penguin Hill\" src=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\" width=\"700\" height=\"545\" /></a>','PURPLE and WHITE','','publish','open','closed','','purple-and-white','','','2013-11-26 09:29:14','2013-11-26 14:29:14','',0,'https://sofits.ca/?p=824',0,'post','',0),(825,7,'2013-11-18 13:32:11','2013-11-18 18:32:11','Can anyone guess what I have in my living room? I\'ll give you a hint: they\'re purple and white! If you guessed SOFITS shirts, you guessed right! (Hey, that rhymes.)\r\nI will bring the shirts to this week\'s Friday workout. The cost of the short sleeved shirts is $22.04 and the long sleeved version is $43.51. Please bring funds on Friday. I guess a cheque would be easiest. Does everyone remember what they ordered? If not, I\'ll post a list of what everyone ordered here.\r\nBy the way, they look great!','PURPLE and WHITE','','inherit','open','closed','','824-revision-v1','','','2013-11-18 13:32:11','2013-11-18 18:32:11','',824,'https://sofits.ca/2013/11/18/824-revision-v1/',0,'revision','',0),(826,7,'2013-11-18 13:35:01','2013-11-18 18:35:01','\"Can anyone guess what I have in my living room? I\'ll give you a hint: they\'re purple and white! If you guessed SOFITS shirts, you guessed right! (Hey, that rhymes.)\nI will bring the shirts to this week\'s Friday workout. The cost of the short sleeved shirts is $22.04 and the long sleeved version is $43.51. Please bring funds on Friday. I guess a cheque would be easiest. Does everyone remember what they ordered? If not, I\'ll post a list of what everyone ordered here.\nBy the way, they look great!\"     Meryl<a href=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\"><img class=\"alignnone size-full wp-image-635\" alt=\"Top of Penguin Hill\" src=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\" width=\"700\" height=\"545\" /></a>','PURPLE and WHITE','','inherit','open','closed','','824-autosave-v1','','','2013-11-18 13:35:01','2013-11-18 18:35:01','',824,'https://sofits.ca/2013/11/18/824-autosave-v1/',0,'revision','',0),(827,7,'2013-11-18 13:35:04','2013-11-18 18:35:04','\"Can anyone guess what I have in my living room? I\'ll give you a hint: they\'re purple and white! If you guessed SOFITS shirts, you guessed right! (Hey, that rhymes.)\r\nI will bring the shirts to this week\'s Friday workout. The cost of the short sleeved shirts is $22.04 and the long sleeved version is $43.51. Please bring funds on Friday. I guess a cheque would be easiest. Does everyone remember what they ordered? If not, I\'ll post a list of what everyone ordered here.\r\nBy the way, they look great!\"     Meryl<a href=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\"><img class=\"alignnone size-full wp-image-635\" alt=\"Top of Penguin Hill\" src=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\" width=\"700\" height=\"545\" /></a>','PURPLE and WHITE','','inherit','open','closed','','824-revision-v1','','','2013-11-18 13:35:04','2013-11-18 18:35:04','',824,'https://sofits.ca/2013/11/18/824-revision-v1/',0,'revision','',0),(828,7,'2013-11-18 13:42:44','2013-11-18 18:42:44','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081028.jpg\"><img class=\"alignnone size-full wp-image-756\" alt=\"Waxing Poetic\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081028.jpg\" width=\"600\" height=\"398\" /></a>\r\n\r\n<span style=\"color: #993366;\"><strong>Saturday November 23</strong>,   <strong>9 :30 a.m. at 20 Chemin Lilsam, Chelsea (819 827 6376)</strong></span>\r\n\r\nBe sure that your skis are cleaned thoroughly before you come, and bring a small snack. There will be a $2 charge for glide wax.   We will wax the skis which are most in need of it!  There seemed to be some confusion about this posting, so I\'ve created a facebook event where you can confirm if you are coming.','WAXING CLINIC on Sat. Nov 23','','inherit','open','closed','','743-revision-v1','','','2013-11-18 13:42:44','2013-11-18 18:42:44','',743,'https://sofits.ca/2013/11/18/743-revision-v1/',0,'revision','',0),(829,7,'2013-11-18 13:49:00','2013-11-18 18:49:00','<strong>An update about missed sessions:  </strong> Marg has offered to collect the money for the \"end of ski season party fund\".  This $10 fee would take effect only after 3 sessions are missed, and only for subsequent missed sessions.  (No one has missed enough sessions yet to be eligible. )\r\n\r\nBy the way, if you are feeling tired or are getting over a cold or injury, it would be great to still have you come out if you are up to that.  I can always use an extra body to help with running the session.  If I know you are coming but can\'t take part, I\'ll find a job for you!','The PARTY FUND','','publish','open','closed','','the-end-of-year-party-fund','','','2013-11-18 18:24:52','2013-11-18 23:24:52','',0,'https://sofits.ca/?p=829',0,'post','',0),(830,7,'2013-11-18 13:49:00','2013-11-18 18:49:00','<strong>An update about missed sessions:  </strong> Marg has offered to collect the money for the EYPF.  This $10 fee would take effect only after 3 sessions are missed, and only for subsequent missed sessions.  (No one has missed enough sessions yet to be eligible. )\r\n\r\nBy the way, if you are feeling tired or are getting over a cold or injury, it would be great to still have you come out if you are up to that.  I can always use an extra body to help with running the session.  If I know you are coming and can\'t take part, I\'ll find a job for you!','The End of Year Party Fund','','inherit','open','closed','','829-revision-v1','','','2013-11-18 13:49:00','2013-11-18 18:49:00','',829,'https://sofits.ca/2013/11/18/829-revision-v1/',0,'revision','',0),(832,7,'2013-11-18 13:59:27','2013-11-18 18:59:27','I am absolutely thrilled with the attendance this year!\r\n\r\nAlthough I know there can be countless roadblocks to attending (illness, injuries, concerns with children and parents, work commitments, other training, travel and household emergencies) it\'s evident that no one is treating the group as a \"drop in if nothing better comes along\" .  Thank you!  It\'s very encouraging!\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Here are the numbers so far, since Thanksgiving:</strong></span>\r\n\r\nPerfect Attendance:  <strong>6</strong> (including the coach)\r\n\r\nMissed one practice:  <strong>10</strong>\r\n\r\nMissed 2 practices: <strong>4</strong>\r\n\r\nMissed 3 practices: <strong>2 </strong>','FYI: Attendance','','publish','open','closed','','fyi-attendance','','','2013-11-18 13:59:27','2013-11-18 18:59:27','',0,'https://sofits.ca/?p=832',0,'post','',0),(833,7,'2013-11-18 13:59:27','2013-11-18 18:59:27','I am absolutely thrilled with the attendance this year!\r\n\r\nAlthough I know there can be countless roadblocks to attending (illness, injuries, concerns with children and parents, work commitments, other training, travel and household emergencies) it\'s evident that no one is treating the group as a \"drop in if nothing better comes along\" .  Thank you!  It\'s very encouraging!\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Here are the numbers so far, since Thanksgiving:</strong></span>\r\n\r\nPerfect Attendance:  <strong>6</strong> (including the coach)\r\n\r\nMissed one practice:  <strong>10</strong>\r\n\r\nMissed 2 practices: <strong>4</strong>\r\n\r\nMissed 3 practices: <strong>2 </strong>','FYI: Attendance','','inherit','open','closed','','832-revision-v1','','','2013-11-18 13:59:27','2013-11-18 18:59:27','',832,'https://sofits.ca/2013/11/18/832-revision-v1/',0,'revision','',0),(834,7,'2013-11-18 14:00:17','2013-11-18 19:00:17','<strong>An update about missed sessions:  </strong> Marg has offered to collect the money for the EYPF.  This $10 fee would take effect only after 3 sessions are missed, and only for subsequent missed sessions.  (No one has missed enough sessions yet to be eligible. )\r\n\r\nBy the way, if you are feeling tired or are getting over a cold or injury, it would be great to still have you come out if you are up to that.  I can always use an extra body to help with running the session.  If I know you are coming but can\'t take part, I\'ll find a job for you!','The End of Year Party Fund','','inherit','open','closed','','829-revision-v1','','','2013-11-18 14:00:17','2013-11-18 19:00:17','',829,'https://sofits.ca/2013/11/18/829-revision-v1/',0,'revision','',0),(835,7,'2013-11-18 14:01:00','2013-11-18 19:01:00','<strong>An update about missed sessions:  </strong> Marg has offered to collect the money for the end of ski season party fun.  This $10 fee would take effect only after 3 sessions are missed, and only for subsequent missed sessions.  (No one has missed enough sessions yet to be eligible. )\r\n\r\nBy the way, if you are feeling tired or are getting over a cold or injury, it would be great to still have you come out if you are up to that.  I can always use an extra body to help with running the session.  If I know you are coming but can\'t take part, I\'ll find a job for you!','The PARTY FUND','','inherit','open','closed','','829-revision-v1','','','2013-11-18 14:01:00','2013-11-18 19:01:00','',829,'https://sofits.ca/2013/11/18/829-revision-v1/',0,'revision','',0),(836,7,'2013-11-18 14:04:09','2013-11-18 19:04:09','\"Can anyone guess what I have in my living room? I\'ll give you a hint: they\'re purple and white! If you guessed SOFITS shirts, you guessed right! (Hey, that rhymes.)\r\nI will bring the shirts to this week\'s Friday workout. The cost of the short sleeved shirts is $22.04 and the long sleeved version is $43.51. Please bring funds on Friday. I guess a cheque would be easiest. Does everyone remember what they ordered? If not, I\'ll post a list of what everyone ordered here.\r\nBy the way, they look great!\"\r\n\r\nMeryl<a href=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\"><img class=\"alignnone size-full wp-image-635\" alt=\"Top of Penguin Hill\" src=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\" width=\"700\" height=\"545\" /></a>','PURPLE and WHITE','','inherit','open','closed','','824-revision-v1','','','2013-11-18 14:04:09','2013-11-18 19:04:09','',824,'https://sofits.ca/2013/11/18/824-revision-v1/',0,'revision','',0),(837,7,'2013-11-18 14:04:39','2013-11-18 19:04:39','\"Can anyone guess what I have in my living room? I\'ll give you a hint: they\'re purple and white! If you guessed SOFITS shirts, you guessed right! (Hey, that rhymes.)\r\nI will bring the shirts to this week\'s Friday workout. The cost of the short sleeved shirts is $22.04 and the long sleeved version is $43.51. Please bring funds on Friday. I guess a cheque would be easiest. Does everyone remember what they ordered? If not, I\'ll post a list of what everyone ordered here.\r\nBy the way, they look great!\"\r\n\r\nMeryl\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\"><img class=\"alignnone size-full wp-image-635\" alt=\"Top of Penguin Hill\" src=\"https://sofits.ca/wp-content/uploads/2013/10/Sofits-Oct-10-2013.jpg\" width=\"700\" height=\"545\" /></a>','PURPLE and WHITE','','inherit','open','closed','','824-revision-v1','','','2013-11-18 14:04:39','2013-11-18 19:04:39','',824,'https://sofits.ca/2013/11/18/824-revision-v1/',0,'revision','',0),(838,7,'2013-11-18 14:06:43','2013-11-18 19:06:43','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081028.jpg\"><img class=\"alignnone size-full wp-image-756\" alt=\"Waxing Poetic\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081028.jpg\" width=\"600\" height=\"398\" /></a>\r\n\r\n<span style=\"color: #993366;\"><strong>Saturday Nov.23</strong>,  <strong>9 :30 a.m.  </strong></span>\r\n\r\n<span style=\"color: #993366;\"><strong>20 Chemin Lilsam, Chelsea (819 827 6376)</strong></span>\r\n\r\nBe sure that your skis are cleaned thoroughly before you come, and bring a small snack. There will be a $2 charge for glide wax.   We will wax the skis which are most in need of it!  There seemed to be some confusion about this posting, so I\'ve created a facebook event where you can confirm if you are coming.','WAXING CLINIC on Sat. Nov 23','','inherit','open','closed','','743-revision-v1','','','2013-11-18 14:06:43','2013-11-18 19:06:43','',743,'https://sofits.ca/2013/11/18/743-revision-v1/',0,'revision','',0),(839,7,'2013-11-18 14:31:21','2013-11-18 19:31:21','','Training Hours','','inherit','open','closed','','training-hours','','','2013-11-18 14:31:21','2013-11-18 19:31:21','',319,'https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf',0,'attachment','application/pdf',0),(840,7,'2013-11-18 14:33:50','2013-11-18 19:33:50','Here are the preliminary documents from the first workshop.    A couple more  to come.\r\n\r\n&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>','TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-11-18 14:33:50','2013-11-18 19:33:50','',319,'https://sofits.ca/2013/11/18/319-revision-v1/',0,'revision','',0),(842,7,'2013-11-18 17:51:10','2013-11-18 22:51:10','','Addtional Notes Nov 2nd Personal Training Workshop','','inherit','open','closed','','addtional-notes-nov-2nd-personal-training-workshop','','','2013-11-18 17:51:10','2013-11-18 22:51:10','',319,'https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf',0,'attachment','application/pdf',0),(843,7,'2013-11-18 17:52:19','2013-11-18 22:52:19','Here are the preliminary documents from the first workshop.    A couple more  to come.\r\n\r\n&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>','TRAINING PLANS','','inherit','open','closed','','319-revision-v1','','','2013-11-18 17:52:19','2013-11-18 22:52:19','',319,'https://sofits.ca/2013/11/18/319-revision-v1/',0,'revision','',0),(844,7,'2013-11-18 17:54:57','2013-11-18 22:54:57','','Ski Waxing','','inherit','open','closed','','ski-waxing','','','2013-11-18 17:54:57','2013-11-18 22:54:57','',319,'https://sofits.ca/wp-content/uploads/2013/09/Ski-Waxing.pdf',0,'attachment','application/pdf',0),(845,7,'2013-11-18 17:55:13','2013-11-18 22:55:13','Here are the preliminary documents from the first workshop.    A couple more  to come.\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Ski-Waxing.pdf\">Ski Waxing</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>','TRAINING PLANS & WAXING','','inherit','open','closed','','319-revision-v1','','','2013-11-18 17:55:13','2013-11-18 22:55:13','',319,'https://sofits.ca/2013/11/18/319-revision-v1/',0,'revision','',0),(846,7,'2013-11-18 18:22:09','2013-11-18 23:22:09','','Wax-Bench_0001','','inherit','open','closed','','wax-bench_0001','','','2013-11-18 18:22:09','2013-11-18 23:22:09','',743,'https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg',0,'attachment','image/jpeg',0),(847,7,'2013-11-18 18:22:41','2013-11-18 23:22:41','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg\"><img class=\"alignnone size-full wp-image-846\" alt=\"Wax Bench\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg\" width=\"700\" height=\"467\" /></a>\r\n\r\n<span style=\"color: #993366;\"><strong>Saturday Nov.23</strong>,  <strong>9 :30 a.m.  </strong></span>\r\n\r\n<span style=\"color: #993366;\"><strong>20 Chemin Lilsam, Chelsea (819 827 6376)</strong></span>\r\n\r\nBe sure that your skis are cleaned thoroughly before you come, and bring a small snack. There will be a $2 charge for glide wax.   We will wax the skis which are most in need of it!  There seemed to be some confusion about this posting, so I\'ve created a facebook event where you can confirm if you are coming.','WAXING CLINIC on Sat. Nov 23','','inherit','open','closed','','743-revision-v1','','','2013-11-18 18:22:41','2013-11-18 23:22:41','',743,'https://sofits.ca/2013/11/18/743-revision-v1/',0,'revision','',0),(848,7,'2013-11-18 18:24:52','2013-11-18 23:24:52','<strong>An update about missed sessions:  </strong> Marg has offered to collect the money for the \"end of ski season party fund\".  This $10 fee would take effect only after 3 sessions are missed, and only for subsequent missed sessions.  (No one has missed enough sessions yet to be eligible. )\r\n\r\nBy the way, if you are feeling tired or are getting over a cold or injury, it would be great to still have you come out if you are up to that.  I can always use an extra body to help with running the session.  If I know you are coming but can\'t take part, I\'ll find a job for you!','The PARTY FUND','','inherit','open','closed','','829-revision-v1','','','2013-11-18 18:24:52','2013-11-18 23:24:52','',829,'https://sofits.ca/2013/11/18/829-revision-v1/',0,'revision','',0),(849,7,'2013-11-19 08:22:14','2013-11-19 13:22:14','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg\"><img class=\"alignnone size-full wp-image-846\" alt=\"Wax Bench\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg\" width=\"700\" height=\"467\" /></a>\r\n\r\n<span style=\"color: #993366;\"><strong>Saturday Nov.23</strong>,  <strong>9 :30 a.m.  </strong></span>\r\n\r\n<span style=\"color: #993366;\"><strong>20 Chemin Lilsam, Chelsea (819 827 6376)</strong></span>\r\n\r\nThis is who I think is coming: Let me know if your name is missing.\r\n\r\nSharon, Julie, Meryl, Marg, Mary Lou, Bea, Ila and Joanne.\r\n\r\nBe sure that your skis are cleaned thoroughly before you come, and bring a small snack. There will be a $2 charge for glide wax.   We will wax the skis which are most in need of it!    Note that this is a basic course in glide and grip waxing.  If you have already glide waxed your own skis successfully for years and years, you do not need this course.   This is not about fancy, expensive race waxing.','WAXING CLINIC on Sat. Nov 23','','inherit','open','closed','','743-revision-v1','','','2013-11-19 08:22:14','2013-11-19 13:22:14','',743,'https://sofits.ca/2013/11/19/743-revision-v1/',0,'revision','',0),(855,7,'2013-11-22 21:53:40','2013-11-23 02:53:40','','Workout of November 22 2013','','inherit','open','closed','','workout-of-november-22-2013','','','2013-11-22 21:53:40','2013-11-23 02:53:40','',346,'https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-22-2013.pdf',0,'attachment','application/pdf',0),(856,7,'2013-11-22 21:54:04','2013-11-23 02:54:04','&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-22-2013.pdf\">Week 10: Workout of November 22 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-15-2013-.pdf\">Week 9: Workout of November 15 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-8-2013-.pdf\">Week 8: Workout of November 8 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-1-2013.pdf\">Week 7: Workout of November 1 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-25-2013.pdf\">Week 6: Workout of October 25 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-18-2013-.pdf\">Week 5: Workout of October 18 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct10-2013-.pdf\">Week 4: Workout of October 10 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-3-2013-.pdf\">Week 3: Workout of October 3 2013</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  27 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-11-22 21:54:04','2013-11-23 02:54:04','',346,'https://sofits.ca/2013/11/22/346-revision-v1/',0,'revision','',0),(861,7,'2013-11-24 07:36:17','2013-11-24 12:36:17','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\"><img class=\"alignnone size-full wp-image-864\" alt=\"Perfect Winter Day\" src=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\" width=\"800\" height=\"449\" /></a></strong>\r\n\r\nPLEASE READ THIS CAREFULLY!   We are skiing in to our meeting place.\r\n\r\n<strong>12:45 p.m. - </strong> Park at P8 (if it\'s full, you can park at P9).\r\n\r\nWe will meet at the <strong>snow-covered</strong> <strong>summer parking lot approximately halfway between P8 and P9</strong>.   This is on the North Loop of the Gatineau Parkway, on the east side of Meech Lake Road.   It is about a 1.5 k ski from either P8 or P9, so arrive nice and early, especially if you are a slower skier or if you are unsure about your wax.   You\'ll want to take your time skiing in as this is your warm-up.  The actual practice will start about <strong>1:05</strong>.     If you are not sure where this spot is,  send me a note, or arrange to ski in with another Sofit.   I am planning to be there quite early.\r\n\r\nPlease wax your skis at home, not in the parking lot!  It should be a very simple affair as highs will be around MINUS 8 degrees - this is as good as it gets!\r\n\r\nPlease wear a watch, or heart rate monitor and be prepared to use the timer function.  I will be sending groups of you out on different missions and won\'t be able to yell at you all.\r\n\r\nBe sure to bring dry socks, mitts and tops and extra water for the drive home.\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"26\"]','FIRST ON-SNOW PRACTICE!','','publish','open','closed','','first-ski-practice','','','2013-12-02 10:15:50','2013-12-02 15:15:50','',0,'https://sofits.ca/?p=861',0,'post','',0),(862,7,'2013-11-26 07:36:17','2013-11-26 12:36:17','<strong>12:45 p.m. - </strong>  This session marks a half way point in our training and will almost certainly be <em><strong>ON SKIS</strong></em>.  <strong>Please get your classic skis ready</strong>.  It should be a fabulous ski, with perfect winter temperatures, very easy to wax for, with good snow coverage.   You will probably not even want rock skis.    Location will be announced Thursday.\r\n\r\n[yop_poll id=\"26\"]','First Ski Practice!','','inherit','open','closed','','861-revision-v1','','','2013-11-26 07:36:17','2013-11-26 12:36:17','',861,'https://sofits.ca/2013/11/26/861-revision-v1/',0,'revision','',0),(864,7,'2013-11-26 07:40:09','2013-11-26 12:40:09','','130116_Asticou','','inherit','open','closed','','130116_asticou','','','2013-11-26 07:40:09','2013-11-26 12:40:09','',861,'https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg',0,'attachment','image/jpeg',0),(865,7,'2013-11-26 07:40:32','2013-11-26 12:40:32','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\"><img class=\"alignnone size-full wp-image-864\" alt=\"Perfect Winter Day\" src=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\" width=\"800\" height=\"449\" /></a>12:45 p.m. - </strong>  This session marks a half way point in our training and will almost certainly be <em><strong>ON SKIS</strong></em>.  <strong>Please get your classic skis ready</strong>.  It should be a fabulous ski, with perfect winter temperatures, very easy to wax for, with good snow coverage.   You will probably not even want rock skis.    Location will be announced Thursday.\r\n\r\n[yop_poll id=\"26\"]','First Ski Practice!','','inherit','open','closed','','861-revision-v1','','','2013-11-26 07:40:32','2013-11-26 12:40:32','',861,'https://sofits.ca/2013/11/26/861-revision-v1/',0,'revision','',0),(866,7,'2013-11-26 07:42:09','2013-11-26 12:42:09','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\"><img class=\"alignnone size-full wp-image-864\" alt=\"Perfect Winter Day\" src=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\" width=\"800\" height=\"449\" /></a>12:45 p.m. - </strong>  Expect  perfect winter temperatures, easy waxing (-7), and good snow coverage.   It\'s unlikley not even want rock skis.    Location will be announced Thursday.\n\n[yop_poll id=\"26\"]','First Ski Practice!','','inherit','open','closed','','861-autosave-v1','','','2013-11-26 07:42:09','2013-11-26 12:42:09','',861,'https://sofits.ca/2013/11/26/861-autosave-v1/',0,'revision','',0),(867,7,'2013-11-26 07:42:35','2013-11-26 12:42:35','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\"><img class=\"alignnone size-full wp-image-864\" alt=\"Perfect Winter Day\" src=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\" width=\"800\" height=\"449\" /></a>12:45 p.m. - </strong>  Expect  perfect winter temperatures, easy waxing (-7), and good snow coverage.   It\'s unlikely you will need rock skis.    Location will be announced Thursday.\r\n\r\n[yop_poll id=\"26\"]','First Ski Practice!','','inherit','open','closed','','861-revision-v1','','','2013-11-26 07:42:35','2013-11-26 12:42:35','',861,'https://sofits.ca/2013/11/26/861-revision-v1/',0,'revision','',0),(868,7,'2013-11-26 09:33:58','2013-11-26 14:33:58','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\"><img class=\"alignnone size-full wp-image-754\" alt=\"October 29, 2008\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\" width=\"600\" height=\"378\" /></a>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Ski-Waxing.pdf\">For Ila\'s detailed waxing instructions, click here. </a></strong>\r\n\r\n<span style=\"text-decoration: underline;\">If you are buying new equipment, some suggestions</span>:\r\n\r\n1.  Avoid waxless (\"fish-scale\") skis like the plague!   You will neither be able to glide well nor enjoy the downhills. And the noise will drive your friends to distraction.  The exception to this is a dedicated pair of high quality waxless skis chosen specifically for your body weight,  to be used  when conditions are above zero and waxing is tricky.\r\n\r\n2. Garage sale skis are not recommended!!!\r\n\r\n3. Use a dedicated ski shop such as Fresh Air (always my first choice).  They will be sure to fit you with skis of the correct camber, and poles of the correct length.   Avoid generic sports stores or downhill stores such as Tommy and Lefevre (spelling?) etc.   Pecco\'s, although it has good equipment and knowledgeable staff,  is famous for NOT standing behind their products after the sale.\r\n\r\n4. Always keep your old skis for \"rock skiing.   One can never have too many skis!   If they have really poor, antiquated bindings, consider upgrading the bindings to match your new boots, so that you have excellent control on both your rock skis and good skis.\r\n\r\n5. Combi boots are great, especially for control on downhills, or if you have balance problems, or a history of hamstring injuries.  However, DO NOT consider buying combi skis.   They are poor for both classic and skating.   You will need dedicated skis and poles for both classic and skating.\r\n\r\n6. If you are prone to cold hands, you may want to consider the wide, fancier (and more expensive) velcro grips which tend not to cut off circulation.  Be sure to try them out with the gloves or mitts you will be wearing, especially if you will be wearing thick ones.\r\n\r\n7.  Set up a waxing area ahead of time, if you have space to do this.   Then you will be ready to head out the door at the last moment.\r\n\r\nAny more suggestions people want to add?','READY, SET SKI!','','inherit','open','closed','','746-revision-v1','','','2013-11-26 09:33:58','2013-11-26 14:33:58','',746,'https://sofits.ca/2013/11/26/746-revision-v1/',0,'revision','',0),(869,7,'2013-11-26 09:35:30','2013-11-26 14:35:30','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\"><img class=\"alignnone size-full wp-image-754\" alt=\"October 29, 2008\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\" width=\"600\" height=\"378\" /></a>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Ski-Waxing.pdf\">For Ila\'s detailed waxing instructions ( classic grip wax), click here. </a></strong>\r\n\r\n<span style=\"text-decoration: underline;\">If you are buying new equipment, some suggestions</span>:\r\n\r\n1.  Avoid waxless (\"fish-scale\") skis like the plague!   You will neither be able to glide well nor enjoy the downhills. And the noise will drive your friends to distraction.  The exception to this is a dedicated pair of high quality waxless skis chosen specifically for your body weight,  to be used  when conditions are above zero and waxing is tricky.\r\n\r\n2. Garage sale skis are not recommended!!!\r\n\r\n3. Use a dedicated ski shop such as Fresh Air (always my first choice).  They will be sure to fit you with skis of the correct camber, and poles of the correct length.   Avoid generic sports stores or downhill stores such as Tommy and Lefevre (spelling?) etc.   Pecco\'s, although it has good equipment and knowledgeable staff,  is famous for NOT standing behind their products after the sale.\r\n\r\n4. Always keep your old skis for \"rock skiing.   One can never have too many skis!   If they have really poor, antiquated bindings, consider upgrading the bindings to match your new boots, so that you have excellent control on both your rock skis and good skis.\r\n\r\n5. Combi boots are great, especially for control on downhills, or if you have balance problems, or a history of hamstring injuries.  However, DO NOT consider buying combi skis.   They are poor for both classic and skating.   You will need dedicated skis and poles for both classic and skating.\r\n\r\n6. If you are prone to cold hands, you may want to consider the wide, fancier (and more expensive) velcro grips which tend not to cut off circulation.  Be sure to try them out with the gloves or mitts you will be wearing, especially if you will be wearing thick ones.\r\n\r\n7.  Set up a waxing area ahead of time, if you have space to do this.   Then you will be ready to head out the door at the last moment.\r\n\r\nAny more suggestions people want to add?','READY, SET SKI!','','inherit','open','closed','','746-revision-v1','','','2013-11-26 09:35:30','2013-11-26 14:35:30','',746,'https://sofits.ca/2013/11/26/746-revision-v1/',0,'revision','',0),(870,7,'2013-11-26 09:36:28','2013-11-26 14:36:28','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\"><img class=\"alignnone size-full wp-image-864\" alt=\"Perfect Winter Day\" src=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\" width=\"800\" height=\"449\" /></a>12:45 p.m. - </strong>  Expect  perfect winter temperatures, easy waxing (-7), and good snow coverage.   It\'s unlikely you will need rock skis.    Location will be announced Thursday.\r\n\r\n[yop_poll id=\"26\"]','FIRST ON-SNOW PRACTICE!','','inherit','open','closed','','861-revision-v1','','','2013-11-26 09:36:28','2013-11-26 14:36:28','',861,'https://sofits.ca/2013/11/26/861-revision-v1/',0,'revision','',0),(874,7,'2013-11-28 14:31:10','2013-11-28 19:31:10','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\"><img class=\"alignnone size-full wp-image-864\" alt=\"Perfect Winter Day\" src=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\" width=\"800\" height=\"449\" /></a></strong>\r\n\r\nPLEASE READ THIS CAREFULLY!   We are skiing in to our meeting place.\r\n\r\n<strong>12:45 p.m. - </strong> Park at P8 (if it\'s full, you can park at P9).\r\n\r\nWe are not meeting at the <strong>snow-covered</strong> <strong>summer parking lot approximately halfway between P8 and P9</strong>.   This is on the North Loop of the Gatineau Parkway, on the east side of Meech Lake Road.   It is about a 1.5 k ski from either P8 or P9, so arrive nice and early, especially if you are a slower skier or if you are unsure about your wax.   You\'ll want to take your time skiing in as this is your warm-up.  The actual practice will start about <strong>1:05</strong>.     If you are not sure where this spot is,  send me a note, or arrange to ski in with another Sofit.   I am planning to be there quite early.\r\n\r\nPlease wax your skis at home, not in the parking lot!  It should be a very simple affair as highs will be around 8 degrees - this is as good as it gets!\r\n\r\nPlease wear a watch, or heart rate monitor and be prepared to use the timer function.  I will be sending groups of you out on different missions and won\'t be able to yell at you all.\r\n\r\nBe sure to bring dry socks, mitts and tops and extra water for the drive home.\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"26\"]','FIRST ON-SNOW PRACTICE!','','inherit','open','closed','','861-revision-v1','','','2013-11-28 14:31:10','2013-11-28 19:31:10','',861,'https://sofits.ca/2013/11/28/861-revision-v1/',0,'revision','',0),(875,7,'2013-11-28 14:35:32','2013-11-28 19:35:32','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\"><img class=\"alignnone size-full wp-image-864\" alt=\"Perfect Winter Day\" src=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\" width=\"800\" height=\"449\" /></a></strong>\r\n\r\nPLEASE READ THIS CAREFULLY!   We are skiing in to our meeting place.\r\n\r\n<strong>12:45 p.m. - </strong> Park at P8 (if it\'s full, you can park at P9).\r\n\r\nWe will meet at the <strong>snow-covered</strong> <strong>summer parking lot approximately halfway between P8 and P9</strong>.   This is on the North Loop of the Gatineau Parkway, on the east side of Meech Lake Road.   It is about a 1.5 k ski from either P8 or P9, so arrive nice and early, especially if you are a slower skier or if you are unsure about your wax.   You\'ll want to take your time skiing in as this is your warm-up.  The actual practice will start about <strong>1:05</strong>.     If you are not sure where this spot is,  send me a note, or arrange to ski in with another Sofit.   I am planning to be there quite early.\r\n\r\nPlease wax your skis at home, not in the parking lot!  It should be a very simple affair as highs will be around 8 degrees - this is as good as it gets!\r\n\r\nPlease wear a watch, or heart rate monitor and be prepared to use the timer function.  I will be sending groups of you out on different missions and won\'t be able to yell at you all.\r\n\r\nBe sure to bring dry socks, mitts and tops and extra water for the drive home.\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"26\"]','FIRST ON-SNOW PRACTICE!','','inherit','open','closed','','861-revision-v1','','','2013-11-28 14:35:32','2013-11-28 19:35:32','',861,'https://sofits.ca/2013/11/28/861-revision-v1/',0,'revision','',0),(877,7,'2013-11-29 08:38:43','2013-11-29 13:38:43','<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\"><img class=\"alignnone size-full wp-image-864\" alt=\"Perfect Winter Day\" src=\"https://sofits.ca/wp-content/uploads/2013/11/130116_Asticou.jpg\" width=\"800\" height=\"449\" /></a></strong>\r\n\r\nPLEASE READ THIS CAREFULLY!   We are skiing in to our meeting place.\r\n\r\n<strong>12:45 p.m. - </strong> Park at P8 (if it\'s full, you can park at P9).\r\n\r\nWe will meet at the <strong>snow-covered</strong> <strong>summer parking lot approximately halfway between P8 and P9</strong>.   This is on the North Loop of the Gatineau Parkway, on the east side of Meech Lake Road.   It is about a 1.5 k ski from either P8 or P9, so arrive nice and early, especially if you are a slower skier or if you are unsure about your wax.   You\'ll want to take your time skiing in as this is your warm-up.  The actual practice will start about <strong>1:05</strong>.     If you are not sure where this spot is,  send me a note, or arrange to ski in with another Sofit.   I am planning to be there quite early.\r\n\r\nPlease wax your skis at home, not in the parking lot!  It should be a very simple affair as highs will be around MINUS 8 degrees - this is as good as it gets!\r\n\r\nPlease wear a watch, or heart rate monitor and be prepared to use the timer function.  I will be sending groups of you out on different missions and won\'t be able to yell at you all.\r\n\r\nBe sure to bring dry socks, mitts and tops and extra water for the drive home.\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"26\"]','FIRST ON-SNOW PRACTICE!','','inherit','open','closed','','861-revision-v1','','','2013-11-29 08:38:43','2013-11-29 13:38:43','',861,'https://sofits.ca/2013/11/29/861-revision-v1/',0,'revision','',0),(879,7,'2013-11-30 14:42:56','2013-11-30 19:42:56','','Workout of November 29 2013 SNOW','','inherit','open','closed','','workout-of-november-29-2013-snow','','','2013-11-30 14:42:56','2013-11-30 19:42:56','',346,'https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-29-2013-SNOW.pdf',0,'attachment','application/pdf',0),(880,7,'2013-11-30 14:43:59','2013-11-30 19:43:59','&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-29-2013-SNOW.pdf\">Week 11: Workout of November 29 2013 SNOW</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-22-2013.pdf\">Week 10: Workout of November 22 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-15-2013-.pdf\">Week 9: Workout of November 15 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-8-2013-.pdf\">Week 8: Workout of November 8 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-1-2013.pdf\">Week 7: Workout of November 1 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-25-2013.pdf\">Week 6: Workout of October 25 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-18-2013-.pdf\">Week 5: Workout of October 18 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct10-2013-.pdf\">Week 4: Workout of October 10 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-3-2013-.pdf\">Week 3: Workout of October 3 2013</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  27 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-11-30 14:43:59','2013-11-30 19:43:59','',346,'https://sofits.ca/2013/11/30/346-revision-v1/',0,'revision','',0),(881,7,'2013-12-02 09:54:56','2013-12-02 14:54:56','','Everything You Wanted to Know About Ski Waxing','','inherit','open','closed','','everything-you-wanted-to-know-about-ski-waxing','','','2013-12-02 09:54:56','2013-12-02 14:54:56','',319,'https://sofits.ca/wp-content/uploads/2013/09/Everything-You-Wanted-to-Know-About-Ski-Waxing-.pdf',0,'attachment','application/pdf',0),(882,7,'2013-12-02 09:55:26','2013-12-02 14:55:26','Here are the preliminary documents from the first workshop.    A couple more  to come.\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Everything-You-Wanted-to-Know-About-Ski-Waxing-.pdf\">Everything You Wanted to Know About Ski Waxing</a> (updated Dec 2 2013)</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>','TRAINING PLANS & WAXING','','inherit','open','closed','','319-revision-v1','','','2013-12-02 09:55:26','2013-12-02 14:55:26','',319,'https://sofits.ca/2013/12/02/319-revision-v1/',0,'revision','',0),(890,7,'2013-11-30 10:11:10','2013-11-30 15:11:10','<a href=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\"><img class=\"alignnone size-full wp-image-891\" alt=\"Nov-28-Ridge-Swamp\" src=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\" width=\"700\" height=\"443\" /></a>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"text-decoration: underline;\"><span style=\"color: #ff0000; text-decoration: underline;\">CANCELED !</span></span></strong>   Conditions are too variable for me to be responsible for everyone\'s safety.  Go for a run, a swim, a spin, or an adventure ski  and do 45 minutes of strength.  Don\'t forget to stretch afterwards.   Workouts for this week and general guidelines for  the next 6 weeks will be posted in the next day or two.\r\n\r\n&nbsp;','TRAINING DEC. 6 ','','publish','open','closed','','dec-6','','','2013-12-07 15:00:49','2013-12-07 20:00:49','',0,'https://sofits.ca/?p=890',0,'post','',0),(891,7,'2013-12-02 10:11:01','2013-12-02 15:11:01','','Nov-28-Ridge-Swamp','','inherit','open','closed','','nov-28-ridge-swamp-2','','','2013-12-02 10:11:01','2013-12-02 15:11:01','',890,'https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg',0,'attachment','image/jpeg',0),(892,7,'2013-12-02 10:11:10','2013-12-02 15:11:10','<a href=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\"><img class=\"alignnone size-full wp-image-891\" alt=\"Nov-28-Ridge-Swamp\" src=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\" width=\"700\" height=\"443\" /></a>\r\n\r\n&nbsp;\r\n\r\n12:45    Location will be decided on Thursday evening.\r\n\r\nIf you are a slower skier and/or need to use the washroom before skiing, and/or need to chat in the parking lot, please arrive in the parking lot at 12:30.    Rather than congregating in the parking lot, start skiing!!   Ski to where we are meeting,  ski without poles,  and be sure your wax is working, until the practice begins.   The hope is that everyone will arrive at roughly the same time.\r\n\r\n[yop_poll id=\"27\"]\r\n\r\n&nbsp;','','','inherit','open','closed','','890-revision-v1','','','2013-12-02 10:11:10','2013-12-02 15:11:10','',890,'https://sofits.ca/2013/12/02/890-revision-v1/',0,'revision','',0),(893,7,'2013-12-02 10:13:34','2013-12-02 15:13:34','<a href=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\"><img class=\"alignnone size-full wp-image-891\" alt=\"Nov-28-Ridge-Swamp\" src=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\" width=\"700\" height=\"443\" /></a>\r\n\r\n&nbsp;\r\n\r\n12:45    Location will be decided on Thursday evening.\r\n\r\nIf you are a slower skier and/or need to use the washroom before skiing, and/or need to chat in the parking lot, please arrive in the parking lot at 12:30.    Rather than congregating in the parking lot, start skiing!!   Ski to where we are meeting,  ski without poles,  and be sure your wax is working, until the practice begins.   The hope is that everyone will arrive at roughly the same time.\r\n\r\n[yop_poll id=\"27\"]\r\n\r\n&nbsp;','DECEMBER 6 SKI PRACTICE','','inherit','open','closed','','890-revision-v1','','','2013-12-02 10:13:34','2013-12-02 15:13:34','',890,'https://sofits.ca/2013/12/02/890-revision-v1/',0,'revision','',0),(894,7,'2013-12-02 10:14:33','2013-12-02 15:14:33','<a href=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\"><img class=\"alignnone size-full wp-image-891\" alt=\"Nov-28-Ridge-Swamp\" src=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\" width=\"700\" height=\"443\" /></a>\r\n\r\n&nbsp;\r\n\r\n12:45    Location will be decided on Thursday evening.\r\n\r\nIf you are a slower skier and/or need to use the washroom before skiing, and/or need to chat in the parking lot, please arrive in the parking lot at 12:30.    Rather than congregating in the parking lot, start skiing!!   Ski to where we are meeting,  ski without poles,  and be sure your wax is working, until the practice begins.   The hope is that everyone will arrive at roughly the same time.\r\n\r\n[yop_poll id=\"27\"]\r\n\r\n&nbsp;','TRAINING DEC. 6 ','','inherit','open','closed','','890-revision-v1','','','2013-12-02 10:14:33','2013-12-02 15:14:33','',890,'https://sofits.ca/2013/12/02/890-revision-v1/',0,'revision','',0),(895,7,'2013-12-02 10:17:18','2013-12-02 15:17:18','1. An updated PDF is posted under T<strong><em>raining Plans and Waxing</em></strong>.   Thanks Ila!\r\n\r\n2. Two critiqued photos and TWO VIDEOS (one in slow motion, just added) of Sharon skiing on Friday.  Look under <strong><em>Technique.</em></strong>','New POSTS','','publish','open','closed','','news-2','','','2013-12-03 13:54:21','2013-12-03 18:54:21','',0,'https://sofits.ca/?p=895',0,'post','',0),(896,7,'2013-12-02 10:17:18','2013-12-02 15:17:18','New PDF is posted under <em>technique and waxing</em>.   Thanks Ila, for gathering all the info and putting it together.','WAXING PDF','','inherit','open','closed','','895-revision-v1','','','2013-12-02 10:17:18','2013-12-02 15:17:18','',895,'https://sofits.ca/2013/12/02/895-revision-v1/',0,'revision','',0),(897,7,'2013-12-02 10:17:58','2013-12-02 15:17:58','<a href=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\"><img class=\"alignnone size-full wp-image-754\" alt=\"October 29, 2008\" src=\"https://sofits.ca/wp-content/uploads/2013/11/081029a.jpg\" width=\"600\" height=\"378\" /></a>\r\n\r\n<span style=\"text-decoration: underline;\">If you are buying new equipment, some suggestions</span>:\r\n\r\n1.  Avoid waxless (\"fish-scale\") skis like the plague!   You will neither be able to glide well nor enjoy the downhills. And the noise will drive your friends to distraction.  The exception to this is a dedicated pair of high quality waxless skis chosen specifically for your body weight,  to be used  when conditions are above zero and waxing is tricky.\r\n\r\n2. Garage sale skis are not recommended!!!\r\n\r\n3. Use a dedicated ski shop such as Fresh Air (always my first choice).  They will be sure to fit you with skis of the correct camber, and poles of the correct length.   Avoid generic sports stores or downhill stores such as Tommy and Lefevre (spelling?) etc.   Pecco\'s, although it has good equipment and knowledgeable staff,  is famous for NOT standing behind their products after the sale.\r\n\r\n4. Always keep your old skis for \"rock skiing.   One can never have too many skis!   If they have really poor, antiquated bindings, consider upgrading the bindings to match your new boots, so that you have excellent control on both your rock skis and good skis.\r\n\r\n5. Combi boots are great, especially for control on downhills, or if you have balance problems, or a history of hamstring injuries.  However, DO NOT consider buying combi skis.   They are poor for both classic and skating.   You will need dedicated skis and poles for both classic and skating.\r\n\r\n6. If you are prone to cold hands, you may want to consider the wide, fancier (and more expensive) velcro grips which tend not to cut off circulation.  Be sure to try them out with the gloves or mitts you will be wearing, especially if you will be wearing thick ones.\r\n\r\n7.  Set up a waxing area ahead of time, if you have space to do this.   Then you will be ready to head out the door at the last moment.\r\n\r\nAny more suggestions people want to add?','READY, SET SKI!','','inherit','open','closed','','746-revision-v1','','','2013-12-02 10:17:58','2013-12-02 15:17:58','',746,'https://sofits.ca/2013/12/02/746-revision-v1/',0,'revision','',0),(898,7,'2013-12-02 10:18:46','2013-12-02 15:18:46','<a href=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\"><img class=\"alignnone size-full wp-image-891\" alt=\"Nov-28-Ridge-Swamp\" src=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\" width=\"700\" height=\"443\" /></a>\r\n\r\n&nbsp;\r\n\r\n12:45    Location will be decided on Thursday evening.\r\n\r\nIf you are a slower skier and/or need to use the washroom before skiing, and/or need to chat in the parking lot, please arrive in the parking lot at 12:30.    Rather than congregating in the parking lot, consider skiing!!   Ski to where we are meeting,  ski without poles,  and be sure your wax is working, until the practice begins.\r\n\r\n[yop_poll id=\"27\"]\r\n\r\n&nbsp;','TRAINING DEC. 6 ','','inherit','open','closed','','890-revision-v1','','','2013-12-02 10:18:46','2013-12-02 15:18:46','',890,'https://sofits.ca/2013/12/02/890-revision-v1/',0,'revision','',0),(899,7,'2013-12-02 10:19:24','2013-12-02 15:19:24','New PDF is posted under <em>training plans and waxing</em>.   Thanks Ila, for gathering all the info and putting it together.','WAXING PDF','','inherit','open','closed','','895-revision-v1','','','2013-12-02 10:19:24','2013-12-02 15:19:24','',895,'https://sofits.ca/2013/12/02/895-revision-v1/',0,'revision','',0),(900,7,'2013-12-02 10:19:57','2013-12-02 15:19:57','An updated PDF is posted under <em>training plans and waxing</em>.   Thanks Ila, for gathering all the info and putting it together.','WAXING PDF','','inherit','open','closed','','895-revision-v1','','','2013-12-02 10:19:57','2013-12-02 15:19:57','',895,'https://sofits.ca/2013/12/02/895-revision-v1/',0,'revision','',0),(901,7,'2013-12-02 10:22:20','2013-12-02 15:22:20','','ski waxing notes 2013','','inherit','open','closed','','ski-waxing-notes-2013','','','2013-12-02 10:22:20','2013-12-02 15:22:20','',319,'https://sofits.ca/wp-content/uploads/2013/09/ski-waxing-notes-2013-.pdf',0,'attachment','application/pdf',0),(902,7,'2013-12-02 10:23:28','2013-12-02 15:23:28','Here are the preliminary documents from the first workshop.    A couple more  to come.\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/ski-waxing-notes-2013-.pdf\">Everything You Ever Wanted to Know About Ski Waxing</a>(updated Dec 2 2013)</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>','TRAINING PLANS & WAXING','','inherit','open','closed','','319-revision-v1','','','2013-12-02 10:23:28','2013-12-02 15:23:28','',319,'https://sofits.ca/2013/12/02/319-revision-v1/',0,'revision','',0),(904,7,'2013-12-02 11:22:42','2013-12-02 16:22:42','','Sharon-weight-shift','','inherit','open','closed','','sharon-weight-shift','','','2013-12-02 11:22:42','2013-12-02 16:22:42','',723,'https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg',0,'attachment','image/jpeg',0),(905,7,'2013-12-02 11:23:19','2013-12-02 16:23:19','','Sharon-legs-toghether-phase','','inherit','open','closed','','sharon-legs-toghether-phase','','','2013-12-02 11:23:19','2013-12-02 16:23:19','',723,'https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg',0,'attachment','image/jpeg',0),(906,7,'2013-12-02 11:23:33','2013-12-02 16:23:33','If you can, watch Sharon in slow motion.  Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and a good body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Great skiing, Sharon!\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon_Nov29_2013_mpeg4.mov\">Sharon_Nov29_2013_mpeg4</a>\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" alt=\"Sharon-weight-shift\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" alt=\"Sharon-legs-toghether-phase\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-12-02 11:23:33','2013-12-02 16:23:33','',723,'https://sofits.ca/2013/12/02/723-revision-v1/',0,'revision','',0),(908,7,'2013-12-02 11:25:48','2013-12-02 16:25:48','If you can, watch Sharon in slow motion.  Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and a good body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Great skiing, Sharon!\r\n\r\n<a href=\"https://sofits.ca/ski-technique/sharon_nov29_2013_mpeg4/\">Sharon_Nov29_2013_mpeg4</a>\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" alt=\"Sharon-weight-shift\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" alt=\"Sharon-legs-toghether-phase\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-12-02 11:25:48','2013-12-02 16:25:48','',723,'https://sofits.ca/2013/12/02/723-revision-v1/',0,'revision','',0),(910,7,'2013-12-02 11:28:56','2013-12-02 16:28:56','If you can, watch Sharon in slow motion.  Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and a good body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Great skiing, Sharon!\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/12/Sharon_Nov29_2013_mpeg4.mov\">Sharon_Nov29_2013_mpeg4</a> <a href=\"https://sofits.ca/ski-technique/sharon_nov29_2013_mpeg4-3/\">Sharon_Nov29_2013_mpeg4</a>\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" alt=\"Sharon-weight-shift\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" alt=\"Sharon-legs-toghether-phase\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-12-02 11:28:56','2013-12-02 16:28:56','',723,'https://sofits.ca/2013/12/02/723-revision-v1/',0,'revision','',0),(911,7,'2013-12-02 11:29:49','2013-12-02 16:29:49','If you can, watch Sharon in slow motion.  Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and a good body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Great skiing, Sharon!\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" alt=\"Sharon-weight-shift\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" alt=\"Sharon-legs-toghether-phase\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-12-02 11:29:49','2013-12-02 16:29:49','',723,'https://sofits.ca/2013/12/02/723-revision-v1/',0,'revision','',0),(913,7,'2013-12-02 11:32:32','2013-12-02 16:32:32','<a href=\"https://sofits.ca/ski-technique/sharon_nov29_2013_mpeg4/\">Sharon_Nov29_2013_mpeg4</a>\r\n\r\nIf you can, watch Sharon in slow motion.  Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and a good body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Great skiing, Sharon!\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" alt=\"Sharon-weight-shift\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" alt=\"Sharon-legs-toghether-phase\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-12-02 11:32:32','2013-12-02 16:32:32','',723,'https://sofits.ca/2013/12/02/723-revision-v1/',0,'revision','',0),(914,7,'2013-12-02 11:59:47','2013-12-02 16:59:47','&nbsp;\r\n\r\nIf you can, watch Sharon in slow motion.  Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and an excellent body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Hips can be slightly more forward, ahead of your heels.  Great skiing, Sharon!\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" alt=\"Sharon-weight-shift\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" alt=\"Sharon-legs-toghether-phase\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-12-02 11:59:47','2013-12-02 16:59:47','',723,'https://sofits.ca/2013/12/02/723-revision-v1/',0,'revision','',0),(915,7,'2013-12-02 12:01:02','2013-12-02 17:01:02','','Sharon4_x264','','inherit','open','closed','','sharon4_x264','','','2013-12-02 12:01:02','2013-12-02 17:01:02','',723,'https://sofits.ca/wp-content/uploads/2013/12/Sharon4_x264.mp4',0,'attachment','video/mp4',0),(916,7,'2013-12-02 12:01:16','2013-12-02 17:01:16','&nbsp;\r\n\r\nIf you can, watch Sharon in slow motion.  Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and an excellent body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Hips can be slightly more forward, ahead of your heels.  Great skiing, Sharon!\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/Sharon4_x264.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" alt=\"Sharon-weight-shift\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" alt=\"Sharon-legs-toghether-phase\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-12-02 12:01:16','2013-12-02 17:01:16','',723,'https://sofits.ca/2013/12/02/723-revision-v1/',0,'revision','',0),(917,7,'2013-12-09 20:00:29','2013-12-10 01:00:29','1. <strong><em>WAXING DOCUMENT now corrected (hopefully!)</em></strong>\n\n2. <strong><em>Training plans have been posted for the BUILD 1 phase.  Be sure to read the document labelled \"SKI FIRST THEN RUN or ALSO SKIS\" before plunging into your training. </em></strong>','','','inherit','open','closed','','895-autosave-v1','','','2013-12-09 20:00:29','2013-12-10 01:00:29','',895,'https://sofits.ca/2013/12/02/895-autosave-v1/',0,'revision','',0),(918,7,'2013-12-02 12:11:30','2013-12-02 17:11:30','1. An updated PDF is posted under T<strong><em>raining Plans and Waxing</em></strong>.   Thanks Ila!\r\n\r\n2. Two critiqued photos and a video of Sharon skiing on Friday.  Look under <strong><em>Technique.</em></strong>','New POSTS','','inherit','open','closed','','895-revision-v1','','','2013-12-02 12:11:30','2013-12-02 17:11:30','',895,'https://sofits.ca/2013/12/02/895-revision-v1/',0,'revision','',0),(919,7,'2013-12-02 12:16:08','2013-12-02 17:16:08','&nbsp;\r\n\r\nIf you can, watch Sharon in slow motion.  Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and an excellent body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Hips can be slightly more forward, ahead of your heels.  Great skiing, Sharon!\r\n\r\n&nbsp;\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/Sharon4_x264.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" alt=\"Sharon-weight-shift\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\n(perhaps should have said \"provided the boot is off the snow\".   The tip of the ski will be touching of course.\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" alt=\"Sharon-legs-toghether-phase\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-12-02 12:16:08','2013-12-02 17:16:08','',723,'https://sofits.ca/2013/12/02/723-revision-v1/',0,'revision','',0),(923,7,'2013-12-03 13:49:41','2013-12-03 18:49:41','','sharon-in-slo-mo_x264','','inherit','open','closed','','sharon-in-slo-mo_x264','','','2013-12-03 13:49:41','2013-12-03 18:49:41','',723,'https://sofits.ca/wp-content/uploads/2013/12/sharon-in-slo-mo_x264.mp4',0,'attachment','video/mp4',0),(924,7,'2013-12-03 13:50:36','2013-12-03 18:50:36','&nbsp;\r\n\r\nThe first video is  Sharon in slow motion, followed by one in normal time.   Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and an excellent body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Hips can be slightly more forward, ahead of your heels.  Great skiing, Sharon!\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/sharon-in-slo-mo_x264.mp4\"][/video]\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/Sharon4_x264.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" alt=\"Sharon-weight-shift\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\n(perhaps should have said \"provided the boot is off the snow\".   The tip of the ski will be touching of course.\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" alt=\"Sharon-legs-toghether-phase\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" alt=\"Kathy1\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" alt=\"Kathy2\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2013-12-03 13:50:36','2013-12-03 18:50:36','',723,'https://sofits.ca/2013/12/03/723-revision-v1/',0,'revision','',0),(925,7,'2013-12-03 13:53:18','2013-12-03 18:53:18','1. An updated PDF is posted under T<strong><em>raining Plans and Waxing</em></strong>.   Thanks Ila!\r\n\r\n2. Two critiqued photos and TWO VIDEOS (one is slow motion just added) of Sharon skiing on Friday.  Look under <strong><em>Technique.</em></strong>','New POSTS','','inherit','open','closed','','895-revision-v1','','','2013-12-03 13:53:18','2013-12-03 18:53:18','',895,'https://sofits.ca/2013/12/03/895-revision-v1/',0,'revision','',0),(926,7,'2013-12-03 13:54:21','2013-12-03 18:54:21','1. An updated PDF is posted under T<strong><em>raining Plans and Waxing</em></strong>.   Thanks Ila!\r\n\r\n2. Two critiqued photos and TWO VIDEOS (one in slow motion, just added) of Sharon skiing on Friday.  Look under <strong><em>Technique.</em></strong>','New POSTS','','inherit','open','closed','','895-revision-v1','','','2013-12-03 13:54:21','2013-12-03 18:54:21','',895,'https://sofits.ca/2013/12/03/895-revision-v1/',0,'revision','',0),(927,7,'2013-12-06 08:50:48','2013-12-06 13:50:48','<a href=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\"><img class=\"alignnone size-full wp-image-891\" alt=\"Nov-28-Ridge-Swamp\" src=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\" width=\"700\" height=\"443\" /></a>\n\n&nbsp;\n\n<strong><span style=\"text-decoration: underline;\"><span style=\"color: #ff0000; text-decoration: underline;\">CANCELED - Call it \"Mid-term break\"</span></span></strong>.   Conditions are too variable for me to be responsible for everyone\'s safety.  Go for a run, a swim, a spin, or an adventure ski  and do 45 minutes of strength.  Don\'t forget to stretch afterwards.   Workouts for this week and general guidelines for  the next 6 weeks will be posted in the next day or two.\n\n&nbsp;','TRAINING DEC. 6 ','','inherit','open','closed','','890-autosave-v1','','','2013-12-06 08:50:48','2013-12-06 13:50:48','',890,'https://sofits.ca/2013/12/03/890-autosave-v1/',0,'revision','',0),(928,7,'2013-12-03 13:57:10','2013-12-03 18:57:10','<a href=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\"><img class=\"alignnone size-full wp-image-891\" alt=\"Nov-28-Ridge-Swamp\" src=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\" width=\"700\" height=\"443\" /></a>\r\n\r\n&nbsp;\r\n\r\n12:45    Location will be decided on Thursday evening.\r\n\r\nIf you are a slower skier and/or need to use the washroom before skiing, and/or need to chat in the parking lot, please arrive in the parking lot at 12:30.    Rather than congregating in the parking lot, consider skiing!!   Ski to where we are meeting,  ski without poles,  and be sure your wax is working, until the practice begins.\r\n\r\nHOMEWORK:  please look carefully at the videos and photos of Sharon, just posted, especially if you are just getting going on weight shift.  A picture is worth 1000 words, and all that.\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"27\"]\r\n\r\n&nbsp;','TRAINING DEC. 6 ','','inherit','open','closed','','890-revision-v1','','','2013-12-03 13:57:10','2013-12-03 18:57:10','',890,'https://sofits.ca/2013/12/03/890-revision-v1/',0,'revision','',0),(929,7,'2013-12-03 13:57:39','2013-12-03 18:57:39','<a href=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\"><img class=\"alignnone size-full wp-image-891\" alt=\"Nov-28-Ridge-Swamp\" src=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\" width=\"700\" height=\"443\" /></a>\r\n\r\n&nbsp;\r\n\r\n12:45    Location will be decided on Thursday evening.\r\n\r\nIf you are a slower skier and/or need to use the washroom before skiing, and/or need to chat in the parking lot, please arrive in the parking lot at 12:30.    Rather than congregating in the parking lot, consider skiing!!   Ski to where we are meeting,  ski without poles,  and be sure your wax is working, until the practice begins.\r\n\r\nHOMEWORK:  please look carefully at the videos and photos of Sharon, just posted under \"technique\", especially if you are just getting going on weight shift.  A picture is worth 1000 words, and all that.\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"27\"]\r\n\r\n&nbsp;','TRAINING DEC. 6 ','','inherit','open','closed','','890-revision-v1','','','2013-12-03 13:57:39','2013-12-03 18:57:39','',890,'https://sofits.ca/2013/12/03/890-revision-v1/',0,'revision','',0),(934,7,'2013-12-05 20:23:34','2013-12-06 01:23:34','<a href=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\"><img class=\"alignnone size-full wp-image-891\" alt=\"Nov-28-Ridge-Swamp\" src=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\" width=\"700\" height=\"443\" /></a>\r\n\r\n&nbsp;\r\n\r\n<strong>12:45    at P6.</strong>\r\n\r\nWe will meet on the Mackenzie King Estate Rd (the access road which leads down to the parkway), a couple of hundred meters past the P6 parking lot.  When you arrive, please start skiing right away. Please ski back and forth on this access road so that we will all be together when it\'s time to start the practice.      The waxing may be a bit tricky tomorrow , so the earlier you are skiing, the earlier you can tinker with your wax, if necessary.   Bring a range of wax with you.     I\'ll try to post some wax advice in the morning, when I see what kind of temperatures we are actually going to have, and whether there is fresh grooming.  The conditions will probably be fine, but if not, hey, we can go for coffee - it\'s a recovery week!\r\n\r\nDirections to P6:   Follow Kingsmere Road past P5, turning left at the top of the hill at SWAMP ROAD.   At the T intersection, (Barnes) turn right, then look for the P6 sign about 400 meters on your left.\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"27\"]\r\n\r\n&nbsp;','TRAINING DEC. 6 ','','inherit','open','closed','','890-revision-v1','','','2013-12-05 20:23:34','2013-12-06 01:23:34','',890,'https://sofits.ca/2013/12/05/890-revision-v1/',0,'revision','',0),(935,7,'2013-12-06 08:51:00','2013-12-06 13:51:00','<a href=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\"><img class=\"alignnone size-full wp-image-891\" alt=\"Nov-28-Ridge-Swamp\" src=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\" width=\"700\" height=\"443\" /></a>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"text-decoration: underline;\"><span style=\"color: #ff0000; text-decoration: underline;\">CANCELED - Call it \"Mid-term break\"</span></span></strong>.   Conditions are too variable for me to be responsible for everyone\'s safety.  Go for a run, a swim, a spin, or an adventure ski  and do 45 minutes of strength.  Don\'t forget to stretch afterwards.   Workouts for this week and general guidelines for  the next 6 weeks will be posted in the next day or two.\r\n\r\n&nbsp;','TRAINING DEC. 6 ','','inherit','open','closed','','890-revision-v1','','','2013-12-06 08:51:00','2013-12-06 13:51:00','',890,'https://sofits.ca/2013/12/06/890-revision-v1/',0,'revision','',0),(937,7,'2013-12-06 08:53:08','2013-12-06 13:53:08','<a href=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\"><img class=\"alignnone size-full wp-image-891\" alt=\"Nov-28-Ridge-Swamp\" src=\"https://sofits.ca/wp-content/uploads/2013/12/Nov-28-Ridge-Swamp.jpg\" width=\"700\" height=\"443\" /></a>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"text-decoration: underline;\"><span style=\"color: #ff0000; text-decoration: underline;\">CANCELED !</span></span></strong>   Conditions are too variable for me to be responsible for everyone\'s safety.  Go for a run, a swim, a spin, or an adventure ski  and do 45 minutes of strength.  Don\'t forget to stretch afterwards.   Workouts for this week and general guidelines for  the next 6 weeks will be posted in the next day or two.\r\n\r\n&nbsp;','TRAINING DEC. 6 ','','inherit','open','closed','','890-revision-v1','','','2013-12-06 08:53:08','2013-12-06 13:53:08','',890,'https://sofits.ca/2013/12/06/890-revision-v1/',0,'revision','',0),(939,7,'2013-12-07 14:59:22','2013-12-07 19:59:22','We will be incorporating skate workouts into the mix, as promised, but not this week (too cold).   I\'m leaning to this format, but have several other ideas as well:\r\n\r\n<strong><em>Friday morning:  skate instruction (will cancel if  temperatures are too cold to skate).  It will start at 10:00 or so, with 90 minutes of easy drills at P8 for those who are new or relatively new to skating.  If you are also attending the afternoon session, bring a bag lunch to eat at my house or at the visitor\'s center (or buy lunch).  </em></strong>\r\n\r\n<strong><em>Friday afternoon:  classic workout (will switch to skate if conditions are poor for classic).   This will be a heavy duty workout for the more serious among us.  For those who have done skating in the morning, a second  option is to go for a group ski and accumulate some mileage without undo stress and fatigue. </em> </strong>\r\n\r\nI\'m going to post a few polls in a bit.  In the meantime, let me know your thoughts on this.  Is this a good format, or should we switch it around each Friday with classic in the morning on alternate Fridays?    How many of you do not skate at all?  (if not, you really should consider it.  Christmas is around the corner.)   I\'ll start a Facebook thing going for discussion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FUTURE FRIDAYS:  SKATE AND CLASSIC','','publish','open','closed','','future-fridays-classic-and-skate','','','2013-12-09 18:15:12','2013-12-09 23:15:12','',0,'https://sofits.ca/?p=939',0,'post','',0),(940,7,'2013-12-07 14:59:15','2013-12-07 19:59:15','Starting Dec 13, we will be incorporating skate workouts into the mix, as promised.   I\'m leaning to this format:\r\n\r\n<strong><em>Friday morning skate instruction (will cancel if  temperatures are too cold to skate).  It will start at 10:00 or so, with 90 minutes of easy drills at P8 for those who are new or relatively new to skating.  If you are also attending the afternoon session, bring a bag lunch to eat at my house or at the visitor\'s center (or buy lunch).  </em></strong>\r\n\r\n<strong><em>Friday afternoon classic workout (will switch to skate if conditions are poor for classic).   This will be a heavy duty workout for the more serious among us.  For those who have done skating in the morning, a second  option is to go for a group ski and accumulate some mileage without undo stress and fatigue. </em> </strong>\r\n\r\nI\'m going to post a few polls in a bit.  In the meantime, let me know your thoughts on this.  Is this a good format, or should we switch it around each Friday with classic first on alternate Fridays?    How many of you do not skate at all?  (if you don\'t you really should consider it !  Christmas is around the corner)   I\'ll start a Facebook thing going for discussion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Future Fridays:  Classic and Skate','','inherit','open','closed','','939-revision-v1','','','2013-12-07 14:59:15','2013-12-07 19:59:15','',939,'https://sofits.ca/2013/12/07/939-revision-v1/',0,'revision','',0),(941,7,'2013-12-07 15:02:49','2013-12-07 20:02:49','Starting Dec 13, we will be incorporating skate workouts into the mix, as promised.   I\'m leaning to this format:\n\n<strong><em>Friday morning:  skate instruction (will cancel if  temperatures are too cold to skate).  It will start at 10:00 or so, with 90 minutes of easy drills at P8 for those who are new or relatively new to skating.  If you are also attending the afternoon session, bring a bag lunch to eat at my house or at the visitor\'s center (or buy lunch).  </em></strong>\n\n<strong><em>Friday afternoon:  classic workout (will switch to skate if conditions are poor for classic).   This will be a heavy duty workout for the more serious among us.  For those who have done skating in the morning, a second  option is to go for a group ski and accumulate some mileage without undo stress and fatigue. </em> </strong>\n\nI\'m going to post a few polls in a bit.  In the meantime, let me know your thoughts on this.  Is this a good format, or should we switch it around each Friday with classic in the morning on alternate Fridays?    How many of you do not skate at all?  (if not, you really should consider it.  Christmas is around the corner.)   I\'ll start a Facebook thing going for discussion.\n\n&nbsp;\n\n&nbsp;','Future Fridays:  Classic and Skate','','inherit','open','closed','','939-autosave-v1','','','2013-12-07 15:02:49','2013-12-07 20:02:49','',939,'https://sofits.ca/2013/12/07/939-autosave-v1/',0,'revision','',0),(942,7,'2013-12-07 15:03:04','2013-12-07 20:03:04','Starting this coming week, we will be incorporating skate workouts into the mix, as promised.   I\'m leaning to this format:\r\n\r\n<strong><em>Friday morning:  skate instruction (will cancel if  temperatures are too cold to skate).  It will start at 10:00 or so, with 90 minutes of easy drills at P8 for those who are new or relatively new to skating.  If you are also attending the afternoon session, bring a bag lunch to eat at my house or at the visitor\'s center (or buy lunch).  </em></strong>\r\n\r\n<strong><em>Friday afternoon:  classic workout (will switch to skate if conditions are poor for classic).   This will be a heavy duty workout for the more serious among us.  For those who have done skating in the morning, a second  option is to go for a group ski and accumulate some mileage without undo stress and fatigue. </em> </strong>\r\n\r\nI\'m going to post a few polls in a bit.  In the meantime, let me know your thoughts on this.  Is this a good format, or should we switch it around each Friday with classic in the morning on alternate Fridays?    How many of you do not skate at all?  (if not, you really should consider it.  Christmas is around the corner.)   I\'ll start a Facebook thing going for discussion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Future Fridays:  Classic and Skate','','inherit','open','closed','','939-revision-v1','','','2013-12-07 15:03:04','2013-12-07 20:03:04','',939,'https://sofits.ca/2013/12/07/939-revision-v1/',0,'revision','',0),(943,7,'2013-12-07 15:05:20','2013-12-07 20:05:20','Starting this coming week, we will be incorporating skate workouts into the mix, as promised.   I\'m leaning to this format:\r\n\r\n<strong><em>Friday morning:  skate instruction (will cancel if  temperatures are too cold to skate).  It will start at 10:00 or so, with 90 minutes of easy drills at P8 for those who are new or relatively new to skating.  If you are also attending the afternoon session, bring a bag lunch to eat at my house or at the visitor\'s center (or buy lunch).  </em></strong>\r\n\r\n<strong><em>Friday afternoon:  classic workout (will switch to skate if conditions are poor for classic).   This will be a heavy duty workout for the more serious among us.  For those who have done skating in the morning, a second  option is to go for a group ski and accumulate some mileage without undo stress and fatigue. </em> </strong>\r\n\r\nI\'m going to post a few polls in a bit.  In the meantime, let me know your thoughts on this.  Is this a good format, or should we switch it around each Friday with classic in the morning on alternate Fridays?    How many of you do not skate at all?  (if not, you really should consider it.  Christmas is around the corner.)   I\'ll start a Facebook thing going for discussion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FUTURE FRIDAYS:  SKATE AND CLASSIC','','inherit','open','closed','','939-revision-v1','','','2013-12-07 15:05:20','2013-12-07 20:05:20','',939,'https://sofits.ca/2013/12/07/939-revision-v1/',0,'revision','',0),(947,7,'2013-12-07 20:04:39','2013-12-08 01:04:39','Here are the preliminary documents from the first workshop.    A couple more  to come.\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/training-plans/ski-waxing-notes-2013/\" rel=\"attachment wp-att-901\">ski waxing notes 2013</a>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/ski-waxing-notes-2013-.pdf\">Everything You Ever Wanted to Know About Ski Waxing</a>(updated Dec 2 2013)</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>','TRAINING PLANS & WAXING','','inherit','open','closed','','319-revision-v1','','','2013-12-07 20:04:39','2013-12-08 01:04:39','',319,'https://sofits.ca/2013/12/07/319-revision-v1/',0,'revision','',0),(948,7,'2013-12-07 20:05:26','2013-12-08 01:05:26','Here are the preliminary documents from the first workshop.    A couple more  to come.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/ski-waxing-notes-2013-.pdf\">Everything You Ever Wanted to Know About Ski Waxing</a>(updated Dec 2 2013)</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>','TRAINING PLANS & WAXING','','inherit','open','closed','','319-revision-v1','','','2013-12-07 20:05:26','2013-12-08 01:05:26','',319,'https://sofits.ca/2013/12/07/319-revision-v1/',0,'revision','',0),(953,7,'2013-12-09 18:15:12','2013-12-09 23:15:12','We will be incorporating skate workouts into the mix, as promised, but not this week (too cold).   I\'m leaning to this format, but have several other ideas as well:\r\n\r\n<strong><em>Friday morning:  skate instruction (will cancel if  temperatures are too cold to skate).  It will start at 10:00 or so, with 90 minutes of easy drills at P8 for those who are new or relatively new to skating.  If you are also attending the afternoon session, bring a bag lunch to eat at my house or at the visitor\'s center (or buy lunch).  </em></strong>\r\n\r\n<strong><em>Friday afternoon:  classic workout (will switch to skate if conditions are poor for classic).   This will be a heavy duty workout for the more serious among us.  For those who have done skating in the morning, a second  option is to go for a group ski and accumulate some mileage without undo stress and fatigue. </em> </strong>\r\n\r\nI\'m going to post a few polls in a bit.  In the meantime, let me know your thoughts on this.  Is this a good format, or should we switch it around each Friday with classic in the morning on alternate Fridays?    How many of you do not skate at all?  (if not, you really should consider it.  Christmas is around the corner.)   I\'ll start a Facebook thing going for discussion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FUTURE FRIDAYS:  SKATE AND CLASSIC','','inherit','open','closed','','939-revision-v1','','','2013-12-09 18:15:12','2013-12-09 23:15:12','',939,'https://sofits.ca/2013/12/09/939-revision-v1/',0,'revision','',0),(954,7,'2013-12-09 18:28:24','2013-12-09 23:28:24','','130111_Skiers-in-the-rain','','inherit','open','closed','','130111_skiers-in-the-rain','','','2013-12-09 18:28:24','2013-12-09 23:28:24','',939,'https://sofits.ca/wp-content/uploads/130111_Skiers-in-the-rain.jpg',0,'attachment','image/jpeg',0),(955,7,'2013-12-09 18:32:06','2013-12-09 23:32:06','','Ski Waxing Updated Dec 9 2013','','inherit','open','closed','','ski-waxing-updated-dec-9-2013','','','2013-12-09 18:32:06','2013-12-09 23:32:06','',319,'https://sofits.ca/wp-content/uploads/Ski-Waxing-Updated-Dec-9-2013.pdf',0,'attachment','application/pdf',0),(956,7,'2013-12-09 18:35:47','2013-12-09 23:35:47','','BUILD 1 for SKIS FIRST','','inherit','open','closed','','sofits-generic-2013-build-1','','','2013-12-09 18:35:47','2013-12-09 23:35:47','',319,'https://sofits.ca/wp-content/uploads/SOFITS-GENERIC-2013-BUILD-1.pdf',0,'attachment','application/pdf',0),(957,7,'2013-12-09 18:37:00','2013-12-09 23:37:00','<a href=\"https://sofits.ca/training-plans/sofits-generic-2013-build-1/\" rel=\"attachment wp-att-956\"> <strong>BUILD 1, Weeks of Dec 9 to Dec 30</strong></a>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/training-plans/ski-waxing-updated-dec-9-2013/\" rel=\"attachment wp-att-955\">Ski Waxing Updated Dec 9 2013</a>  (Thanks, Ila!)\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','TRAINING PLANS & WAXING','','inherit','open','closed','','319-revision-v1','','','2013-12-09 18:37:00','2013-12-09 23:37:00','',319,'https://sofits.ca/2013/12/09/319-revision-v1/',0,'revision','',0),(958,7,'2013-12-09 19:45:09','2013-12-10 00:45:09','','BUILD 1 for  ALSO SKIS','','inherit','open','closed','','build-1-for-also-skis','','','2013-12-09 19:45:09','2013-12-10 00:45:09','',319,'https://sofits.ca/wp-content/uploads/BUILD-1-for-ALSO-SKIS-.pdf',0,'attachment','application/pdf',0),(959,7,'2013-12-09 19:45:49','2013-12-10 00:45:49','<a href=\"https://sofits.ca/training-plans/sofits-generic-2013-build-1/\" rel=\"attachment wp-att-956\"><a href=\"https://sofits.ca/training-plans/build-1-for-also-skis/\" rel=\"attachment wp-att-958\">BUILD 1 for ALSO SKIS</a>, Weeks of Dec 9 to Dec 30</a>\r\n\r\n<a href=\"https://sofits.ca/training-plans/sofits-generic-2013-build-1/\" rel=\"attachment wp-att-956\"><strong>BUILD 1, for SKI FIRST RUN LATER Weeks of Dec 9 to Dec 30</strong></a>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/training-plans/ski-waxing-updated-dec-9-2013/\" rel=\"attachment wp-att-955\">Ski Waxing Updated Dec 9 2013</a>  (Thanks, Ila!)\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','TRAINING PLANS & WAXING','','inherit','open','closed','','319-revision-v1','','','2013-12-09 19:45:49','2013-12-10 00:45:49','',319,'https://sofits.ca/2013/12/09/319-revision-v1/',0,'revision','',0),(960,7,'2013-12-09 19:47:34','2013-12-10 00:47:34','','SKI FIRST OR ALSO SKIS','','inherit','open','closed','','ski-first-or-also-skis','','','2013-12-09 19:47:34','2013-12-10 00:47:34','',319,'https://sofits.ca/wp-content/uploads/SKI-FIRST-OR-ALSO-SKIS.pdf',0,'attachment','application/pdf',0),(961,7,'2013-12-09 19:48:47','2013-12-10 00:48:47','&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/training-plans/ski-first-or-also-skis/\" rel=\"attachment wp-att-960\">SKI FIRST OR ALSO SKIS </a></strong>(read this first, then open the appropriate BUILD document.)\r\n\r\n<strong><a href=\"https://sofits.ca/training-plans/build-1-for-also-skis/\" rel=\"attachment wp-att-958\">BUILD 1 for ALSO SKIS Weeks of Dec 9 to Dec 30</a></strong>\r\n\r\n<a href=\"https://sofits.ca/training-plans/sofits-generic-2013-build-1/\" rel=\"attachment wp-att-956\"><strong>BUILD 1, for SKI FIRST RUN LATER Weeks of Dec 9 to Dec 30</strong></a>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/training-plans/ski-waxing-updated-dec-9-2013/\" rel=\"attachment wp-att-955\">Ski Waxing Updated Dec 9 2013</a>  (Thanks, Ila!)\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','TRAINING PLANS & WAXING','','inherit','open','closed','','319-revision-v1','','','2013-12-09 19:48:47','2013-12-10 00:48:47','',319,'https://sofits.ca/2013/12/09/319-revision-v1/',0,'revision','',0),(962,7,'2013-12-09 19:52:15','2013-12-10 00:52:15','&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/training-plans/ski-first-or-also-skis/\" rel=\"attachment wp-att-960\"><a href=\"https://sofits.ca/training-plans/ski-first-or-also-skis/\" rel=\"attachment wp-att-960\">SKI FIRST OR ALSO SKIS</a> </a></strong>(read this first, then open the appropriate BUILD document.)\r\n\r\n<strong><a href=\"https://sofits.ca/training-plans/build-1-for-also-skis/\" rel=\"attachment wp-att-958\">BUILD 1 for ALSO SKIS, weeks of Dec 9-30</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/training-plans/sofits-generic-2013-build-1/\" rel=\"attachment wp-att-956\">BUILD 1 for SKI FIRST, weeks of Dec 9 - 30 </a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/training-plans/ski-waxing-updated-dec-9-2013/\" rel=\"attachment wp-att-955\">Ski Waxing Updated Dec 9 2013</a>  (Thanks, Ila!)\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','TRAINING PLANS & WAXING','','inherit','open','closed','','319-revision-v1','','','2013-12-09 19:52:15','2013-12-10 00:52:15','',319,'https://sofits.ca/2013/12/09/319-revision-v1/',0,'revision','',0),(963,7,'2013-12-09 19:54:46','2013-12-10 00:54:46','&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SKI-FIRST-OR-ALSO-SKIS.pdf\">SKI FIRST OR ALSO SKIS</a> </strong>(read this first, then open the appropriate BUILD document.)\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/BUILD-1-for-ALSO-SKIS-.pdf\">BUILD 1 for ALSO SKIS, weeks of Dec 9 - 30</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/training-plans/sofits-generic-2013-build-1/\" rel=\"attachment wp-att-956\"><a href=\"https://sofits.ca/wp-content/uploads/SOFITS-GENERIC-2013-BUILD-1.pdf\">BUILD 1 for SKIS FIRST</a> </a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/Ski-Waxing-Updated-Dec-9-2013.pdf\">Ski Waxing Updated Dec 9 2013</a>  (Thanks, Ila!)\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','TRAINING PLANS & WAXING','','inherit','open','closed','','319-revision-v1','','','2013-12-09 19:54:46','2013-12-10 00:54:46','',319,'https://sofits.ca/2013/12/09/319-revision-v1/',0,'revision','',0),(964,7,'2013-12-09 19:56:27','2013-12-10 00:56:27','&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SKI-FIRST-OR-ALSO-SKIS.pdf\">SKI FIRST OR ALSO SKIS</a> </strong>(read this first, then open the appropriate BUILD document.)\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/BUILD-1-for-ALSO-SKIS-.pdf\">BUILD 1 for ALSO SKIS, weeks of Dec 9 - 30</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SOFITS-GENERIC-2013-BUILD-1.pdf\">BUILD 1 for SKIS FIRST</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/Ski-Waxing-Updated-Dec-9-2013.pdf\">SKI WAXING Updated Dec 9 2013</a>  (Thanks, Ila!)\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','TRAINING PLANS & WAXING','','inherit','open','closed','','319-revision-v1','','','2013-12-09 19:56:27','2013-12-10 00:56:27','',319,'https://sofits.ca/2013/12/09/319-revision-v1/',0,'revision','',0),(965,7,'2013-12-09 19:56:41','2013-12-10 00:56:41','&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SKI-FIRST-OR-ALSO-SKIS.pdf\">SKI FIRST THEN RUNS OR ALSO SKIS</a> </strong>(read this first, then open the appropriate BUILD document.)\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/BUILD-1-for-ALSO-SKIS-.pdf\">BUILD 1 for ALSO SKIS, weeks of Dec 9 - 30</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SOFITS-GENERIC-2013-BUILD-1.pdf\">BUILD 1 for SKIS FIRST</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/Ski-Waxing-Updated-Dec-9-2013.pdf\">SKI WAXING Updated Dec 9 2013</a>  (Thanks, Ila!)\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)<strong> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','TRAINING PLANS & WAXING','','inherit','open','closed','','319-revision-v1','','','2013-12-09 19:56:41','2013-12-10 00:56:41','',319,'https://sofits.ca/2013/12/09/319-revision-v1/',0,'revision','',0),(966,7,'2013-12-09 20:01:03','2013-12-10 01:01:03','1. Some RECIPES from Julie\r\n\r\n2. WAXING DOCUMENT now corrected (hopefully!)\r\n\r\n3. New TRAINING PLANS have been posted for the BUILD 1 phase.  Be sure to read the document labelled \"SKI FIRST THEN RUN or ALSO SKIS\" before plunging into your training.<strong><em>\r\n</em></strong>','More NEW POSTS','','publish','open','closed','','more-new-posts','','','2013-12-09 22:09:02','2013-12-10 03:09:02','',0,'https://sofits.ca/?p=966',0,'post','',0),(967,7,'2013-12-09 20:01:03','2013-12-10 01:01:03','1. <strong><em>WAXING DOCUMENT now corrected (hopefully!)</em></strong>\r\n\r\n2. <strong><em>Training plans have been posted for the BUILD 1 phase.  Be sure to read the document labelled \"SKI FIRST THEN RUN or ALSO SKIS\" before plunging into your training.\r\n</em></strong>','More NEW POSTS','','inherit','open','closed','','966-revision-v1','','','2013-12-09 20:01:03','2013-12-10 01:01:03','',966,'https://sofits.ca/2013/12/09/966-revision-v1/',0,'revision','',0),(969,7,'2013-12-09 20:36:47','2013-12-10 01:36:47','','Chocolate Banana Bread','','inherit','open','closed','','chocolate-banana-bread','','','2013-12-09 20:36:47','2013-12-10 01:36:47','',0,'https://sofits.ca/wp-content/uploads/Chocolate-Banana-Bread.pdf',0,'attachment','application/pdf',0),(970,7,'2013-12-09 20:37:59','2013-12-10 01:37:59','','Big Sur Power Bar','','inherit','open','closed','','big-sur-power-bar','','','2013-12-09 20:37:59','2013-12-10 01:37:59','',0,'https://sofits.ca/wp-content/uploads/Big-Sur-Power-Bar.pdf',0,'attachment','application/pdf',0),(971,7,'2013-12-09 20:38:36','2013-12-10 01:38:36','','Chewy Date and Seed Bars','','inherit','open','closed','','chewy-date-and-seed-bars','','','2013-12-09 20:38:36','2013-12-10 01:38:36','',0,'https://sofits.ca/wp-content/uploads/Chewy-Date-and-Seed-Bars.pdf',0,'attachment','application/pdf',0),(977,7,'2013-12-09 20:46:12','2013-12-10 01:46:12','1. <em><strong>Some RECIPES from Julie</strong> </em>\n\n2. <strong><em>WAXING DOCUMENT now corrected (hopefully!)</em></strong>\n\n3. New <strong><em>TRAINING PLANS have been posted for the BUILD 1 phase.  Be sure to read the document labelled \"SKI FIRST THEN RUN or ALSO SKIS\" before plunging into your training.\n</em></strong>','More NEW POSTS','','inherit','open','closed','','966-autosave-v1','','','2013-12-09 20:46:12','2013-12-10 01:46:12','',966,'https://sofits.ca/2013/12/09/966-autosave-v1/',0,'revision','',0),(978,7,'2013-12-09 20:46:44','2013-12-10 01:46:44','1. <strong>Some RECIPES from Julie</strong>\r\n\r\n2. <strong>WAXING DOCUMENT now corrected (hopefully!)</strong>\r\n\r\n3. <strong>New</strong> <strong>TRAINING PLANS have been posted for the BUILD 1 phase.  Be sure to read the document labelled \"SKI FIRST THEN RUN or ALSO SKIS\" before plunging into your training.<em>\r\n</em></strong>','More NEW POSTS','','inherit','open','closed','','966-revision-v1','','','2013-12-09 20:46:44','2013-12-10 01:46:44','',966,'https://sofits.ca/2013/12/09/966-revision-v1/',0,'revision','',0),(983,7,'2013-12-17 22:05:54','2013-12-18 03:05:54','[yop_poll id=\"30\"]','SKATE SKI POLL','','publish','open','closed','','skate-ski-poll','','','2013-12-18 09:28:11','2013-12-18 14:28:11','',0,'https://sofits.ca/?p=983',0,'post','',0),(984,7,'2013-12-09 22:05:54','2013-12-10 03:05:54','[yop_poll id=\"30\"]','SKATE SKI POLL','','inherit','open','closed','','983-revision-v1','','','2013-12-09 22:05:54','2013-12-10 03:05:54','',983,'https://sofits.ca/2013/12/09/983-revision-v1/',0,'revision','',0),(985,7,'2013-12-09 22:09:02','2013-12-10 03:09:02','1. Some RECIPES from Julie\r\n\r\n2. WAXING DOCUMENT now corrected (hopefully!)\r\n\r\n3. New TRAINING PLANS have been posted for the BUILD 1 phase.  Be sure to read the document labelled \"SKI FIRST THEN RUN or ALSO SKIS\" before plunging into your training.<strong><em>\r\n</em></strong>','More NEW POSTS','','inherit','open','closed','','966-revision-v1','','','2013-12-09 22:09:02','2013-12-10 03:09:02','',966,'https://sofits.ca/2013/12/09/966-revision-v1/',0,'revision','',0),(992,7,'2013-12-09 20:23:00','2013-12-10 01:23:00','It will be colder than other weeks. The more you know ahead of time, the less you will have to stand around tomorrow!\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #888888;\"><strong>Group 1:</strong></span></span>\r\n\r\nJulie\r\nJoanne\r\nCary\r\nMarg\r\nMary Lou\r\nCarol\r\nSusan O-N\r\nRosy\r\nSandra\r\nMichele\r\n\r\n<strong>12:45</strong>  Warm up and easy ski.\r\n\r\n<strong>1:00</strong> A continuous and steady ski of  40 minutes, no stopping, no racing, no huffing and puffing, no over-heating. Focus is on good weight shift, good pacing and no more than zone 2 (slightly heavier breathing than a really relaxed pace.   Go at YOUR OWN pace not the speed of someone else.  Turn around after 20 minutes and you will all switch off with the other group at the meeting spot at the top of the hill where the ice-fall is.\r\n\r\n<strong>1:40</strong>  Technique work and drills with Jo-Ann.  We will work on classic stride, uphill striding, tucking, , changing lanes, half plow, passing on up and downhills.  Basic skills.\r\n\r\n<strong>2:40</strong> head back to the parking lot.','GROUP \"1\" workout. ','','publish','open','closed','','group-1-workout','','','2013-12-14 16:25:41','2013-12-14 21:25:41','',0,'https://sofits.ca/?p=992',0,'post','',0),(993,7,'2013-12-12 20:23:00','2013-12-13 01:23:00','It will be colder than other weeks. The more you know ahead of time, the less you will have to stand around tomorrow!\r\n\r\n<strong>GROUP 1:</strong>\r\n\r\nJulie\r\nJoanne\r\nCary\r\nMarg\r\nMary Lou\r\nCarol\r\nSusan O-N\r\nRosy\r\nSandra\r\nMichele\r\n\r\n<strong>12:45</strong>  Warm up and easy ski.\r\n\r\n<strong>1:00</strong> A continuous and steady ski of  40 minutes, so stopping, no racing, no huffing and puffing.  Focus is on good weight shift, good pacing and no more than zone 2 (slightly heavier breathing than a really relaxed pace.   Go at YOUR OWN pace not the speed of someone else.  Turn around after 20 minutes and you will switch off with the other group at the meeting spot at the top of the hill where the ice-fall is.\r\n\r\n<strong>1:40</strong>  Technique work and drills with Jo-Ann.  We will work on classic stride, uphill striding, tucking, , changing lanes, half plow, passing on up and downhills.  Basic skills.\r\n\r\n<strong>2:40</strong> head back to the parking lot.','GROUP \"1\" workout. ','','inherit','open','closed','','992-revision-v1','','','2013-12-12 20:23:00','2013-12-13 01:23:00','',992,'https://sofits.ca/2013/12/12/992-revision-v1/',0,'revision','',0),(994,7,'2013-12-09 20:39:03','2013-12-10 01:39:03','Tomorrow\'s workout for \"group 2\".    The more you know ahead of time the less you will have to stand around in the cold.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Group 2:</strong></span>\r\n\r\nKathy\r\nMaggie\r\nSharon\r\nPat\r\nMeryl\r\nBea\r\nSusan R\r\nAnne\r\nIla\r\n\r\n<strong>12:45</strong> Warm Up well\r\n\r\n<strong>1:05</strong> drills with Jo-Ann, experimenting with some small adjustments.  We will do these at the ice-fall area at the top of the hill to the south of Kingsmere.\r\n\r\n<strong>1:40</strong> (Heading  towards the Black Lake Hill)  Double poling intervals 1 minutes x 10 with 1 minute recovery.  In the cold it will be more challenging than last week.  A quick tempo will be necessary.\r\n\r\n<strong>2:00</strong> (do these at the base of Black Lake Hill or thereabouts) Short sprints:  15-20 second sprints (quick tempo, all out effort) with 3 minutes easy skiing in between. Repeat 3 times.\r\n\r\n<strong>2:10</strong>  Hill repeats;  8 minutes X 2.   Zone 3/4.  With 4 minutes of downhill recovery in between the two repeats.  In the cold, go easier rather than harder.  If you don\'t feel up to this effort, do a steady 25 minute ski in zone 2 instead. Read below for a description of zone 3.\r\n\r\n<strong>2:35</strong> Ski back to the parking lot.  Ski without poles on the flatter stretches.   Be sure to eat something before you head to Yvonne\'s house!!\r\n\r\n<strong>Description of zone 3</strong>: Should feel  like perfect technique, balance really “clicks”, as fast and steady a pace as you can maintain without slowing down.  Your weight shift, balance, wax and glide should feel charmed at this pace.   Make sure you do not run on your skis!   You will be breathing fairly heavily, but should feel it is in control.   If your technique breaks down, stop the interval.  There is no point doing these with poor technique.','GROUP \"2\" workout','','publish','open','closed','','group-2-workout','','','2013-12-14 16:25:10','2013-12-14 21:25:10','',0,'https://sofits.ca/?p=994',0,'post','',0),(995,7,'2013-12-12 20:39:03','2013-12-13 01:39:03','Tomorrow\'s workout for \"group 2\".    The more you know ahead of time the less you will have to stand around in the cold.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Group 2:</strong></span>\r\n\r\nKathy\r\nMaggie\r\nSharon\r\nPat\r\nMeryl\r\nBea\r\nSusan R\r\nAnne\r\nIla\r\n\r\n<strong>12:45</strong> Warm Up well\r\n\r\n<strong>1:05</strong> drills with Jo-Ann, experimenting with some small adjustments.  We will do these at the ice-fall area at the top of the hill to the south of Kingsmere.\r\n\r\n<strong>1:40</strong> (Heading  towards the Black Lake Hill)  Double poling intervals 1 minutes x 10 with 1 minute recovery.  In the cold it will be more challenging than last week.  A quick tempo will be necessary.\r\n\r\n<strong>2:00</strong> (do these at the base of Black Lake Hill or thereabouts) Short sprints:  15-20 second sprints (quick tempo, all out effort) with 3 minutes easy skiing in between. Repeat 3 times.\r\n\r\n<strong>2:10</strong>  Hill repeats;  8 minutes X 2.   Zone 3/4.  With 4 minutes of downhill recovery in between the two repeats.  In the cold, go easier rather than harder.  If you don\'t feel up to this effort, do a steady 25 minute ski in zone 2 instead. Read below for a description of zone 3.\r\n\r\n<strong>2:35</strong> Ski back to the parking lot.   Be sure to eat something before you head to Yvonne\'s house!!\r\n\r\n<strong>Description of zone 3</strong>: Should feel  like perfect technique, balance really “clicks”, as fast and steady a pace as you can maintain without slowing down or really huffing.  Your weight shift, balance, wax and glide should feel charmed at this pace.   Make sure you do not run on your skis!   You will be breathing fairly heavily.   If your technique breaks down, stop the interval.  There is no point doing these with poor technique.','GROUP \"2\" workout','','inherit','open','closed','','994-revision-v1','','','2013-12-12 20:39:03','2013-12-13 01:39:03','',994,'https://sofits.ca/2013/12/12/994-revision-v1/',0,'revision','',0),(996,7,'2013-12-12 20:40:00','2013-12-13 01:40:00','It will be colder than other weeks. The more you know ahead of time, the less you will have to stand around tomorrow!\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #888888;\"><strong>Group 1:</strong></span></span>\r\n\r\nJulie\r\nJoanne\r\nCary\r\nMarg\r\nMary Lou\r\nCarol\r\nSusan O-N\r\nRosy\r\nSandra\r\nMichele\r\n\r\n<strong>12:45</strong>  Warm up and easy ski.\r\n\r\n<strong>1:00</strong> A continuous and steady ski of  40 minutes, so stopping, no racing, no huffing and puffing.  Focus is on good weight shift, good pacing and no more than zone 2 (slightly heavier breathing than a really relaxed pace.   Go at YOUR OWN pace not the speed of someone else.  Turn around after 20 minutes and you will switch off with the other group at the meeting spot at the top of the hill where the ice-fall is.\r\n\r\n<strong>1:40</strong>  Technique work and drills with Jo-Ann.  We will work on classic stride, uphill striding, tucking, , changing lanes, half plow, passing on up and downhills.  Basic skills.\r\n\r\n<strong>2:40</strong> head back to the parking lot.','GROUP \"1\" workout. ','','inherit','open','closed','','992-revision-v1','','','2013-12-12 20:40:00','2013-12-13 01:40:00','',992,'https://sofits.ca/2013/12/12/992-revision-v1/',0,'revision','',0),(997,7,'2013-12-12 20:41:09','2013-12-13 01:41:09','It will be colder than other weeks. The more you know ahead of time, the less you will have to stand around tomorrow!\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #888888;\"><strong>Group 1:</strong></span></span>\r\n\r\nJulie\r\nJoanne\r\nCary\r\nMarg\r\nMary Lou\r\nCarol\r\nSusan O-N\r\nRosy\r\nSandra\r\nMichele\r\n\r\n<strong>12:45</strong>  Warm up and easy ski.\r\n\r\n<strong>1:00</strong> A continuous and steady ski of  40 minutes, no stopping, no racing, no huffing and puffing, no over-heating. Focus is on good weight shift, good pacing and no more than zone 2 (slightly heavier breathing than a really relaxed pace.   Go at YOUR OWN pace not the speed of someone else.  Turn around after 20 minutes and you will all switch off with the other group at the meeting spot at the top of the hill where the ice-fall is.\r\n\r\n<strong>1:40</strong>  Technique work and drills with Jo-Ann.  We will work on classic stride, uphill striding, tucking, , changing lanes, half plow, passing on up and downhills.  Basic skills.\r\n\r\n<strong>2:40</strong> head back to the parking lot.','GROUP \"1\" workout. ','','inherit','open','closed','','992-revision-v1','','','2013-12-12 20:41:09','2013-12-13 01:41:09','',992,'https://sofits.ca/2013/12/12/992-revision-v1/',0,'revision','',0),(998,7,'2013-12-12 20:43:35','2013-12-13 01:43:35','Tomorrow\'s workout for \"group 2\".    The more you know ahead of time the less you will have to stand around in the cold.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Group 2:</strong></span>\r\n\r\nKathy\r\nMaggie\r\nSharon\r\nPat\r\nMeryl\r\nBea\r\nSusan R\r\nAnne\r\nIla\r\n\r\n<strong>12:45</strong> Warm Up well\r\n\r\n<strong>1:05</strong> drills with Jo-Ann, experimenting with some small adjustments.  We will do these at the ice-fall area at the top of the hill to the south of Kingsmere.\r\n\r\n<strong>1:40</strong> (Heading  towards the Black Lake Hill)  Double poling intervals 1 minutes x 10 with 1 minute recovery.  In the cold it will be more challenging than last week.  A quick tempo will be necessary.\r\n\r\n<strong>2:00</strong> (do these at the base of Black Lake Hill or thereabouts) Short sprints:  15-20 second sprints (quick tempo, all out effort) with 3 minutes easy skiing in between. Repeat 3 times.\r\n\r\n<strong>2:10</strong>  Hill repeats;  8 minutes X 2.   Zone 3/4.  With 4 minutes of downhill recovery in between the two repeats.  In the cold, go easier rather than harder.  If you don\'t feel up to this effort, do a steady 25 minute ski in zone 2 instead. Read below for a description of zone 3.\r\n\r\n<strong>2:35</strong> Ski back to the parking lot.  Ski without poles on the flatter stretches.   Be sure to eat something before you head to Yvonne\'s house!!\r\n\r\n<strong>Description of zone 3</strong>: Should feel  like perfect technique, balance really “clicks”, as fast and steady a pace as you can maintain without slowing down or really huffing.  Your weight shift, balance, wax and glide should feel charmed at this pace.   Make sure you do not run on your skis!   You will be breathing fairly heavily.   If your technique breaks down, stop the interval.  There is no point doing these with poor technique.','GROUP \"2\" workout','','inherit','open','closed','','994-revision-v1','','','2013-12-12 20:43:35','2013-12-13 01:43:35','',994,'https://sofits.ca/2013/12/12/994-revision-v1/',0,'revision','',0),(1000,7,'2013-12-12 20:58:05','2013-12-13 01:58:05','Tomorrow\'s workout for \"group 2\".    The more you know ahead of time the less you will have to stand around in the cold.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Group 2:</strong></span>\r\n\r\nKathy\r\nMaggie\r\nSharon\r\nPat\r\nMeryl\r\nBea\r\nSusan R\r\nAnne\r\nIla\r\n\r\n<strong>12:45</strong> Warm Up well\r\n\r\n<strong>1:05</strong> drills with Jo-Ann, experimenting with some small adjustments.  We will do these at the ice-fall area at the top of the hill to the south of Kingsmere.\r\n\r\n<strong>1:40</strong> (Heading  towards the Black Lake Hill)  Double poling intervals 1 minutes x 10 with 1 minute recovery.  In the cold it will be more challenging than last week.  A quick tempo will be necessary.\r\n\r\n<strong>2:00</strong> (do these at the base of Black Lake Hill or thereabouts) Short sprints:  15-20 second sprints (quick tempo, all out effort) with 3 minutes easy skiing in between. Repeat 3 times.\r\n\r\n<strong>2:10</strong>  Hill repeats;  8 minutes X 2.   Zone 3/4.  With 4 minutes of downhill recovery in between the two repeats.  In the cold, go easier rather than harder.  If you don\'t feel up to this effort, do a steady 25 minute ski in zone 2 instead. Read below for a description of zone 3.\r\n\r\n<strong>2:35</strong> Ski back to the parking lot.  Ski without poles on the flatter stretches.   Be sure to eat something before you head to Yvonne\'s house!!\r\n\r\n<strong>Description of zone 3</strong>: Should feel  like perfect technique, balance really “clicks”, as fast and steady a pace as you can maintain without slowing down.  Your weight shift, balance, wax and glide should feel charmed at this pace.   Make sure you do not run on your skis!   You will be breathing fairly heavily, but should feel it is in control.   If your technique breaks down, stop the interval.  There is no point doing these with poor technique.','GROUP \"2\" workout','','inherit','open','closed','','994-revision-v1','','','2013-12-12 20:58:05','2013-12-13 01:58:05','',994,'https://sofits.ca/2013/12/12/994-revision-v1/',0,'revision','',0),(1011,7,'2013-12-17 16:19:17','2013-12-17 21:19:17','(Courtesy of  Rosy  )\r\n\r\n<strong>The Skill Mastery Hierarchy -</strong>\r\n\r\nAs we all become better skiers, here is an interesting continuum of awareness:\r\n\r\n1 - Unconscious Incompetence (we don\'t know we\'re doing it wrong)\r\n2 - Conscious Incompetence (we know what we\'re doing wrong)\r\n3 - Conscious Competence (we do it right if we concentrate)\r\n4 - Unconscious Competence (we do it right without thinking about it anymore)','CONTINUUM of AWARENESS','','publish','open','closed','','continuum-of-awareness','','','2013-12-18 09:29:16','2013-12-18 14:29:16','',0,'https://sofits.ca/?p=1011',0,'post','',0),(1012,7,'2013-12-14 16:19:17','2013-12-14 21:19:17','(Copied from Rosy\'s Facebook posting  )\r\n\r\nThe Skill Mastery Hierarchy -\r\n\r\nAs we all become better skiers, here is an interesting continuum of awareness:\r\n\r\n1 - Unconscious Incompetence (we don\'t know we\'re doing it wrong)\r\n2 - Conscious Incompetence (we know what we\'re doing wrong)\r\n3 - Conscious Competence (we do it right if we concentrate)\r\n4 - Unconscious Competence (we do it right without thinking about it anymore)','CONTINUUM of AWARENESS','','inherit','open','closed','','1011-revision-v1','','','2013-12-14 16:19:17','2013-12-14 21:19:17','',1011,'https://sofits.ca/2013/12/14/1011-revision-v1/',0,'revision','',0),(1016,7,'2013-12-14 16:26:58','2013-12-14 21:26:58','(Courtesy of  Rosy  )\r\n\r\nThe Skill Mastery Hierarchy -\r\n\r\nAs we all become better skiers, here is an interesting continuum of awareness:\r\n\r\n1 - Unconscious Incompetence (we don\'t know we\'re doing it wrong)\r\n2 - Conscious Incompetence (we know what we\'re doing wrong)\r\n3 - Conscious Competence (we do it right if we concentrate)\r\n4 - Unconscious Competence (we do it right without thinking about it anymore)','CONTINUUM of AWARENESS','','inherit','open','closed','','1011-revision-v1','','','2013-12-14 16:26:58','2013-12-14 21:26:58','',1011,'https://sofits.ca/2013/12/14/1011-revision-v1/',0,'revision','',0),(1017,7,'2013-12-14 16:27:14','2013-12-14 21:27:14','(Courtesy of  Rosy  )\r\n\r\n<strong>The Skill Mastery Hierarchy -</strong>\r\n\r\nAs we all become better skiers, here is an interesting continuum of awareness:\r\n\r\n1 - Unconscious Incompetence (we don\'t know we\'re doing it wrong)\r\n2 - Conscious Incompetence (we know what we\'re doing wrong)\r\n3 - Conscious Competence (we do it right if we concentrate)\r\n4 - Unconscious Competence (we do it right without thinking about it anymore)','CONTINUUM of AWARENESS','','inherit','open','closed','','1011-revision-v1','','','2013-12-14 16:27:14','2013-12-14 21:27:14','',1011,'https://sofits.ca/2013/12/14/1011-revision-v1/',0,'revision','',0),(1018,7,'2013-12-15 10:50:50','2013-12-15 15:50:50','SKI in BELLS CORNERS:\r\nTuesday Dec. 17th at 1pm\r\nPlease join Michele for ski from her home in Bells Corners on great NCC trails . Soup will be warming post ski. Please contact her for directions 613 422 0451 or email: michele.robertson@live.ca\r\n(note:  do not reply with Facebook).   You can also  post a comment here if you are coming.','DEC 17.  SKI in BELLS CORNERS','','publish','open','closed','','dec-17-ski-in-bells-corners','','','2013-12-18 09:27:27','2013-12-18 14:27:27','',0,'https://sofits.ca/?p=1018',0,'post','',0),(1019,7,'2013-12-16 10:50:50','2013-12-16 15:50:50','SKI in BELLS CORNERS:\r\nTuesday Dec. 17th at 1pm\r\nPlease join Michele for ski from her home in Bells Corners on great NCC trails . Soup will be warming post ski. Please contact her for directions 613 422 0451 or email: michele.robertson@live.ca\r\n(note:  do not reply with Facebook).   You can also  post a comment here if you are coming.','DEC 17.  SKI in BELLS CORNERS','','inherit','open','closed','','1018-revision-v1','','','2013-12-16 10:50:50','2013-12-16 15:50:50','',1018,'https://sofits.ca/2013/12/16/1018-revision-v1/',0,'revision','',0),(1020,7,'2013-12-17 09:20:57','2013-12-17 14:20:57','','Workout of Dec 13 2013','','inherit','open','closed','','workout-of-dec-13-2013','','','2013-12-17 09:20:57','2013-12-17 14:20:57','',346,'https://sofits.ca/wp-content/uploads/Workout-of-Dec-13-2013.pdf',0,'attachment','application/pdf',0),(1021,7,'2013-12-17 09:21:35','2013-12-17 14:21:35','<strong><a href=\"https://sofits.ca/wp-content/uploads/Workout-of-Dec-13-2013.pdf\">Week 12: Workout of December 13 2013 SNOW</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-29-2013-SNOW.pdf\">Week 11: Workout of November 29 2013 SNOW</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-22-2013.pdf\">Week 10: Workout of November 22 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-15-2013-.pdf\">Week 9: Workout of November 15 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-8-2013-.pdf\">Week 8: Workout of November 8 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-1-2013.pdf\">Week 7: Workout of November 1 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-25-2013.pdf\">Week 6: Workout of October 25 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-18-2013-.pdf\">Week 5: Workout of October 18 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct10-2013-.pdf\">Week 4: Workout of October 10 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-3-2013-.pdf\">Week 3: Workout of October 3 2013</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  27 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2013-12-17 09:21:35','2013-12-17 14:21:35','',346,'https://sofits.ca/2013/12/17/346-revision-v1/',0,'revision','',0),(1050,7,'2013-12-30 09:33:21','2013-12-30 14:33:21','Dan Riseborough\'s funeral will be held on Friday, January 3.   at  the St. Laurent Chapel of Hulse, Playfair &amp; McGarry,  1200 Ogilvie Road Ottawa, ON\r\n\r\n&nbsp;\r\n\r\nFirst visitation begins at 1:00, the service  at 2:30,   and a reception to follow.\r\n\r\n&nbsp;\r\n<div>Full details can be found at the <strong><a href=\"https://www.mcgarryfamily.ca/book-of-memories/1760048/Riseborough-Daniel-Dan/service-details.php\">Hulse, Playfair and McGarry  website</a>. </strong></div>','FUNERAL DETAILS','','publish','open','closed','','funeral','','','2013-12-30 09:38:02','2013-12-30 14:38:02','',0,'https://sofits.ca/?p=1050',0,'post','',0),(1051,7,'2013-12-30 09:33:21','2013-12-30 14:33:21','Dan Riseborough\'s funeral will be held on Friday, January 3.   First visitation begins at 1:00, the service follows at 2:30,    with a reception after the service.\r\n<div>St. Laurent Chapel of Hulse, Playfair &amp; McGarry</div>\r\n<div>1200 Ogilvie Road Ottawa, ON</div>\r\n<div></div>\r\n<div>Full details can be found at the <strong><a href=\"https://www.mcgarryfamily.ca/book-of-memories/1760048/Riseborough-Daniel-Dan/service-details.php\">Hulse, Playfair and McGarry  website</a>. </strong></div>','Funeral Details','','inherit','open','closed','','1050-revision-v1','','','2013-12-30 09:33:21','2013-12-30 14:33:21','',1050,'https://sofits.ca/2013/12/30/1050-revision-v1/',0,'revision','',0),(1052,7,'2013-12-30 09:37:31','2013-12-30 14:37:31','Dan Riseborough\'s funeral will be held on Friday, January 3.   at  the St. Laurent Chapel of Hulse, Playfair &amp; McGarry,  1200 Ogilvie Road Ottawa, ON\n\n&nbsp;\n\nFirst visitation begins at 1:00, the service  at 2:30,   and a reception to follow.\n\n&nbsp;\n<div>Full details can be found at the <strong><a href=\"https://www.mcgarryfamily.ca/book-of-memories/1760048/Riseborough-Daniel-Dan/service-details.php\">Hulse, Playfair and McGarry  website</a>. </strong></div>','Funeral Details','','inherit','open','closed','','1050-autosave-v1','','','2013-12-30 09:37:31','2013-12-30 14:37:31','',1050,'https://sofits.ca/2013/12/30/1050-autosave-v1/',0,'revision','',0),(1053,7,'2013-12-30 09:38:02','2013-12-30 14:38:02','Dan Riseborough\'s funeral will be held on Friday, January 3.   at  the St. Laurent Chapel of Hulse, Playfair &amp; McGarry,  1200 Ogilvie Road Ottawa, ON\r\n\r\n&nbsp;\r\n\r\nFirst visitation begins at 1:00, the service  at 2:30,   and a reception to follow.\r\n\r\n&nbsp;\r\n<div>Full details can be found at the <strong><a href=\"https://www.mcgarryfamily.ca/book-of-memories/1760048/Riseborough-Daniel-Dan/service-details.php\">Hulse, Playfair and McGarry  website</a>. </strong></div>','FUNERAL DETAILS','','inherit','open','closed','','1050-revision-v1','','','2013-12-30 09:38:02','2013-12-30 14:38:02','',1050,'https://sofits.ca/2013/12/30/1050-revision-v1/',0,'revision','',0),(1054,7,'2014-01-05 16:38:48','2014-01-05 21:38:48','<h2>For a more up to date and extensive collection of training articles, check out (or ask to join - it\'s not a public group) the Sofits training articles Facebook page.</h2>\r\n<h2><a href=\"httpss://www.facebook.com/groups/331593340665743/\">httpss://www.facebook.com/groups/331593340665743/</a></h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30 and wildly inaccurate.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n\r\n<a href=\"https://skitrails.xcottawa.ca/skitrails_gatineau_park.php\">XCOttawa Gatineau Park Ski Trail Reports </a>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n\r\n<a href=\"https://www.theweathernetwork.com/weather/canada/quebec/chelsea\">The Weather Network - Chelsea</a>\r\n\r\n<a href=\"https://weather.gc.ca/radar/index_e.html?id=XFT\">Franktown Radar </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a href=\"https://www.precisionnutrition.com/working-out-when-sick\" target=\"_blank\" rel=\"noopener noreferrer\">Should you exercise when you\'re sick?</a>:  a detailed discussion of pros and cons, including discussion of how to adapt your training when sick.\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2014/05/140530154109.htm\" target=\"_blank\" rel=\"noopener noreferrer\">Quality, not quantity, counts most in exercise, diet</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2014/06/11/judging-badly-how-hard-we-exercise/?_php=true&amp;_type=blogs&amp;_php=true&amp;_type=blogs&amp;ref=health&amp;_r=2&amp;\" target=\"_blank\" rel=\"noopener noreferrer\">Overestimating How Hard We Exercise</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/older-does-not-mean-slower-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Research Shows – Older Does NOT Mean Slower</a>\r\n\r\n<a href=\"https://running.competitor.com/2014/06/training/study-run-faster-to-ride-better_43375\" target=\"_blank\" rel=\"noopener noreferrer\">Run Faster To Ride Better </a>\r\n\r\n<a href=\"https://www.220triathlon.com/training/long-distance/can-heavy-lifting-increase-your-endurance-performance/8724.html\" target=\"_blank\" rel=\"noopener noreferrer\">Can heavy lifting increase your endurance performance?</a>\r\n\r\n<a href=\"https://home.trainingpeaks.com/blog/article/the-1-rule-of-endurance-training?utm_source=tpr&amp;utm_medium=email&amp;utm_content=utb11&amp;utm_campaign=utb\" target=\"_blank\" rel=\"noopener noreferrer\">The #1 Rule of Endurance Training</a>\r\n<a href=\"https://www.sciencedaily.com/releases/2014/06/140605113510.htm\" target=\"_blank\" rel=\"noopener noreferrer\">Molecular secret of short, intense workouts clarified</a>\r\n<p id=\"page-title\"><a href=\"https://www.runnersworld.com/injury-prevention-recovery/hip-weakness-and-knee-pain\" target=\"_blank\" rel=\"noopener noreferrer\">Hip Weakness and Knee Pain</a></p>\r\n\r\n<h3><span style=\"text-decoration: underline; color: #ff0000;\">Some links about the importance of recovery:</span></h3>\r\n<ul>\r\n 	<li>Joe Friel\'s article \"<a href=\"https://thesportfactory.com/site/trainingnews/Fitness_Depends_on_Recovery_257.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Fitness depends on Recovery</a>\"</li>\r\n 	<li>a cycling article \"<a href=\"https://www.climbbybike.com/cycling-training-and-supercompensation.asp\" target=\"_blank\" rel=\"noopener noreferrer\">Training, resting and supercompensation</a>\"</li>\r\n</ul>\r\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\r\n\r\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\" rel=\"noopener noreferrer\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\" rel=\"noopener noreferrer\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\" rel=\"noopener noreferrer\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\" rel=\"noopener noreferrer\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\" rel=\"noopener noreferrer\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>BOOKS</strong>\r\n\r\n<em><strong>Books About Running: (Do you need extra motivation to get out the door for that run?  )</strong></em>\r\n\r\nBorn to Run - McDougall  (loved this book, it kindled an urge to resume  running  after being injured)\r\n\r\nEat and Run - Jurek ( same characters, different author,  seemed like  a companion book to Born to Run)\r\n\r\nWhy I Run - Sutcliffe (local journalist, enthusiastic and self-styled -\"ordinary\" runner.)\r\n\r\nRunning with the Mind of Meditation - Mipham (interesting ideas about the different stages runners go through)\r\n\r\nThe Grace to Race - Sister Madonna Buder (not a literary masterpiece but an inspiring tale  of the octogenarian nun who competes in Ironmen.)\r\n\r\n<em><strong>Books About Training, Exercise, and Aging Well:</strong></em>\r\n\r\nCross Training - Fitzgerald (Thanks Pat - just spent the weekend reading this  - great book!  If you read only one training book, read this.)\r\n\r\nCycling Past 50 - Friel (all of his books are highly recommended, but perhaps this  is most relevant to our group)\r\n\r\nTriathlete\'s Training Bible - Friel\r\n\r\nCyclists\'s Training Bible - Friel\r\n\r\nTotal Heart Rate Training - Friel\r\n\r\nRun: Running by Feel - Fitzgerald (many AHA! moments in this book, but learn to train before you read it).\r\n\r\nYounger Next Year: Crowley (lots of sensible advice, easily read, thanks Susan!)\r\n\r\nWhich Came First Cardio or Weights - Hutchison (a myth buster)\r\n\r\nThe Cure for Everything - Caulfield (in the same vein as the previous book, but not just exercise)\r\n\r\n<em><strong>Food and Healthy Eating:</strong></em> Many of these books are from opposing corners of the kitchen, so to speak, but it was interesting to see what they actually agreed on!\r\n\r\nThe Omnivore\'s Dilemma - Pollan (the book that launched me on this journey - a must read!  I love his writing. Thank you Susan)\r\n\r\nThe China Study - Campbell\r\n\r\nWhat to Eat - Nestle ( a thorough  analysis - usually scathing -  of all the food you will encounter in a food store.)\r\n\r\nDiet For a Small Planet - Lappé ( not a new book - you either have read this or must read it)\r\n\r\nWhy We Get Fat ( you don\'t want to know what you are eating)\r\n\r\nEat and Run - Jurek\r\n\r\nPaleo Diet - Cordain/Friel\r\n\r\nFood Rules -  Pollan (a simple guide to eating healthily)\r\n\r\nWheat Belly - Davis\r\n\r\nCooked - Pollan (thanks again, Susan, an inspiring and entertaining book! ).\r\n\r\nWild Fermentation - Katz (how to bring healthy microbes back into our modern lives)\r\n\r\n<em><strong>Nature and Health</strong></em><em><strong>  </strong></em>We all know that exercise is more fun outdoors.  These two books confirm just HOW important it  is to our health.\r\n\r\nThe Nature Principle - Louv (\"why we need a botanical sense of place\", \"what if we take pride in our diverse and fascinating bioregion\", \"knowing who you are by where you are\" - \"the garden creates the gardener \". This book offers hope in the face of all the terrible things that are happening to our natural world.\r\n\r\nYour Brain on Nature - Selhub/Logan (scientific evidence for things you already know from experience).','LINKS & BOOKS','','publish','open','closed','','links-to-skiing-and-related-information','','','2019-09-14 10:35:16','2019-09-14 14:35:16','',0,'https://sofits.ca/?page_id=1054',0,'page','',0),(1055,7,'2014-01-05 16:27:04','2014-01-05 21:27:04','','Links to skiing and related information','','inherit','open','closed','','1054-revision-v1','','','2014-01-05 16:27:04','2014-01-05 21:27:04','',1054,'https://sofits.ca/2014/01/05/1054-revision-v1/',0,'revision','',0),(1056,7,'2014-01-05 16:30:20','2014-01-05 21:30:20','<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a href=\"https://www.xcottawa.ca\">XC Ottawa website</a>','Links to skiing and related information','','inherit','open','closed','','1054-revision-v1','','','2014-01-05 16:30:20','2014-01-05 21:30:20','',1054,'https://sofits.ca/2014/01/05/1054-revision-v1/',0,'revision','',0),(1057,7,'2014-01-05 16:37:41','2014-01-05 21:37:41','<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30.\r\n\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>','Links to skiing and related information','','inherit','open','closed','','1054-revision-v1','','','2014-01-05 16:37:41','2014-01-05 21:37:41','',1054,'https://sofits.ca/2014/01/05/1054-revision-v1/',0,'revision','',0),(1058,7,'2014-01-05 16:38:25','2014-01-05 21:38:25','<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30.\r\n\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>','Links to skiing and related information','','inherit','open','closed','','1054-revision-v1','','','2014-01-05 16:38:25','2014-01-05 21:38:25','',1054,'https://sofits.ca/2014/01/05/1054-revision-v1/',0,'revision','',0),(1059,7,'2014-01-05 16:38:48','2014-01-05 21:38:48',' ','','','publish','open','closed','','1059','','','2014-01-05 16:38:48','2014-01-05 21:38:48','',0,'https://sofits.ca/2014/01/05/1059/',18,'nav_menu_item','',0),(1060,7,'2014-01-05 16:42:09','2014-01-05 21:42:09','I\'ve just added a page with a few skiing related links.  Please comment if you know of other links of general interest.','Links added','','publish','open','closed','','links-added','','','2014-01-05 16:42:09','2014-01-05 21:42:09','',0,'https://sofits.ca/?p=1060',0,'post','',0),(1061,7,'2014-01-05 16:41:19','2014-01-05 21:41:19','I\'ve just added a page with a few skiing related links.  Please comment if you know of other links of general interest.','Links added','','inherit','open','closed','','1060-revision-v1','','','2014-01-05 16:41:19','2014-01-05 21:41:19','',1060,'https://sofits.ca/2014/01/05/1060-revision-v1/',0,'revision','',0),(1062,7,'2014-01-05 16:43:01','2014-01-05 21:43:01','<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30.\r\n\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>','LINKS','','inherit','open','closed','','1054-revision-v1','','','2014-01-05 16:43:01','2014-01-05 21:43:01','',1054,'https://sofits.ca/2014/01/05/1054-revision-v1/',0,'revision','',0),(1070,7,'2014-01-08 08:16:37','2014-01-08 13:16:37','<strong><a href=\"https://sofits.ca/fridays-stuff/fri-jan-10/\">CLICK HERE FOR DETAILS</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','JAN. 10  TRAINING','','publish','open','closed','','jan-10-training','','','2014-01-08 08:20:40','2014-01-08 13:20:40','',0,'https://sofits.ca/?p=1070',0,'post','',0),(1071,7,'2014-01-08 08:16:37','2014-01-08 13:16:37','Details are posted\r\n\r\nhttps://sofits.ca/fridays-stuff/fri-jan-10/','JAN. 10  TRAINING','','inherit','open','closed','','1070-revision-v1','','','2014-01-08 08:16:37','2014-01-08 13:16:37','',1070,'https://sofits.ca/2014/01/08/1070-revision-v1/',0,'revision','',0),(1072,7,'2014-01-08 08:17:37','2014-01-08 13:17:37','Details are posted  under <strong><a href=\"https://sofits.ca/fridays-stuff/fri-jan-10/\">WEEKLY GROUP TRAINING/JANUARY 10</a></strong>\r\n\r\n&nbsp;','JAN. 10  TRAINING','','inherit','open','closed','','1070-revision-v1','','','2014-01-08 08:17:37','2014-01-08 13:17:37','',1070,'https://sofits.ca/2014/01/08/1070-revision-v1/',0,'revision','',0),(1073,7,'2014-01-08 08:19:05','2014-01-08 13:19:05','Details are posted  under\r\n\r\n<strong><a href=\"https://sofits.ca/fridays-stuff/fri-jan-10/\">WEEKLY GROUP TRAINING/JANUARY 10</a></strong>\r\n\r\n&nbsp;','JAN. 10  TRAINING','','inherit','open','closed','','1070-revision-v1','','','2014-01-08 08:19:05','2014-01-08 13:19:05','',1070,'https://sofits.ca/2014/01/08/1070-revision-v1/',0,'revision','',0),(1074,7,'2014-01-08 08:20:40','2014-01-08 13:20:40','<strong><a href=\"https://sofits.ca/fridays-stuff/fri-jan-10/\">CLICK HERE FOR DETAILS</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','JAN. 10  TRAINING','','inherit','open','closed','','1070-revision-v1','','','2014-01-08 08:20:40','2014-01-08 13:20:40','',1070,'https://sofits.ca/2014/01/08/1070-revision-v1/',0,'revision','',0),(1075,7,'2019-09-14 10:34:56','2019-09-14 14:34:56','<h2>For a more up to date and extensive collection of training articles, check out (or ask to join - it\'s not a public group) the Sofits training articles Facebook page.</h2>\n<h2>httpss://www.facebook.com/groups/331593340665743/</h2>\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\n\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\n\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30 and wildly inaccurate.\n\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\n\n<a href=\"https://skitrails.xcottawa.ca/skitrails_gatineau_park.php\">XCOttawa Gatineau Park Ski Trail Reports </a>\n<h2></h2>\n<h2></h2>\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\n\n<a href=\"https://www.theweathernetwork.com/weather/canada/quebec/chelsea\">The Weather Network - Chelsea</a>\n\n<a href=\"https://weather.gc.ca/radar/index_e.html?id=XFT\">Franktown Radar </a>\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\n</span></span></h2>\n<a href=\"https://www.precisionnutrition.com/working-out-when-sick\" target=\"_blank\" rel=\"noopener noreferrer\">Should you exercise when you\'re sick?</a>:  a detailed discussion of pros and cons, including discussion of how to adapt your training when sick.\n\n<a href=\"https://www.sciencedaily.com/releases/2014/05/140530154109.htm\" target=\"_blank\" rel=\"noopener noreferrer\">Quality, not quantity, counts most in exercise, diet</a>\n\n<a href=\"https://well.blogs.nytimes.com/2014/06/11/judging-badly-how-hard-we-exercise/?_php=true&amp;_type=blogs&amp;_php=true&amp;_type=blogs&amp;ref=health&amp;_r=2&amp;\" target=\"_blank\" rel=\"noopener noreferrer\">Overestimating How Hard We Exercise</a>\n\n<a href=\"https://www.iawr-connect.com/training/older-does-not-mean-slower-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Research Shows – Older Does NOT Mean Slower</a>\n\n<a href=\"https://running.competitor.com/2014/06/training/study-run-faster-to-ride-better_43375\" target=\"_blank\" rel=\"noopener noreferrer\">Run Faster To Ride Better </a>\n\n<a href=\"https://www.220triathlon.com/training/long-distance/can-heavy-lifting-increase-your-endurance-performance/8724.html\" target=\"_blank\" rel=\"noopener noreferrer\">Can heavy lifting increase your endurance performance?</a>\n\n<a href=\"https://home.trainingpeaks.com/blog/article/the-1-rule-of-endurance-training?utm_source=tpr&amp;utm_medium=email&amp;utm_content=utb11&amp;utm_campaign=utb\" target=\"_blank\" rel=\"noopener noreferrer\">The #1 Rule of Endurance Training</a>\n<a href=\"https://www.sciencedaily.com/releases/2014/06/140605113510.htm\" target=\"_blank\" rel=\"noopener noreferrer\">Molecular secret of short, intense workouts clarified</a>\n<p id=\"page-title\"><a href=\"https://www.runnersworld.com/injury-prevention-recovery/hip-weakness-and-knee-pain\" target=\"_blank\" rel=\"noopener noreferrer\">Hip Weakness and Knee Pain</a></p>\n\n<h3><span style=\"text-decoration: underline; color: #ff0000;\">Some links about the importance of recovery:</span></h3>\n<ul>\n 	<li>Joe Friel\'s article \"<a href=\"https://thesportfactory.com/site/trainingnews/Fitness_Depends_on_Recovery_257.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Fitness depends on Recovery</a>\"</li>\n 	<li>a cycling article \"<a href=\"https://www.climbbybike.com/cycling-training-and-supercompensation.asp\" target=\"_blank\" rel=\"noopener noreferrer\">Training, resting and supercompensation</a>\"</li>\n</ul>\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\n\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\n\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\n\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\n\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\n\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\n\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\n\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\n\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\n\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\n\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\" rel=\"noopener noreferrer\">A nice, short article for those creating their own training plans</a>\n\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\" rel=\"noopener noreferrer\">Swimming compared to other aerobic activities</a>\n\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\" rel=\"noopener noreferrer\">Combat Negative Self-Talk</a>\n\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\" rel=\"noopener noreferrer\">Common Training Mistakes - for all of us!</a>\n\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\" rel=\"noopener noreferrer\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\n\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\n\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\n\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\n\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\n\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\n\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\n\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\n\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\n\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\n\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\n\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\n\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\n\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\n\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\n\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\n\n&nbsp;\n\n&nbsp;\n\n<strong>BOOKS</strong>\n\n<em><strong>Books About Running: (Do you need extra motivation to get out the door for that run?  )</strong></em>\n\nBorn to Run - McDougall  (loved this book, it kindled an urge to resume  running  after being injured)\n\nEat and Run - Jurek ( same characters, different author,  seemed like  a companion book to Born to Run)\n\nWhy I Run - Sutcliffe (local journalist, enthusiastic and self-styled -\"ordinary\" runner.)\n\nRunning with the Mind of Meditation - Mipham (interesting ideas about the different stages runners go through)\n\nThe Grace to Race - Sister Madonna Buder (not a literary masterpiece but an inspiring tale  of the octogenarian nun who competes in Ironmen.)\n\n<em><strong>Books About Training, Exercise, and Aging Well:</strong></em>\n\nCross Training - Fitzgerald (Thanks Pat - just spent the weekend reading this  - great book!  If you read only one training book, read this.)\n\nCycling Past 50 - Friel (all of his books are highly recommended, but perhaps this  is most relevant to our group)\n\nTriathlete\'s Training Bible - Friel\n\nCyclists\'s Training Bible - Friel\n\nTotal Heart Rate Training - Friel\n\nRun: Running by Feel - Fitzgerald (many AHA! moments in this book, but learn to train before you read it).\n\nYounger Next Year: Crowley (lots of sensible advice, easily read, thanks Susan!)\n\nWhich Came First Cardio or Weights - Hutchison (a myth buster)\n\nThe Cure for Everything - Caulfield (in the same vein as the previous book, but not just exercise)\n\n<em><strong>Food and Healthy Eating:</strong></em> Many of these books are from opposing corners of the kitchen, so to speak, but it was interesting to see what they actually agreed on!\n\nThe Omnivore\'s Dilemma - Pollan (the book that launched me on this journey - a must read!  I love his writing. Thank you Susan)\n\nThe China Study - Campbell\n\nWhat to Eat - Nestle ( a thorough  analysis - usually scathing -  of all the food you will encounter in a food store.)\n\nDiet For a Small Planet - Lappé ( not a new book - you either have read this or must read it)\n\nWhy We Get Fat ( you don\'t want to know what you are eating)\n\nEat and Run - Jurek\n\nPaleo Diet - Cordain/Friel\n\nFood Rules -  Pollan (a simple guide to eating healthily)\n\nWheat Belly - Davis\n\nCooked - Pollan (thanks again, Susan, an inspiring and entertaining book! ).\n\nWild Fermentation - Katz (how to bring healthy microbes back into our modern lives)\n\n<em><strong>Nature and Health</strong></em><em><strong>  </strong></em>We all know that exercise is more fun outdoors.  These two books confirm just HOW important it  is to our health.\n\nThe Nature Principle - Louv (\"why we need a botanical sense of place\", \"what if we take pride in our diverse and fascinating bioregion\", \"knowing who you are by where you are\" - \"the garden creates the gardener \". This book offers hope in the face of all the terrible things that are happening to our natural world.\n\nYour Brain on Nature - Selhub/Logan (scientific evidence for things you already know from experience).','LINKS & BOOKS','','inherit','open','closed','','1054-autosave-v1','','','2019-09-14 10:34:56','2019-09-14 14:34:56','',1054,'https://sofits.ca/2014/01/08/1054-autosave-v1/',0,'revision','',0),(1076,7,'2014-01-08 15:01:42','2014-01-08 20:01:42','<h2><span style=\"color: #008000;\">SKIING</span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30.\r\n\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\"><a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a></a>\r\n<h2><span style=\"color: #008000;\">WEATHER</span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n<h2><span style=\"color: #008000;\">General Fitness</span></h2>\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>','LINKS','','inherit','open','closed','','1054-revision-v1','','','2014-01-08 15:01:42','2014-01-08 20:01:42','',1054,'https://sofits.ca/2014/01/08/1054-revision-v1/',0,'revision','',0),(1077,7,'2014-01-08 15:07:40','2014-01-08 20:07:40','<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"color: #008000;\">(see also <a href=\"../information-inspiration/links/\">../information-inspiration/links/</a>)</span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>','LINKS:','','inherit','open','closed','','1054-revision-v1','','','2014-01-08 15:07:40','2014-01-08 20:07:40','',1054,'https://sofits.ca/2014/01/08/1054-revision-v1/',0,'revision','',0),(1078,7,'2014-01-08 15:09:19','2014-01-08 20:09:19','<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"color: #008000;\">(see also <a href=\"../information-inspiration/links/\">../information-inspiration/links/</a>)</span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>','LINKS: please comment if you know of other links of general interest.','','inherit','open','closed','','1054-revision-v1','','','2014-01-08 15:09:19','2014-01-08 20:09:19','',1054,'https://sofits.ca/2014/01/08/1054-revision-v1/',0,'revision','',0),(1079,7,'2014-01-08 23:50:59','2014-01-09 04:50:59','<h2>Please comment if you know of other links of general interest.</h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"color: #008000;\">(see also <a href=\"../information-inspiration/links/\">../information-inspiration/links/</a>)</span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>','LINKS','','inherit','open','closed','','1054-revision-v1','','','2014-01-08 23:50:59','2014-01-09 04:50:59','',1054,'https://sofits.ca/2014/01/08/1054-revision-v1/',0,'revision','',0),(1094,7,'2014-01-28 08:16:37','2014-01-28 13:16:37','[yop_poll id=\"38\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;','AFTERNOON JAN 31','','publish','open','closed','','afternoon-attendance-jan-31','','','2014-01-28 10:08:01','2014-01-28 15:08:01','',0,'https://sofits.ca/?p=1094',0,'post','',0),(1095,7,'2014-01-20 08:16:37','2014-01-20 13:16:37','<span style=\"text-decoration: underline;\"><strong>CLASSIC SKIING</strong></span>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #ff0000;\"><strong>12:45 from P8.  </strong></span></span>\r\n\r\nSame format as last week. Arrive at 12:30, start skiing by 12:45, ski to Penguin Picnic Area (top of the first hill heading towards P5) and keep skiing around until the practice starts at 1:20\r\n\r\nWe have only 4 official workouts left . This one will be a REAL workout, so check back later for details on the warmup, which I will post by Thursday evening, and which you should do on your own between 12:45 and 1:20.\r\n\r\nIt will be cold out, so plan to keep moving, dress appropriately, bring dry clothes, hot drink, and blah, blah, blah.\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"36\"]','Friday January 24','','inherit','open','closed','','1094-revision-v1','','','2014-01-20 08:16:37','2014-01-20 13:16:37','',1094,'https://sofits.ca/2014/01/20/1094-revision-v1/',0,'revision','',0),(1096,7,'2014-01-20 08:17:23','2014-01-20 13:17:23','<span style=\"text-decoration: underline;\"><strong>CLASSIC SKIING</strong></span>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #ff0000;\"><strong>12:45 from P8.  </strong></span></span>\r\n\r\nSame format as last week. Arrive at 12:30, start skiing by 12:45, ski to Penguin Picnic Area (top of the first hill heading towards P5) and beyond, and keep skiing around until the practice starts at 1:20\r\n\r\nWe have only 4 official workouts left . This one will be a REAL workout, so check back later for details on the warmup, which I will post by Thursday evening, and which you should do on your own between 12:45 and 1:20.\r\n\r\nIt will be cold out, so plan to keep moving, dress appropriately, bring dry clothes, hot drink, and blah, blah, blah.\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"36\"]','Friday January 24','','inherit','open','closed','','1094-revision-v1','','','2014-01-20 08:17:23','2014-01-20 13:17:23','',1094,'https://sofits.ca/2014/01/20/1094-revision-v1/',0,'revision','',0),(1097,7,'2014-01-28 08:19:26','2014-01-28 13:19:26','<strong><span style=\"text-decoration: underline;\"><span style=\"color: #ff0000; text-decoration: underline;\">Morning Session: 9:45 arrival (or earlier) at P8</span></span>,</strong> meet near the Penguin picnic ground at 10:15 for a 45 minute session followed by a free ski.  If you want to learn a <em><strong><span style=\"color: #000000;\">new skill</span>,</strong></em> arrive <strong>early</strong> and be warmed up ready to learn before 10:15!\r\n\r\nClassic or skate, your choice, as the weather will be good for either, and this <em><strong>new skill</strong></em> is useful for both.\r\n\r\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">Afternoon Ski: </span></strong></span>  I suggest you contact the people you would like to ski with (see poll for who is planning to be out), and use Facebook to agree on a meeting place.   This session is not coached, but the weather should be great for a long ski.','TRAINING JAN 31','','publish','open','closed','','january-24-attendance','','','2014-01-29 22:31:34','2014-01-30 03:31:34','',0,'https://sofits.ca/?p=1097',0,'post','',0),(1098,7,'2014-01-20 08:19:26','2014-01-20 13:19:26','[yop_poll id=\"36\"]','January 24 Attendance','','inherit','open','closed','','1097-revision-v1','','','2014-01-20 08:19:26','2014-01-20 13:19:26','',1097,'https://sofits.ca/2014/01/20/1097-revision-v1/',0,'revision','',0),(1099,7,'2014-01-20 08:20:02','2014-01-20 13:20:02','<span style=\"text-decoration: underline;\"><strong>CLASSIC SKIING</strong></span>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #ff0000;\"><strong>12:45 from P8.  </strong></span></span>\r\n\r\nSame format as last week. Arrive at 12:30, start skiing by 12:45, ski to Penguin Picnic Area (top of the first hill heading towards P5) and beyond, and keep skiing around until the practice starts at 1:20\r\n\r\nWe have only 4 official workouts left . This one will be a REAL workout, so check back later for details on the warmup, which I will post by Thursday evening, and which you should do on your own between 12:45 and 1:20.\r\n\r\nIt will be cold out, so plan to keep moving, dress appropriately, bring dry clothes, hot drink, and blah, blah, blah.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Friday January 24','','inherit','open','closed','','1094-revision-v1','','','2014-01-20 08:20:02','2014-01-20 13:20:02','',1094,'https://sofits.ca/2014/01/20/1094-revision-v1/',0,'revision','',0),(1100,7,'2014-01-20 08:21:21','2014-01-20 13:21:21','<span style=\"text-decoration: underline;\"><strong>CLASSIC SKIING</strong></span>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"color: #ff0000;\"><strong>12:45 from P8.  </strong></span></span>\r\n\r\nSame format as last week. Arrive at 12:30, DO NOT WAIT, start skiing by 12:45, ski to Penguin Picnic Area (top of the first hill heading towards P5) and beyond, and keep skiing around until the practice starts at 1:20\r\n\r\nWe have only 4 official workouts left . This one will be a REAL workout, so check back later for details on the specific warmup, which I will post by Thursday evening, and which you should do on your own between 12:45 and 1:20.\r\n\r\nIt will be cold out, so plan to keep moving, dress appropriately, bring dry clothes, hot drink, and blah, blah, blah.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Friday January 24','','inherit','open','closed','','1094-revision-v1','','','2014-01-20 08:21:21','2014-01-20 13:21:21','',1094,'https://sofits.ca/2014/01/20/1094-revision-v1/',0,'revision','',0),(1101,7,'2014-01-20 08:22:02','2014-01-20 13:22:02','[yop_poll id=\"36\"]','Attendance for Jan 24','','inherit','open','closed','','1097-revision-v1','','','2014-01-20 08:22:02','2014-01-20 13:22:02','',1097,'https://sofits.ca/2014/01/20/1097-revision-v1/',0,'revision','',0),(1102,7,'2014-01-28 08:23:19','2014-01-28 13:23:19','[yop_poll id=\"37\"]','MORNING JAN 31','','publish','open','closed','','morning-attendance-jan-31','','','2014-01-28 10:07:18','2014-01-28 15:07:18','',0,'https://sofits.ca/?p=1102',0,'post','',0),(1103,7,'2014-01-20 08:23:19','2014-01-20 13:23:19','Details to be posted by Thursday evening.','Warm Up and Workout for Jan 24','','inherit','open','closed','','1102-revision-v1','','','2014-01-20 08:23:19','2014-01-20 13:23:19','',1102,'https://sofits.ca/2014/01/20/1102-revision-v1/',0,'revision','',0),(1104,7,'2014-01-20 08:25:12','2014-01-20 13:25:12','<h2>Please comment if you know of other links of general interest.</h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;','LINKS','','inherit','open','closed','','1054-revision-v1','','','2014-01-20 08:25:12','2014-01-20 13:25:12','',1054,'https://sofits.ca/2014/01/20/1054-revision-v1/',0,'revision','',0),(1108,7,'2014-01-20 08:37:40','2014-01-20 13:37:40','<strong>Week 17:  Jan 17, Coaches were away, unstructured ski</strong>\r\n\r\n<strong>Week 16: Jan 10,  Skate technique drills, and classic technique tweaking.  Followed by a free ski</strong>\r\n\r\n(Weeks 13, 14, 15 had to be cancelled)\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/Workout-of-Dec-13-2013.pdf\">Week 12: Workout of December 13 2013 SNOW</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-29-2013-SNOW.pdf\">Week 11: Workout of November 29 2013 SNOW</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-22-2013.pdf\">Week 10: Workout of November 22 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-15-2013-.pdf\">Week 9: Workout of November 15 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-8-2013-.pdf\">Week 8: Workout of November 8 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-November-1-2013.pdf\">Week 7: Workout of November 1 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-25-2013.pdf\">Week 6: Workout of October 25 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-18-2013-.pdf\">Week 5: Workout of October 18 2013</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct10-2013-.pdf\">Week 4: Workout of October 10 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Oct-3-2013-.pdf\">Week 3: Workout of October 3 2013</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-Sept-26-2013-.pdf\">Week 2: Workout  of September  27 2013</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Workout-of-September-19-2013.pdf\">Week 1: Workout of September 19 2013</a></strong>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2014-01-20 08:37:40','2014-01-20 13:37:40','',346,'https://sofits.ca/2014/01/20/346-revision-v1/',0,'revision','',0),(1109,7,'2014-01-28 10:03:09','2014-01-28 15:03:09','[yop_poll id=\"37\"]','MORNING JAN 31','','inherit','open','closed','','1102-autosave-v1','','','2014-01-28 10:03:09','2014-01-28 15:03:09','',1102,'https://sofits.ca/2014/01/23/1102-autosave-v1/',0,'revision','',0),(1110,7,'2014-01-23 20:09:25','2014-01-24 01:09:25','Lots of indecision here!   It is going to be very cold, still, so overheating is a bad idea. For your warm up, please try to start skiing on time, keep it simple and just ski steadily for the half hour, but avoid heavy  breathing or sweating.  Include some skiing without poles,  and  3 or 4 short sprints that last up to 15 seconds each ( no longer!), preferably on an uphill, and then follow each sprint with a few minutes of that steady and easy skiing.  Don\'t forget to include lots of double poling too!\r\n\r\nWe may briefly review step double pole, and if the conditions are soft enough, we will also work on some downhill skills.   And then we will ski another 11 K to complete the loop.   The slower skiers are going to have a head start so that we can all end up together without getting cold!','Warm Up and Workout for Jan 24','','inherit','open','closed','','1102-revision-v1','','','2014-01-23 20:09:25','2014-01-24 01:09:25','',1102,'https://sofits.ca/2014/01/23/1102-revision-v1/',0,'revision','',0),(1111,7,'2014-01-23 20:11:44','2014-01-24 01:11:44','Lots of indecision here!   It is going to be very cold, still, so overheating is a bad idea. For your warm up, please try to start skiing on time, keep it simple and just ski steadily for the half hour, but avoid heavy  breathing or sweating.  Include some skiing without poles,  and  3 or 4 short sprints that last up to 15 seconds each ( no longer!), preferably on an uphill, and then follow each sprint with a few minutes of that steady and easy skiing.  Don\'t forget to include lots of double poling too!\r\n\r\nWe may briefly review step double pole, and depending on conditions we will  work on some downhill or uphill skills (very vague!)   And finish with a group ski, with a twist.','Warm Up and Workout for Jan 24','','inherit','open','closed','','1102-revision-v1','','','2014-01-23 20:11:44','2014-01-24 01:11:44','',1102,'https://sofits.ca/2014/01/23/1102-revision-v1/',0,'revision','',0),(1112,7,'2014-01-27 13:40:48','2014-01-27 18:40:48','<h2>Please comment if you know of other links of general interest.</h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;','LINKS','','inherit','open','closed','','1054-revision-v1','','','2014-01-27 13:40:48','2014-01-27 18:40:48','',1054,'https://sofits.ca/2014/01/27/1054-revision-v1/',0,'revision','',0),(1113,7,'2014-01-27 13:50:45','2014-01-27 18:50:45','<h2>Please comment if you know of other links of general interest.</h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\r\n\r\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;','LINKS','','inherit','open','closed','','1054-revision-v1','','','2014-01-27 13:50:45','2014-01-27 18:50:45','',1054,'https://sofits.ca/2014/01/27/1054-revision-v1/',0,'revision','',0),(1119,7,'2014-01-28 10:01:54','2014-01-28 15:01:54','I have to drive to Montreal in the afternoon, but there is a <em><strong>particular</strong> </em>workout I would like to do in the morning, providing there is interest in it.  There still is  the option of skiing as a group in the afternoon, for those who cannot come in the morning, and it might possibly be coached.   Snow conditions should be excellent on Friday.\r\n\r\n<strong>Time: 9:45 arrival (or earlier) at P8,</strong> meet near the Penguin picnic ground at 10:15 for a 45 minute session followed by a free ski.  If you want to learn a <em><strong>new skill,</strong></em> arrive <strong>early</strong> and be warmed up ready to learn before 10:15!\r\n\r\nClassic or skate, your choice, as the weather will be good for either, and this <em><strong>new skill</strong></em> is transferable to both.','Training  Jan 31','','inherit','open','closed','','1097-revision-v1','','','2014-01-28 10:01:54','2014-01-28 15:01:54','',1097,'https://sofits.ca/2014/01/28/1097-revision-v1/',0,'revision','',0),(1120,7,'2014-01-28 10:03:25','2014-01-28 15:03:25','[yop_poll id=\"37\"]','MORNING JAN 31','','inherit','open','closed','','1102-revision-v1','','','2014-01-28 10:03:25','2014-01-28 15:03:25','',1102,'https://sofits.ca/2014/01/28/1102-revision-v1/',0,'revision','',0),(1121,7,'2014-01-28 10:04:15','2014-01-28 15:04:15','I have to drive to Montreal in the afternoon, but there is a <em><strong>particular</strong> </em>workout I would like to do in the morning, providing there is interest in it.  There still is  the option of skiing as a group in the afternoon, for those who cannot come in the morning, and it might possibly be coached.   Snow conditions should be excellent on Friday.\r\n\r\n<strong>Time: 9:45 arrival (or earlier) at P8,</strong> meet near the Penguin picnic ground at 10:15 for a 45 minute session followed by a free ski.  If you want to learn a <em><strong>new skill,</strong></em> arrive <strong>early</strong> and be warmed up ready to learn before 10:15!\r\n\r\nClassic or skate, your choice, as the weather will be good for either, and this <em><strong>new skill</strong></em> is transferable to both.','TRAINING JAN 31','','inherit','open','closed','','1097-revision-v1','','','2014-01-28 10:04:15','2014-01-28 15:04:15','',1097,'https://sofits.ca/2014/01/28/1097-revision-v1/',0,'revision','',0),(1122,7,'2014-01-29 22:29:56','2014-01-30 03:29:56','I have to drive to Montreal in the afternoon, but there is a <em><strong>particular</strong> <strong>workout</strong></em> I would like to do in the morning, providing there is interest in it.     Snow conditions should be excellent on Friday.\n\n<strong><span style=\"color: #ff0000;\">Morning Session: 9:45 arrival (or earlier) at P8</span>,</strong> meet near the Penguin picnic ground at 10:15 for a 45 minute session followed by a free ski.  If you want to learn a <em><strong><span style=\"color: #000000;\">new skill</span>,</strong></em> arrive <strong>early</strong> and be warmed up ready to learn before 10:15!\n\nClassic or skate, your choice, as the weather will be good for either, and this <em><strong>new skill</strong></em> is useful for both.\n\n<span style=\"color: #ff0000;\">Afternoon Ski: </span>  I suggest you contact the people you would like to ski with (see poll for who is planning to be out), and use Facebook to agree on a meeting place.   This session is not coached, but the weather should be great for a long ski.','TRAINING JAN 31','','inherit','open','closed','','1097-autosave-v1','','','2014-01-29 22:29:56','2014-01-30 03:29:56','',1097,'https://sofits.ca/2014/01/28/1097-autosave-v1/',0,'revision','',0),(1123,7,'2014-01-28 10:05:22','2014-01-28 15:05:22','I have to drive to Montreal in the afternoon, but there is a <em><strong>particular</strong> </em>workout I would like to do in the morning, providing there is interest in it.  There still is  the option of skiing as a group in the afternoon, for those who cannot come in the morning, and it might possibly be coached.   Snow conditions should be excellent on Friday.\r\n\r\n<strong><span style=\"color: #ff0000;\">Time: 9:45 arrival (or earlier) at P8</span>,</strong> meet near the Penguin picnic ground at 10:15 for a 45 minute session followed by a free ski.  If you want to learn a <em><strong><span style=\"color: #000000;\">new skill</span>,</strong></em> arrive <strong>early</strong> and be warmed up ready to learn before 10:15!\r\n\r\nClassic or skate, your choice, as the weather will be good for either, and this <em><strong>new skill</strong></em> is useful for both.','TRAINING JAN 31','','inherit','open','closed','','1097-revision-v1','','','2014-01-28 10:05:22','2014-01-28 15:05:22','',1097,'https://sofits.ca/2014/01/28/1097-revision-v1/',0,'revision','',0),(1124,7,'2014-01-28 10:05:33','2014-01-28 15:05:33','I have to drive to Montreal in the afternoon, but there is a <em><strong>particular</strong> <strong>workout</strong></em> I would like to do in the morning, providing there is interest in it.  There still is  the option of skiing as a group in the afternoon, for those who cannot come in the morning, and it might possibly be coached.   Snow conditions should be excellent on Friday.\r\n\r\n<strong><span style=\"color: #ff0000;\">Time: 9:45 arrival (or earlier) at P8</span>,</strong> meet near the Penguin picnic ground at 10:15 for a 45 minute session followed by a free ski.  If you want to learn a <em><strong><span style=\"color: #000000;\">new skill</span>,</strong></em> arrive <strong>early</strong> and be warmed up ready to learn before 10:15!\r\n\r\nClassic or skate, your choice, as the weather will be good for either, and this <em><strong>new skill</strong></em> is useful for both.','TRAINING JAN 31','','inherit','open','closed','','1097-revision-v1','','','2014-01-28 10:05:33','2014-01-28 15:05:33','',1097,'https://sofits.ca/2014/01/28/1097-revision-v1/',0,'revision','',0),(1125,7,'2014-01-28 10:06:41','2014-01-28 15:06:41','[yop_poll id=\"38\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;','AFTERNOON JAN 31','','inherit','open','closed','','1094-revision-v1','','','2014-01-28 10:06:41','2014-01-28 15:06:41','',1094,'https://sofits.ca/2014/01/28/1094-revision-v1/',0,'revision','',0),(1140,7,'2014-01-29 22:30:39','2014-01-30 03:30:39','I have to drive to Montreal in the afternoon, but there is a <em><strong>particular</strong> <strong>workout</strong></em> I would like to do in the morning, providing there is interest in it.     Snow conditions should be excellent on Friday.\r\n\r\n<strong><span style=\"text-decoration: underline;\"><span style=\"color: #ff0000; text-decoration: underline;\">Morning Session: 9:45 arrival (or earlier) at P8</span></span>,</strong> meet near the Penguin picnic ground at 10:15 for a 45 minute session followed by a free ski.  If you want to learn a <em><strong><span style=\"color: #000000;\">new skill</span>,</strong></em> arrive <strong>early</strong> and be warmed up ready to learn before 10:15!\r\n\r\nClassic or skate, your choice, as the weather will be good for either, and this <em><strong>new skill</strong></em> is useful for both.\r\n\r\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">Afternoon Ski: </span></strong></span>  I suggest you contact the people you would like to ski with (see poll for who is planning to be out), and use Facebook to agree on a meeting place.   This session is not coached, but the weather should be great for a long ski.','TRAINING JAN 31','','inherit','open','closed','','1097-revision-v1','','','2014-01-29 22:30:39','2014-01-30 03:30:39','',1097,'https://sofits.ca/2014/01/29/1097-revision-v1/',0,'revision','',0),(1141,7,'2014-01-29 22:31:34','2014-01-30 03:31:34','<strong><span style=\"text-decoration: underline;\"><span style=\"color: #ff0000; text-decoration: underline;\">Morning Session: 9:45 arrival (or earlier) at P8</span></span>,</strong> meet near the Penguin picnic ground at 10:15 for a 45 minute session followed by a free ski.  If you want to learn a <em><strong><span style=\"color: #000000;\">new skill</span>,</strong></em> arrive <strong>early</strong> and be warmed up ready to learn before 10:15!\r\n\r\nClassic or skate, your choice, as the weather will be good for either, and this <em><strong>new skill</strong></em> is useful for both.\r\n\r\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">Afternoon Ski: </span></strong></span>  I suggest you contact the people you would like to ski with (see poll for who is planning to be out), and use Facebook to agree on a meeting place.   This session is not coached, but the weather should be great for a long ski.','TRAINING JAN 31','','inherit','open','closed','','1097-revision-v1','','','2014-01-29 22:31:34','2014-01-30 03:31:34','',1097,'https://sofits.ca/2014/01/29/1097-revision-v1/',0,'revision','',0),(1143,7,'2014-02-05 08:45:13','2014-02-05 13:45:13','<strong><span style=\"color: #ff0000;\">12:45,  at the Relais;</span></strong> <strong><span style=\"color: #ff0000;\"> This is P2</span></strong>.  Park at the stadium where there is no charge.  Classic or Skate, whatever you do best. Warm up  followed by a game of Blackout Bridge on Skis.  If you are too late arriving, we will all be gone.  Poof!\r\n\r\n<strong><span style=\"color: #0000ff;\">Please bring a watch with a timer if you have one. </span></strong> If you haven\'t yet sent me a specific guess (not a range, but a specific time) for your 5 K time, please do this as soon as possible.   If you feel like skiing slowly, send in a slower time, if faster, a faster time.  Don\'t agonize about it, just make a guess.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Blackout Bridge on Skis Feb 7','','publish','open','closed','','friday-feb-7','','','2014-02-06 22:44:14','2014-02-07 03:44:14','',0,'https://sofits.ca/?p=1143',0,'post','',0),(1144,7,'2014-02-05 08:45:13','2014-02-05 13:45:13','For this workout, I need two things:\r\n\r\n1.  The estimated time it takes you to ski 5 K.  (slow or fast, you choose.)  You can email me with this at jholden@magma.ca\r\n\r\n2.  To know if you are coming.  This workout will take a bit of advanced planning.  When I see the numbers I will choose the location.\r\n\r\n[yop_poll id=\"39\"]','Friday Feb 7','','inherit','open','closed','','1143-revision-v1','','','2014-02-05 08:45:13','2014-02-05 13:45:13','',1143,'https://sofits.ca/2014/02/05/1143-revision-v1/',0,'revision','',0),(1146,7,'2014-02-05 08:47:12','2014-02-05 13:47:12','[yop_poll id=\"39\"]','Who is Coming Feb 7','','publish','open','closed','','who-is-coming-feb-7','','','2014-02-05 08:47:12','2014-02-05 13:47:12','',0,'https://sofits.ca/?p=1146',0,'post','',0),(1147,7,'2014-02-05 08:47:12','2014-02-05 13:47:12','[yop_poll id=\"39\"]','Who is Coming Feb 7','','inherit','open','closed','','1146-revision-v1','','','2014-02-05 08:47:12','2014-02-05 13:47:12','',1146,'https://sofits.ca/2014/02/05/1146-revision-v1/',0,'revision','',0),(1148,7,'2014-02-05 08:47:51','2014-02-05 13:47:51','For this workout, I need two things:\r\n\r\n1.  The estimated time it takes you to ski 5 K.  (slow or fast, you choose.)  You can email me with this at jholden@magma.ca\r\n\r\n2.  To know if you are coming.  This workout will take a bit of advanced planning.  When I see the numbers I will choose the location.\r\n\r\n&nbsp;','Friday Feb 7','','inherit','open','closed','','1143-revision-v1','','','2014-02-05 08:47:51','2014-02-05 13:47:51','',1143,'https://sofits.ca/2014/02/05/1143-revision-v1/',0,'revision','',0),(1149,7,'2014-02-05 08:48:33','2014-02-05 13:48:33','<span style=\"text-decoration: underline;\"><span style=\"color: #888888; text-decoration: underline;\"><strong>12:45</strong></span></span>, location to be decided. For this workout, I need two things:\r\n\r\n1.  The estimated time it takes you to ski 5 K.  (slow or fast, you choose.)  You can email me with this at jholden@magma.ca\r\n\r\n2.  To know if you are coming.  This workout will take a bit of advanced planning.  When I see the numbers I will choose the location.\r\n\r\n&nbsp;','Friday Feb 7','','inherit','open','closed','','1143-revision-v1','','','2014-02-05 08:48:33','2014-02-05 13:48:33','',1143,'https://sofits.ca/2014/02/05/1143-revision-v1/',0,'revision','',0),(1150,7,'2014-02-05 09:17:10','2014-02-05 14:17:10','<span style=\"text-decoration: underline;\"><span style=\"color: #888888; text-decoration: underline;\"><strong>12:45</strong></span></span>, location to be decided. For this workout, I need two things:\r\n\r\n1.  The estimated time it takes you to ski 5 K.  (slow or fast, you choose.)  You can email me with this at jholden@magma.ca or send it by facebook mail.\r\n\r\n2.  To know if you are coming.  This workout will take a bit of advanced planning.  When I see the numbers I will choose the location.\r\n\r\n&nbsp;','Friday Feb 7','','inherit','open','closed','','1143-revision-v1','','','2014-02-05 09:17:10','2014-02-05 14:17:10','',1143,'https://sofits.ca/2014/02/05/1143-revision-v1/',0,'revision','',0),(1151,7,'2014-02-05 09:18:07','2014-02-05 14:18:07','<span style=\"text-decoration: underline;\"><span style=\"color: #888888; text-decoration: underline;\"><strong>12:45</strong></span></span>, location to be decided. For this workout, I need two things:\r\n\r\n1.  The estimated time it takes you to ski 5 K.  (slow or fast, you choose.)  You can email me with this at jholden@magma.ca or send it by facebook mail.\r\n\r\n2.  To know if you are coming.  This workout will take a bit of advanced planning.  When I see the numbers  I will choose the location.\r\n\r\n&nbsp;','Friday Feb 7','','inherit','open','closed','','1143-revision-v1','','','2014-02-05 09:18:07','2014-02-05 14:18:07','',1143,'https://sofits.ca/2014/02/05/1143-revision-v1/',0,'revision','',0),(1152,7,'2014-02-05 09:19:45','2014-02-05 14:19:45','<span style=\"text-decoration: underline;\"><span style=\"color: #888888; text-decoration: underline;\"><strong>12:45</strong></span></span>, location to be decided. For this workout, I need two things:\r\n\r\n1.  The estimated time it takes you to ski 5 K.  (slow or fast, you choose.)  You can email me with this at jholden@magma.ca or send it by facebook mail.  If you have no idea, just make a guess.\r\n\r\n2.  To know if you are coming.  This workout will take a bit of advanced planning.  When I see the numbers  I will choose the location.\r\n\r\n&nbsp;','Friday Feb 7','','inherit','open','closed','','1143-revision-v1','','','2014-02-05 09:19:45','2014-02-05 14:19:45','',1143,'https://sofits.ca/2014/02/05/1143-revision-v1/',0,'revision','',0),(1153,7,'2014-02-06 18:53:18','2014-02-06 23:53:18','<strong><span style=\"color: #ff0000;\">12:45,  at the Relais;</span></strong> <strong><span style=\"color: #ff0000;\"> This is P2</span></strong>.  Park at the stadium where there is no charge.  Warm up  followed by a game of Blackout Bridge on Skis.  If you are too late arriving, we will all be gone.  Poof!\n\n<strong><span style=\"color: #0000ff;\">Please bring a watch with a timer if you have one. </span></strong> If you haven\'t yet sent me a specific guess (not a range, but a specific time) for your 5 K time, please do this as soon as possible.   If you feel like skiing slowly, send in a slower time, if faster, a faster time.  Don\'t agonize about it, just make a guess.\n\n&nbsp;\n\n&nbsp;','Blackout Bridge on Skis Feb 7','','inherit','open','closed','','1143-autosave-v1','','','2014-02-06 18:53:18','2014-02-06 23:53:18','',1143,'https://sofits.ca/2014/02/06/1143-autosave-v1/',0,'revision','',0),(1154,7,'2014-02-06 18:49:13','2014-02-06 23:49:13','<span style=\"text-decoration: underline;\"><span style=\"color: #888888; text-decoration: underline;\"><strong>12:45</strong></span></span>, The Relais;   Warm up  followed by a game of Blackout Bridge on Skis.  If you are too late arriving, we will all be gone.  Poof!\r\n\r\n1.  If you haven\'t yet sent me a specific guess (not a range, but a specific time) for your 5 K time, please do this as soon as possible.   If you feel like skiing slowly, send in a slower time, if faster, a faster time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Blackout Bridge on Skis Feb 7','','inherit','open','closed','','1143-revision-v1','','','2014-02-06 18:49:13','2014-02-06 23:49:13','',1143,'https://sofits.ca/2014/02/06/1143-revision-v1/',0,'revision','',0),(1155,7,'2014-02-06 18:53:24','2014-02-06 23:53:24','<strong><span style=\"color: #ff0000;\">12:45,  at the Relais;</span></strong> <strong><span style=\"color: #ff0000;\"> This is P2</span></strong>.  Park at the stadium where there is no charge.  Warm up  followed by a game of Blackout Bridge on Skis.  If you are too late arriving, we will all be gone.  Poof!\r\n\r\n<strong><span style=\"color: #0000ff;\">Please bring a watch with a timer if you have one. </span></strong> If you haven\'t yet sent me a specific guess (not a range, but a specific time) for your 5 K time, please do this as soon as possible.   If you feel like skiing slowly, send in a slower time, if faster, a faster time.  Don\'t agonize about it, just make a guess.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Blackout Bridge on Skis Feb 7','','inherit','open','closed','','1143-revision-v1','','','2014-02-06 18:53:24','2014-02-06 23:53:24','',1143,'https://sofits.ca/2014/02/06/1143-revision-v1/',0,'revision','',0),(1158,7,'2014-02-06 22:42:22','2014-02-07 03:42:22','<strong>Magic Numbers</strong>\r\n<span style=\"text-decoration: underline;\"><strong>Time</strong></span><strong>  </strong><span style=\"text-decoration: underline;\"><strong> Skier</strong></span>\r\n01       Marg\r\n02       Joanne B\r\n03       Susan R.\r\n09       Maggie\r\n10       Mary Lou\r\n10       Sandra\r\n10       Ila\r\n13.5    Rosy\r\n17       Meryl\r\n18       Julie\r\n20       Susan O.\r\n20       Anne\r\n21       Jo-Ann\r\nKathy?','Magic Numbers','','publish','open','closed','','magic-numbers','','','2014-02-06 22:42:22','2014-02-07 03:42:22','',0,'https://sofits.ca/?p=1158',0,'post','',0),(1159,7,'2014-02-06 22:42:22','2014-02-07 03:42:22','<strong>Magic Numbers</strong>\r\n<span style=\"text-decoration: underline;\"><strong>Time</strong></span><strong>  </strong><span style=\"text-decoration: underline;\"><strong> Skier</strong></span>\r\n01       Marg\r\n02       Joanne B\r\n03       Susan R.\r\n09       Maggie\r\n10       Mary Lou\r\n10       Sandra\r\n10       Ila\r\n13.5    Rosy\r\n17       Meryl\r\n18       Julie\r\n20       Susan O.\r\n20       Anne\r\n21       Jo-Ann\r\nKathy?','Magic Numbers','','inherit','open','closed','','1158-revision-v1','','','2014-02-06 22:42:22','2014-02-07 03:42:22','',1158,'https://sofits.ca/2014/02/06/1158-revision-v1/',0,'revision','',0),(1160,7,'2014-02-06 22:44:14','2014-02-07 03:44:14','<strong><span style=\"color: #ff0000;\">12:45,  at the Relais;</span></strong> <strong><span style=\"color: #ff0000;\"> This is P2</span></strong>.  Park at the stadium where there is no charge.  Classic or Skate, whatever you do best. Warm up  followed by a game of Blackout Bridge on Skis.  If you are too late arriving, we will all be gone.  Poof!\r\n\r\n<strong><span style=\"color: #0000ff;\">Please bring a watch with a timer if you have one. </span></strong> If you haven\'t yet sent me a specific guess (not a range, but a specific time) for your 5 K time, please do this as soon as possible.   If you feel like skiing slowly, send in a slower time, if faster, a faster time.  Don\'t agonize about it, just make a guess.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Blackout Bridge on Skis Feb 7','','inherit','open','closed','','1143-revision-v1','','','2014-02-06 22:44:14','2014-02-07 03:44:14','',1143,'https://sofits.ca/2014/02/06/1143-revision-v1/',0,'revision','',0),(1161,7,'2014-02-09 07:46:49','2014-02-09 12:46:49','','Uphill-time-Trial-Feb-2014','','inherit','open','closed','','uphill-time-trial','','','2014-02-09 07:46:49','2014-02-09 12:46:49','',0,'https://sofits.ca/wp-content/uploads/Uphill-time-Trial.pdf',0,'attachment','application/pdf',0),(1178,7,'2014-02-17 10:00:25','2014-02-17 15:00:25','&nbsp;\r\n\r\n<strong><span style=\"color: #ff0000;\"><span style=\"text-decoration: underline;\">CLASSIC</span>:    12:45 at  P8</span>.</strong>   Ski along the Doldrums, towards P9, for 15 minutes, then turn around and ski back for 15 minutes.  Regroup at 1:15, head across the road from P8, and we will \"film\" near the Goose Pit.    I may film in groups so that you get in some extra skiing instead of waiting around in the cold the whole time.   Filming won\'t take very long, though.\r\n\r\nAround 2:00 we head to my house (20 Lilsam) and watch movies.','MON FEB 17','','publish','open','closed','','fri-feb-17training','','','2014-02-17 10:04:12','2014-02-17 15:04:12','',0,'https://sofits.ca/?p=1178',0,'post','',0),(1179,7,'2014-02-11 11:08:25','2014-02-11 16:08:25','<strong><span style=\"color: #ff0000;\">12:45  P8</span>.</strong>   With some of us taking part in the Gatineau Loppet on Saturday, this will be a two-part session:\r\n\r\n<strong>Part 1:</strong> Easy, short ski and videotaping, lasting about an hour.\r\n\r\n<strong>Part 2:</strong> Hot drinks and video analysis at my house.\r\n\r\nI know that some of you are already satisfied with your technique, and others may be nervous about being critiqued in front of others, but I think you will find it is actually a fun experience.  For those who are trying to improve, or to even to simply maintain their technique, there is nothing that works as well as seeing yourself.    I am also hoping someone will videotape me (Penny?).   Friday should be a good day, as it is supposed to be fairly mild.','Fri Feb 14 Training','','inherit','open','closed','','1178-revision-v1','','','2014-02-11 11:08:25','2014-02-11 16:08:25','',1178,'https://sofits.ca/2014/02/11/1178-revision-v1/',0,'revision','',0),(1180,7,'2014-02-14 11:09:39','2014-02-14 16:09:39','<span style=\"color: #ff0000;\"><strong>Feb 14 rescheduled  for Monday, Feb. 17. Too much snow on Feb 14. </strong><span style=\"color: #000000;\">Please let me know ASAP (i.e. not Sunday or Monday) if you are coming.  If fewer than 6, I will give this up as a bad idea. </span><strong>\r\n</strong></span>\r\n\r\n[yop_poll id=\"41\"]','ATTENDING, FEB 17','','publish','open','closed','','attendance-fri-feb-14','','','2014-02-14 11:12:56','2014-02-14 16:12:56','',0,'https://sofits.ca/?p=1180',0,'post','',0),(1181,7,'2014-02-11 11:09:39','2014-02-11 16:09:39','[yop_poll id=\"40\"]','Attendance, Fri Feb 14','','inherit','open','closed','','1180-revision-v1','','','2014-02-11 11:09:39','2014-02-11 16:09:39','',1180,'https://sofits.ca/2014/02/11/1180-revision-v1/',0,'revision','',0),(1184,7,'2014-02-11 11:18:33','2014-02-11 16:18:33','[yop_poll id=\"40\"]','ATTENDANCE, FEB 14','','inherit','open','closed','','1180-revision-v1','','','2014-02-11 11:18:33','2014-02-11 16:18:33','',1180,'https://sofits.ca/2014/02/11/1180-revision-v1/',0,'revision','',0),(1185,7,'2014-02-11 11:19:11','2014-02-11 16:19:11','[yop_poll id=\"40\"]','ATTENDING, FEB 14','','inherit','open','closed','','1180-revision-v1','','','2014-02-11 11:19:11','2014-02-11 16:19:11','',1180,'https://sofits.ca/2014/02/11/1180-revision-v1/',0,'revision','',0),(1186,7,'2014-02-11 11:19:45','2014-02-11 16:19:45','<strong><span style=\"color: #ff0000;\">12:45  P8</span>.</strong>   With some of us taking part in the Gatineau Loppet on Saturday, this will be a two-part session:\r\n\r\n<strong>Part 1:</strong> Easy, short ski and videotaping, lasting about an hour.\r\n\r\n<strong>Part 2:</strong> Hot drinks and video analysis at my house.\r\n\r\nI know that some of you are already satisfied with your technique, and others may be nervous about being critiqued in front of others, but I think you will find it is actually a fun experience.  For those who are trying to improve, or to even to simply maintain their technique, there is nothing that works as well as seeing yourself.    I am also hoping someone will videotape me (Penny?).   Friday should be a good day, as it is supposed to be fairly mild.','FRI FEB 14 TRAINING','','inherit','open','closed','','1178-revision-v1','','','2014-02-11 11:19:45','2014-02-11 16:19:45','',1178,'https://sofits.ca/2014/02/11/1178-revision-v1/',0,'revision','',0),(1187,7,'2014-02-11 11:28:47','2014-02-11 16:28:47','<strong><span style=\"color: #ff0000;\">12:45  P8</span>.</strong>   With some of us taking part in the Gatineau Loppet on Saturday, this will be an easy, two-part session:\r\n\r\n<strong>Part 1:</strong> Easy, short ski and videotaping, lasting about an hour or less.\r\n\r\n<strong>Part 2:</strong> Hot drinks and video analysis at my house.\r\n\r\nI know that some of you are already satisfied with your technique, and others may be nervous about being critiqued in front of others, but I think you will find it is actually a fun experience.  For those who are trying to improve, or to even to simply maintain their technique, there is nothing that works as well as seeing yourself.    I am also hoping someone will videotape me (Penny?).   Friday should be a good day, as it is supposed to be fairly mild.','FRI FEB 14 TRAINING','','inherit','open','closed','','1178-revision-v1','','','2014-02-11 11:28:47','2014-02-11 16:28:47','',1178,'https://sofits.ca/2014/02/11/1178-revision-v1/',0,'revision','',0),(1188,7,'2014-02-11 11:29:33','2014-02-11 16:29:33','<strong><span style=\"color: #ff0000;\">12:45  P8</span>.</strong>   With some of us taking part in the Gatineau Loppet on Saturday, this will be an easy, two-part session:\r\n\r\n<strong>Part 1:</strong> Easy, short ski and videotaping, lasting about an hour or less.\r\n\r\n<strong>Part 2:</strong> Hot drinks and video analysis at my house.\r\n\r\nI know that some of you are already satisfied with your technique, and others may be nervous about being critiqued in front of others, but I think you will find it is actually a fun experience.  For those who are trying to improve, or to even to simply maintain their technique, there is nothing that works as well as seeing yourself.    I am also hoping someone will videotape me (Penny?).   Friday should be a good day for videotaping, as it is supposed to be fairly mild.','FRI FEB 14 TRAINING','','inherit','open','closed','','1178-revision-v1','','','2014-02-11 11:29:33','2014-02-11 16:29:33','',1178,'https://sofits.ca/2014/02/11/1178-revision-v1/',0,'revision','',0),(1189,7,'2014-02-17 10:02:18','2014-02-17 15:02:18','&nbsp;\n\n<strong><span style=\"color: #ff0000;\"><span style=\"text-decoration: underline;\">CLASSIC</span>:    12:45 at  P8</span>.</strong>   Ski along the Doldrums, for 15 minutes, then turn around and ski back for 15 minutes.  Regroup at 1:15, head across the road from P8, and we will \"film\" near the Goose Pit.    I may film in groups so that you get in some extra skiing instead of waiting around the whole time.   Filming won\'t take very long, though.\n\nAround 2:00 we head to my house (20 Lilsam) and watch movies.','MON FEB 17','','inherit','open','closed','','1178-autosave-v1','','','2014-02-17 10:02:18','2014-02-17 15:02:18','',1178,'https://sofits.ca/2014/02/11/1178-autosave-v1/',0,'revision','',0),(1190,7,'2014-02-11 13:22:35','2014-02-11 18:22:35','<strong><span style=\"color: #ff0000;\">12:45  P8</span>.</strong>   With some of us taking part in the Gatineau Loppet on Saturday, this will be an easy, two-part session:\r\n\r\n<strong>Part 1:</strong> Easy, short ski and videotaping, lasting about an hour or less (note that part 1 is useless unless you can stay for part 2!)\r\n\r\n<strong>Part 2:</strong> Hot drinks and video analysis at my house.  If there are snacks, we can have these here, too.\r\n\r\nI know that some of you are already satisfied with your technique, and others may be nervous about being critiqued in front of others, but I think you will find it is actually a fun experience.  For those who are trying to improve, or to even to simply maintain their technique, there is nothing that works as well as seeing yourself.    I am also hoping someone will videotape me (Penny?).   Friday should be a good day for videotaping, as it is supposed to be fairly mild.','FRI FEB 14 TRAINING','','inherit','open','closed','','1178-revision-v1','','','2014-02-11 13:22:35','2014-02-11 18:22:35','',1178,'https://sofits.ca/2014/02/11/1178-revision-v1/',0,'revision','',0),(1191,7,'2014-02-11 21:01:44','2014-02-12 02:01:44','<strong><span style=\"color: #ff0000;\"><span style=\"text-decoration: underline;\">CLASSIC</span>:    12:45 at  P8</span>.</strong>   With some of us taking part in the Gatineau Loppet on Saturday, this will be an easy, two-part session:\r\n\r\n<strong>Part 1:</strong> Easy, short classic ski with videotaping, lasting about an hour or less (note that part 1 is useless unless you can stay for part 2!)\r\n\r\n<strong>Part 2:</strong> Hot drinks and video analysis at my house.  If there are snacks, we can have these here, too.\r\n\r\nI know that some of you are already satisfied with your technique, and others may be nervous about being critiqued in front of others, but I think you will find it is actually a fun experience.  For those who are trying to improve, or to even to simply maintain their technique, there is nothing that works as well as seeing yourself.    I am also hoping someone will videotape me (Penny?).   Friday should be a good day for videotaping, as it is supposed to be fairly mild.','FRI FEB 14 TRAINING','','inherit','open','closed','','1178-revision-v1','','','2014-02-11 21:01:44','2014-02-12 02:01:44','',1178,'https://sofits.ca/2014/02/11/1178-revision-v1/',0,'revision','',0),(1192,7,'2014-02-14 11:03:25','2014-02-14 16:03:25','<span style=\"color: #ff0000;\"><strong>CANCELED</strong></span>\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"40\"]','ATTENDING, FEB 14','','inherit','open','closed','','1180-revision-v1','','','2014-02-14 11:03:25','2014-02-14 16:03:25','',1180,'https://sofits.ca/2014/02/14/1180-revision-v1/',0,'revision','',0),(1193,7,'2014-02-14 11:07:04','2014-02-14 16:07:04','<span style=\"color: #ff0000;\"><strong>Rescheduled for Monday, February 17.</strong></span>  Please let me know (before the weekend) if you are coming. I\'ll confirm this on the weekend.\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #ff0000;\"><span style=\"text-decoration: underline;\">CLASSIC</span>:    12:45 at  P8</span>.</strong>   With some of us taking part in the Gatineau Loppet on Saturday, this will be an easy, two-part session:\r\n\r\n<strong>Part 1:</strong> Easy, short classic ski with videotaping, lasting about an hour or less (note that part 1 is useless unless you can stay for part 2!)\r\n\r\n<strong>Part 2:</strong> Hot drinks and video analysis at my house.  If there are snacks, we can have these here, too.\r\n\r\nI know that some of you are already satisfied with your technique, and others may be nervous about being critiqued in front of others, but I think you will find it is actually a fun experience.  For those who are trying to improve, or to even to simply maintain their technique, there is nothing that works as well as seeing yourself.    I am also hoping someone will videotape me (Penny?).   Friday should be a good day for videotaping, as it is supposed to be fairly mild.','FRI FEB 14 TRAINING POSTPONED','','inherit','open','closed','','1178-revision-v1','','','2014-02-14 11:07:04','2014-02-14 16:07:04','',1178,'https://sofits.ca/2014/02/14/1178-revision-v1/',0,'revision','',0),(1194,7,'2014-02-14 11:12:48','2014-02-14 16:12:48','<span style=\"color: #ff0000;\"><strong>Feb 14 rescheduled  for Monday, Feb. 17. Too much snow on Feb 14. </strong><span style=\"color: #000000;\">Please let me know ASAP (i.e. not Sunday or Monday) if you are coming.  If fewer than 6, I will give this up as a bad idea. </span><strong>\n</strong></span>\n\n[yop_poll id=\"41\"]','ATTENDING, FEB 17','','inherit','open','closed','','1180-autosave-v1','','','2014-02-14 11:12:48','2014-02-14 16:12:48','',1180,'https://sofits.ca/2014/02/14/1180-autosave-v1/',0,'revision','',0),(1195,7,'2014-02-14 11:09:02','2014-02-14 16:09:02','<span style=\"color: #ff0000;\"><strong>Feb 14 rescheduled  for Monday, Feb. 17. Too much snow on Feb 14. <span style=\"color: #000000;\">Please let me know ASAP (i.e. not Sunday or Monday) if you are coming.  If fewer than 6, I will give this up as a bad idea. </span>\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ATTENDING, FEB 17','','inherit','open','closed','','1180-revision-v1','','','2014-02-14 11:09:02','2014-02-14 16:09:02','',1180,'https://sofits.ca/2014/02/14/1180-revision-v1/',0,'revision','',0),(1196,7,'2014-02-14 11:12:56','2014-02-14 16:12:56','<span style=\"color: #ff0000;\"><strong>Feb 14 rescheduled  for Monday, Feb. 17. Too much snow on Feb 14. </strong><span style=\"color: #000000;\">Please let me know ASAP (i.e. not Sunday or Monday) if you are coming.  If fewer than 6, I will give this up as a bad idea. </span><strong>\r\n</strong></span>\r\n\r\n[yop_poll id=\"41\"]','ATTENDING, FEB 17','','inherit','open','closed','','1180-revision-v1','','','2014-02-14 11:12:56','2014-02-14 16:12:56','',1180,'https://sofits.ca/2014/02/14/1180-revision-v1/',0,'revision','',0),(1198,7,'2014-02-17 10:02:33','2014-02-17 15:02:33','&nbsp;\r\n\r\n<strong><span style=\"color: #ff0000;\"><span style=\"text-decoration: underline;\">CLASSIC</span>:    12:45 at  P8</span>.</strong>   Ski along the Doldrums, for 15 minutes, then turn around and ski back for 15 minutes.  Regroup at 1:15, head across the road from P8, and we will \"film\" near the Goose Pit.    I may film in groups so that you get in some extra skiing instead of waiting around the whole time.   Filming won\'t take very long, though.\r\n\r\nAround 2:00 we head to my house (20 Lilsam) and watch movies.','MON FEB 17','','inherit','open','closed','','1178-revision-v1','','','2014-02-17 10:02:33','2014-02-17 15:02:33','',1178,'https://sofits.ca/2014/02/17/1178-revision-v1/',0,'revision','',0),(1199,7,'2014-02-17 10:03:26','2014-02-17 15:03:26','&nbsp;\r\n\r\n<strong><span style=\"color: #ff0000;\"><span style=\"text-decoration: underline;\">CLASSIC</span>:    12:45 at  P8</span>.</strong>   Ski along the Doldrums, towards P9, for 15 minutes, then turn around and ski back for 15 minutes.  Regroup at 1:15, head across the road from P8, and we will \"film\" near the Goose Pit.    I may film in groups so that you get in some extra skiing instead of waiting around in the cold the whole time.   Filming won\'t take very long, though.\r\n\r\nAround 2:00 we head to my house (20 Lilsam) and watch movies.','MON FEB 17','','inherit','open','closed','','1178-revision-v1','','','2014-02-17 10:03:26','2014-02-17 15:03:26','',1178,'https://sofits.ca/2014/02/17/1178-revision-v1/',0,'revision','',0),(1201,7,'2014-02-25 16:50:39','2014-02-25 21:50:39','<h2>Please comment if you know of other links of general interest.</h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<h3><span style=\"text-decoration: underline; color: #ff0000;\">Some links about the importance of recovery:</span></h3>\r\n<ul>\r\n	<li>Joe Friel\'s article \"<a href=\"https://thesportfactory.com/site/trainingnews/Fitness_Depends_on_Recovery_257.shtml\" target=\"_blank\">Fitness depends on Recovery</a>\"</li>\r\n	<li>a cycling article \"<a href=\"https://www.climbbybike.com/cycling-training-and-supercompensation.asp\" target=\"_blank\">Training, resting and supercompensation</a>\"</li>\r\n</ul>\r\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\r\n\r\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;','LINKS','','inherit','open','closed','','1054-revision-v1','','','2014-02-25 16:50:39','2014-02-25 21:50:39','',1054,'https://sofits.ca/2014/02/25/1054-revision-v1/',0,'revision','',0),(1208,7,'2014-02-28 15:00:23','2014-02-28 20:00:23','[yop_poll id=\"42\"]','Attendance Mar 7','','publish','open','closed','','attendance-mar-7','','','2014-02-28 15:00:23','2014-02-28 20:00:23','',0,'https://sofits.ca/?p=1208',0,'post','',0),(1209,7,'2014-02-28 15:00:23','2014-02-28 20:00:23','[yop_poll id=\"42\"]','Attendance Mar 7','','inherit','open','closed','','1208-revision-v1','','','2014-02-28 15:00:23','2014-02-28 20:00:23','',1208,'https://sofits.ca/2014/02/28/1208-revision-v1/',0,'revision','',0),(1210,7,'2014-02-28 15:00:55','2014-02-28 20:00:55','<span style=\"text-decoration: underline;\"><span style=\"color: #ff0000; text-decoration: underline;\"><strong>12:45</strong></span></span> Skate drills, review of off-set and one-skate.\r\n\r\nFollowed by an easy group ski\r\n\r\n<strong>MEET at the RELAIS, P2.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Friday March 7','','publish','open','closed','','friday-march-7','','','2014-03-06 22:28:52','2014-03-07 03:28:52','',0,'https://sofits.ca/?p=1210',0,'post','',0),(1211,7,'2014-02-28 15:00:55','2014-02-28 20:00:55','<strong></strong>12:00 Skate drills, review of off-set and one-skate.\r\n\r\n1:00  Group Ski (i.e. ski at your own pace).\r\n\r\n<strong>Location to be decided by Thursday evening.  Stay tuned.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Friday March 6','','inherit','open','closed','','1210-revision-v1','','','2014-02-28 15:00:55','2014-02-28 20:00:55','',1210,'https://sofits.ca/2014/02/28/1210-revision-v1/',0,'revision','',0),(1212,7,'2014-02-28 15:01:29','2014-02-28 20:01:29','<strong></strong>12:00 Skate drills, review of off-set and one-skate.\r\n\r\n1:00  Group Ski (i.e. ski at your own pace).\r\n\r\n<strong>Location to be decided by Thursday evening.  Stay tuned.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Friday March 7','','inherit','open','closed','','1210-revision-v1','','','2014-02-28 15:01:29','2014-02-28 20:01:29','',1210,'https://sofits.ca/2014/02/28/1210-revision-v1/',0,'revision','',0),(1215,7,'2014-02-28 15:08:10','2014-02-28 20:08:10','<strong></strong>12:00 Probably skate drills, review of off-set and one-skate.\r\n\r\n1:00  Group Ski (i.e. ski at your own pace).\r\n\r\n<strong>Location to be decided by Thursday evening.  Stay tuned.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Friday March 7','','inherit','open','closed','','1210-revision-v1','','','2014-02-28 15:08:10','2014-02-28 20:08:10','',1210,'https://sofits.ca/2014/02/28/1210-revision-v1/',0,'revision','',0),(1216,7,'2014-03-06 22:28:47','2014-03-07 03:28:47','<span style=\"text-decoration: underline;\"><span style=\"color: #ff0000; text-decoration: underline;\"><strong>12:45</strong></span></span> Skate drills, review of off-set and one-skate.\n\nFollowed by an easy group ski\n\n<strong>MEET at the RELAIS, P2.\n</strong>\n\n&nbsp;\n\n&nbsp;','Friday March 7','','inherit','open','closed','','1210-autosave-v1','','','2014-03-06 22:28:47','2014-03-07 03:28:47','',1210,'https://sofits.ca/2014/03/06/1210-autosave-v1/',0,'revision','',0),(1217,7,'2014-03-06 22:28:52','2014-03-07 03:28:52','<span style=\"text-decoration: underline;\"><span style=\"color: #ff0000; text-decoration: underline;\"><strong>12:45</strong></span></span> Skate drills, review of off-set and one-skate.\r\n\r\nFollowed by an easy group ski\r\n\r\n<strong>MEET at the RELAIS, P2.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Friday March 7','','inherit','open','closed','','1210-revision-v1','','','2014-03-06 22:28:52','2014-03-07 03:28:52','',1210,'https://sofits.ca/2014/03/06/1210-revision-v1/',0,'revision','',0),(1220,7,'2014-03-12 07:53:57','2014-03-12 11:53:57','<span style=\"color: #ff0000;\"><strong>At P 10.  Meet at 12:45, ready to ski by 1:00.</strong></span>      Your choice, classic or skate.   Ski at your own pace.  A  social ski with no instruction!  We will ski to Huron or Western.  A number of you mentioned friends who are interested in  joining the group.  These next few weeks are a good opportunity for them to ski with us, and check us out.','Friday March 14','','publish','open','closed','','friday-march-14','','','2014-03-12 08:02:25','2014-03-12 12:02:25','',0,'https://sofits.ca/?p=1220',0,'post','',0),(1221,7,'2014-03-12 07:53:57','2014-03-12 11:53:57','<span style=\"color: #ff0000;\"><strong>At P 10.  Meet at 12:45, ready to ski by 1:00.</strong></span>      Your choice, classic or skate.    For the first time ever, a social ski with no instruction!  We will ski to Huron or Western.','Friday March 14','','inherit','open','closed','','1220-revision-v1','','','2014-03-12 07:53:57','2014-03-12 11:53:57','',1220,'https://sofits.ca/2014/03/12/1220-revision-v1/',0,'revision','',0),(1222,7,'2014-03-12 07:57:50','2014-03-12 11:57:50','[yop_poll id=\"43\"]','Who is Coming March 14?','','publish','open','closed','','who-is-coming-march-14','','','2014-03-12 07:57:50','2014-03-12 11:57:50','',0,'https://sofits.ca/?p=1222',0,'post','',0),(1223,7,'2014-03-12 07:57:50','2014-03-12 11:57:50','[yop_poll id=\"43\"]','Who is Coming March 14?','','inherit','open','closed','','1222-revision-v1','','','2014-03-12 07:57:50','2014-03-12 11:57:50','',1222,'https://sofits.ca/2014/03/12/1222-revision-v1/',0,'revision','',0),(1224,7,'2014-03-12 08:01:21','2014-03-12 12:01:21','<span style=\"color: #ff0000;\"><strong>At P 10.  Meet at 12:45, ready to ski by 1:00.</strong></span>      Your choice, classic or skate.   Ski at your own pace.  A  social ski with no instruction!  We will ski to Huron or Western.  A number of you mentioned friends who are interested in  joining the group.  These next few weeks are a good opportunity to come out and ski with us, and check us out.','Friday March 14','','inherit','open','closed','','1220-autosave-v1','','','2014-03-12 08:01:21','2014-03-12 12:01:21','',1220,'https://sofits.ca/2014/03/12/1220-autosave-v1/',0,'revision','',0),(1225,7,'2014-03-12 08:01:35','2014-03-12 12:01:35','<span style=\"color: #ff0000;\"><strong>At P 10.  Meet at 12:45, ready to ski by 1:00.</strong></span>      Your choice, classic or skate.   Ski at your own pace.  A  social ski with no instruction!  We will ski to Huron or Western.  A number of you mentioned friends who are interested in  joining the group.  These next few weeks are a good opportunity to come out and ski with us, and check us out.','Friday March 14','','inherit','open','closed','','1220-revision-v1','','','2014-03-12 08:01:35','2014-03-12 12:01:35','',1220,'https://sofits.ca/2014/03/12/1220-revision-v1/',0,'revision','',0),(1226,7,'2014-03-12 08:02:25','2014-03-12 12:02:25','<span style=\"color: #ff0000;\"><strong>At P 10.  Meet at 12:45, ready to ski by 1:00.</strong></span>      Your choice, classic or skate.   Ski at your own pace.  A  social ski with no instruction!  We will ski to Huron or Western.  A number of you mentioned friends who are interested in  joining the group.  These next few weeks are a good opportunity for them to ski with us, and check us out.','Friday March 14','','inherit','open','closed','','1220-revision-v1','','','2014-03-12 08:02:25','2014-03-12 12:02:25','',1220,'https://sofits.ca/2014/03/12/1220-revision-v1/',0,'revision','',0),(1229,7,'2014-04-12 15:23:01','2014-04-12 19:23:01','<a href=\"https://sofits.ca/wp-content/uploads/140404_Sofits-Skate.jpg\"><img class=\"alignnone size-full wp-image-1280\" src=\"https://sofits.ca/wp-content/uploads/140404_Sofits-Skate.jpg\" alt=\"140404_Sofits-Skate\" width=\"800\" height=\"483\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/Sofits.jpg\"><img class=\"alignnone size-medium wp-image-1281\" src=\"https://sofits.ca/wp-content/uploads/Sofits.jpg\" alt=\"Sofits\" width=\"640\" height=\"359\" /></a><img class=\"alignnone size-full wp-image-1230\" src=\"https://sofits.ca/wp-content/uploads/140311_Yvonne-and-Susan.jpg\" alt=\"140311_Yvonne-and-Susan\" width=\"640\" height=\"480\" /> <a href=\"https://sofits.ca/wp-content/uploads/140314_Sofits-at-Huron.jpg\"><img class=\"alignnone size-medium wp-image-1231\" src=\"https://sofits.ca/wp-content/uploads/140314_Sofits-at-Huron.jpg\" alt=\"140314_Sofits-at-Huron\" width=\"800\" height=\"600\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140316_Crust-Cruising.jpg\"><img class=\"alignnone size-medium wp-image-1232\" src=\"https://sofits.ca/wp-content/uploads/140316_Crust-Cruising.jpg\" alt=\"140316_Crust-Cruising\" width=\"800\" height=\"600\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140316_Ila-and-Susan.jpg\"><img class=\"alignnone size-medium wp-image-1233\" src=\"https://sofits.ca/wp-content/uploads/140316_Ila-and-Susan.jpg\" alt=\"140316_Ila-and-Susan\" width=\"800\" height=\"600\" /></a>','SNOWY SOFITS','','publish','open','closed','','recent-ski-photos','','','2014-08-01 15:51:42','2014-08-01 19:51:42','',0,'https://sofits.ca/?p=1229',0,'post','',0),(1230,7,'2014-03-18 15:22:28','2014-03-18 19:22:28','','140311_Yvonne-and-Susan','','inherit','open','closed','','140311_yvonne-and-susan','','','2014-03-18 15:22:28','2014-03-18 19:22:28','',1229,'https://sofits.ca/wp-content/uploads/140311_Yvonne-and-Susan.jpg',0,'attachment','image/jpeg',0),(1231,7,'2014-03-18 15:22:32','2014-03-18 19:22:32','','140314_Sofits-at-Huron','','inherit','open','closed','','140314_sofits-at-huron','','','2014-03-18 15:22:32','2014-03-18 19:22:32','',1229,'https://sofits.ca/wp-content/uploads/140314_Sofits-at-Huron.jpg',0,'attachment','image/jpeg',0),(1232,7,'2014-03-18 15:22:36','2014-03-18 19:22:36','','140316_Crust-Cruising','','inherit','open','closed','','140316_crust-cruising','','','2014-03-18 15:22:36','2014-03-18 19:22:36','',1229,'https://sofits.ca/wp-content/uploads/140316_Crust-Cruising.jpg',0,'attachment','image/jpeg',0),(1233,7,'2014-03-18 15:22:38','2014-03-18 19:22:38','','140316_Ila-and-Susan','','inherit','open','closed','','140316_ila-and-susan','','','2014-03-18 15:22:38','2014-03-18 19:22:38','',1229,'https://sofits.ca/wp-content/uploads/140316_Ila-and-Susan.jpg',0,'attachment','image/jpeg',0),(1234,7,'2014-03-18 15:23:01','2014-03-18 19:23:01','<a href=\"https://sofits.ca/wp-content/uploads/140311_Yvonne-and-Susan.jpg\"><img class=\"alignnone size-full wp-image-1230\" alt=\"140311_Yvonne-and-Susan\" src=\"https://sofits.ca/wp-content/uploads/140311_Yvonne-and-Susan.jpg\" width=\"640\" height=\"480\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140314_Sofits-at-Huron.jpg\"><img class=\"alignnone size-medium wp-image-1231\" alt=\"140314_Sofits-at-Huron\" src=\"https://sofits.ca/wp-content/uploads/140314_Sofits-at-Huron.jpg\" width=\"800\" height=\"600\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140316_Crust-Cruising.jpg\"><img class=\"alignnone size-medium wp-image-1232\" alt=\"140316_Crust-Cruising\" src=\"https://sofits.ca/wp-content/uploads/140316_Crust-Cruising.jpg\" width=\"800\" height=\"600\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140316_Ila-and-Susan.jpg\"><img class=\"alignnone size-medium wp-image-1233\" alt=\"140316_Ila-and-Susan\" src=\"https://sofits.ca/wp-content/uploads/140316_Ila-and-Susan.jpg\" width=\"800\" height=\"600\" /></a>','','','inherit','open','closed','','1229-revision-v1','','','2014-03-18 15:23:01','2014-03-18 19:23:01','',1229,'https://sofits.ca/2014/03/18/1229-revision-v1/',0,'revision','',0),(1235,7,'2014-03-18 15:24:33','2014-03-18 19:24:33','<a href=\"https://sofits.ca/wp-content/uploads/140311_Yvonne-and-Susan.jpg\"><img class=\"alignnone size-full wp-image-1230\" alt=\"140311_Yvonne-and-Susan\" src=\"https://sofits.ca/wp-content/uploads/140311_Yvonne-and-Susan.jpg\" width=\"640\" height=\"480\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140314_Sofits-at-Huron.jpg\"><img class=\"alignnone size-medium wp-image-1231\" alt=\"140314_Sofits-at-Huron\" src=\"https://sofits.ca/wp-content/uploads/140314_Sofits-at-Huron.jpg\" width=\"800\" height=\"600\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140316_Crust-Cruising.jpg\"><img class=\"alignnone size-medium wp-image-1232\" alt=\"140316_Crust-Cruising\" src=\"https://sofits.ca/wp-content/uploads/140316_Crust-Cruising.jpg\" width=\"800\" height=\"600\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140316_Ila-and-Susan.jpg\"><img class=\"alignnone size-medium wp-image-1233\" alt=\"140316_Ila-and-Susan\" src=\"https://sofits.ca/wp-content/uploads/140316_Ila-and-Susan.jpg\" width=\"800\" height=\"600\" /></a>','Recent Sofit Photos','','inherit','open','closed','','1229-revision-v1','','','2014-03-18 15:24:33','2014-03-18 19:24:33','',1229,'https://sofits.ca/2014/03/18/1229-revision-v1/',0,'revision','',0),(1236,7,'2014-03-18 15:27:17','2014-03-18 19:27:17','<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">12:45, at P9</span></strong></span>.   Be ready to ski by 1:00.   Focus on skating ( but if you don\'t have skate skis, bring your classics!).   A buffet of drills to choose from and an option to be videotaped if that interests you.    When you arrive, head out to the parkway and begin to ski.    We will meet where the bench is, at the right hand curve of the parkway, about 900 meters along.','Friday March 21','','publish','open','closed','','friday-march-21','','','2014-03-20 22:10:02','2014-03-21 02:10:02','',0,'https://sofits.ca/?p=1236',0,'post','',0),(1237,7,'2014-03-18 15:27:17','2014-03-18 19:27:17','12:45, somewhere in the park.   Anyone coming?  More details Thursday evening.','Friday March 21','','inherit','open','closed','','1236-revision-v1','','','2014-03-18 15:27:17','2014-03-18 19:27:17','',1236,'https://sofits.ca/2014/03/18/1236-revision-v1/',0,'revision','',0),(1238,7,'2014-03-18 15:31:31','2014-03-18 19:31:31','[yop_poll id=\"44\"]','March 21 Attending','','publish','open','closed','','march-21-attending','','','2014-03-18 15:32:51','2014-03-18 19:32:51','',0,'https://sofits.ca/?p=1238',0,'post','',0),(1239,7,'2014-03-18 15:31:31','2014-03-18 19:31:31','','March 21 Attending','','inherit','open','closed','','1238-revision-v1','','','2014-03-18 15:31:31','2014-03-18 19:31:31','',1238,'https://sofits.ca/2014/03/18/1238-revision-v1/',0,'revision','',0),(1240,7,'2014-03-18 15:32:51','2014-03-18 19:32:51','[yop_poll id=\"44\"]','March 21 Attending','','inherit','open','closed','','1238-revision-v1','','','2014-03-18 15:32:51','2014-03-18 19:32:51','',1238,'https://sofits.ca/2014/03/18/1238-revision-v1/',0,'revision','',0),(1242,7,'2014-03-20 22:08:34','2014-03-21 02:08:34','<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">12:45, at P9</span></strong></span>.   Focus on skating ( but if you don\'t have skate skis, bring your classics!).   A buffet of drills to choose from and an option to be videotaped if that interests you.    When you arrive, head out to the parkway and begin to ski.    We will meet where the bench is, at the right hand curve of the parkway, about 900 meters along.','Friday March 21','','inherit','open','closed','','1236-autosave-v1','','','2014-03-20 22:08:34','2014-03-21 02:08:34','',1236,'https://sofits.ca/2014/03/20/1236-autosave-v1/',0,'revision','',0),(1243,7,'2014-03-20 22:08:57','2014-03-21 02:08:57','<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">12:45, at P9</span></strong></span>.   Focus on skating ( but if you don\'t have skate skis, bring your classics!).   A buffet of drills to choose from and an option to be videotaped if that interests you.    When you arrive, head out to the parkway and begin to ski.    We will meet where the bench is, at the right hand curve of the parkway, about 900 meters along.','Friday March 21','','inherit','open','closed','','1236-revision-v1','','','2014-03-20 22:08:57','2014-03-21 02:08:57','',1236,'https://sofits.ca/2014/03/20/1236-revision-v1/',0,'revision','',0),(1245,7,'2014-03-20 22:10:02','2014-03-21 02:10:02','<span style=\"text-decoration: underline;\"><strong><span style=\"color: #ff0000; text-decoration: underline;\">12:45, at P9</span></strong></span>.   Be ready to ski by 1:00.   Focus on skating ( but if you don\'t have skate skis, bring your classics!).   A buffet of drills to choose from and an option to be videotaped if that interests you.    When you arrive, head out to the parkway and begin to ski.    We will meet where the bench is, at the right hand curve of the parkway, about 900 meters along.','Friday March 21','','inherit','open','closed','','1236-revision-v1','','','2014-03-20 22:10:02','2014-03-21 02:10:02','',1236,'https://sofits.ca/2014/03/20/1236-revision-v1/',0,'revision','',0),(1248,7,'2014-08-01 14:43:34','2014-08-01 18:43:34','<a href=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party2.jpg\"><img class=\"alignnone size-full wp-image-1250\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party2.jpg\" alt=\"120712_Tea-Party2\" width=\"750\" height=\"485\" /></a><a href=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\"><img class=\"alignnone size-full wp-image-1255\" src=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\" alt=\"121109_Sofits-Skipping2\" width=\"750\" height=\"515\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120907_Sofits.jpg\"><img class=\"alignnone size-full wp-image-1254\" src=\"https://sofits.ca/wp-content/uploads/120907_Sofits.jpg\" alt=\"120907_Sofits\" width=\"750\" height=\"477\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\"><img class=\"alignnone size-full wp-image-1252\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\" alt=\"120712_Tea-Party\" width=\"750\" height=\"413\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120505_Sofits-Wakefield.jpg\"><img class=\"alignnone size-full wp-image-1251\" src=\"https://sofits.ca/wp-content/uploads/120505_Sofits-Wakefield.jpg\" alt=\"120505_Sofits-Wakefield\" width=\"700\" height=\"562\" /></a>','SNOWLESS SOFITS','','publish','open','closed','','snowless-sofits','','','2014-08-01 15:52:30','2014-08-01 19:52:30','',0,'https://sofits.ca/?p=1248',0,'post','',0),(1249,7,'2014-03-22 14:44:27','2014-03-22 18:44:27','','130216_Gatineau-Loppet','','inherit','open','closed','','130216_gatineau-loppet','','','2014-03-22 14:44:27','2014-03-22 18:44:27','',1248,'https://sofits.ca/wp-content/uploads/130216_Gatineau-Loppet.jpg',0,'attachment','image/jpeg',0),(1250,7,'2014-03-22 14:45:59','2014-03-22 18:45:59','','120712_Tea-Party2','','inherit','open','closed','','120712_tea-party2','','','2014-03-22 14:45:59','2014-03-22 18:45:59','',1248,'https://sofits.ca/wp-content/uploads/120712_Tea-Party2.jpg',0,'attachment','image/jpeg',0),(1251,7,'2014-03-22 14:48:34','2014-03-22 18:48:34','','120505_Sofits-Wakefield','','inherit','open','closed','','120505_sofits-wakefield','','','2014-03-22 14:48:34','2014-03-22 18:48:34','',1248,'https://sofits.ca/wp-content/uploads/120505_Sofits-Wakefield.jpg',0,'attachment','image/jpeg',0),(1252,7,'2014-03-22 14:48:42','2014-03-22 18:48:42','','120712_Tea-Party','','inherit','open','closed','','120712_tea-party','','','2014-03-22 14:48:42','2014-03-22 18:48:42','',1248,'https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg',0,'attachment','image/jpeg',0),(1253,7,'2014-03-22 14:48:46','2014-03-22 18:48:46','','120831_Cycling-Sofits','','inherit','open','closed','','120831_cycling-sofits','','','2014-03-22 14:48:46','2014-03-22 18:48:46','',1248,'https://sofits.ca/wp-content/uploads/120831_Cycling-Sofits.jpg',0,'attachment','image/jpeg',0),(1254,7,'2014-03-22 14:48:51','2014-03-22 18:48:51','','120907_Sofits','','inherit','open','closed','','120907_sofits','','','2014-03-22 14:48:51','2014-03-22 18:48:51','',1248,'https://sofits.ca/wp-content/uploads/120907_Sofits.jpg',0,'attachment','image/jpeg',0),(1255,7,'2014-03-22 14:48:55','2014-03-22 18:48:55','','121109_Sofits-Skipping2','','inherit','open','closed','','121109_sofits-skipping2','','','2014-03-22 14:48:55','2014-03-22 18:48:55','',1248,'https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg',0,'attachment','image/jpeg',0),(1256,7,'2014-03-22 14:49:32','2014-03-22 18:49:32','<a href=\"https://sofits.ca/wp-content/uploads/130216_Gatineau-Loppet.jpg\"><img class=\"alignnone size-full wp-image-1249\" alt=\"130216_Gatineau-Loppet\" src=\"https://sofits.ca/wp-content/uploads/130216_Gatineau-Loppet.jpg\" width=\"600\" height=\"467\" /></a><a href=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party2.jpg\"><img class=\"alignnone size-full wp-image-1250\" alt=\"120712_Tea-Party2\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party2.jpg\" width=\"750\" height=\"485\" /></a><a href=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\"><img class=\"alignnone size-full wp-image-1255\" alt=\"121109_Sofits-Skipping2\" src=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\" width=\"750\" height=\"515\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120907_Sofits.jpg\"><img class=\"alignnone size-full wp-image-1254\" alt=\"120907_Sofits\" src=\"https://sofits.ca/wp-content/uploads/120907_Sofits.jpg\" width=\"750\" height=\"477\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120831_Cycling-Sofits.jpg\"><img class=\"alignnone size-full wp-image-1253\" alt=\"120831_Cycling-Sofits\" src=\"https://sofits.ca/wp-content/uploads/120831_Cycling-Sofits.jpg\" width=\"750\" height=\"411\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\"><img class=\"alignnone size-full wp-image-1252\" alt=\"120712_Tea-Party\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\" width=\"750\" height=\"413\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120505_Sofits-Wakefield.jpg\"><img class=\"alignnone size-full wp-image-1251\" alt=\"120505_Sofits-Wakefield\" src=\"https://sofits.ca/wp-content/uploads/120505_Sofits-Wakefield.jpg\" width=\"700\" height=\"562\" /></a>','','','inherit','open','closed','','1248-revision-v1','','','2014-03-22 14:49:32','2014-03-22 18:49:32','',1248,'https://sofits.ca/2014/03/22/1248-revision-v1/',0,'revision','',0),(1257,7,'2014-03-22 14:51:18','2014-03-22 18:51:18','<a href=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party2.jpg\"><img class=\"alignnone size-full wp-image-1250\" alt=\"120712_Tea-Party2\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party2.jpg\" width=\"750\" height=\"485\" /></a><a href=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\"><img class=\"alignnone size-full wp-image-1255\" alt=\"121109_Sofits-Skipping2\" src=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\" width=\"750\" height=\"515\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120907_Sofits.jpg\"><img class=\"alignnone size-full wp-image-1254\" alt=\"120907_Sofits\" src=\"https://sofits.ca/wp-content/uploads/120907_Sofits.jpg\" width=\"750\" height=\"477\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\"><img class=\"alignnone size-full wp-image-1252\" alt=\"120712_Tea-Party\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\" width=\"750\" height=\"413\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120505_Sofits-Wakefield.jpg\"><img class=\"alignnone size-full wp-image-1251\" alt=\"120505_Sofits-Wakefield\" src=\"https://sofits.ca/wp-content/uploads/120505_Sofits-Wakefield.jpg\" width=\"700\" height=\"562\" /></a>','Snowless Sofits','','inherit','open','closed','','1248-revision-v1','','','2014-03-22 14:51:18','2014-03-22 18:51:18','',1248,'https://sofits.ca/2014/03/22/1248-revision-v1/',0,'revision','',0),(1280,7,'2014-04-05 22:04:20','2014-04-06 02:04:20','','140404_Sofits-Skate','','inherit','open','closed','','140404_sofits-skate','','','2014-04-05 22:04:20','2014-04-06 02:04:20','',1229,'https://sofits.ca/wp-content/uploads/140404_Sofits-Skate.jpg',0,'attachment','image/jpeg',0),(1281,7,'2014-04-05 22:04:24','2014-04-06 02:04:24','','Sofits','','inherit','open','closed','','sofits','','','2014-04-05 22:04:24','2014-04-06 02:04:24','',1229,'https://sofits.ca/wp-content/uploads/Sofits.jpg',0,'attachment','image/jpeg',0),(1282,7,'2014-04-05 22:04:48','2014-04-06 02:04:48','<a href=\"https://sofits.ca/wp-content/uploads/140311_Yvonne-and-Susan.jpg\"><a href=\"https://sofits.ca/wp-content/uploads/140404_Sofits-Skate.jpg\"><img class=\"alignnone size-full wp-image-1280\" alt=\"140404_Sofits-Skate\" src=\"https://sofits.ca/wp-content/uploads/140404_Sofits-Skate.jpg\" width=\"800\" height=\"483\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/Sofits.jpg\"><img class=\"alignnone size-medium wp-image-1281\" alt=\"Sofits\" src=\"https://sofits.ca/wp-content/uploads/Sofits.jpg\" width=\"640\" height=\"359\" /></a><img class=\"alignnone size-full wp-image-1230\" alt=\"140311_Yvonne-and-Susan\" src=\"https://sofits.ca/wp-content/uploads/140311_Yvonne-and-Susan.jpg\" width=\"640\" height=\"480\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140314_Sofits-at-Huron.jpg\"><img class=\"alignnone size-medium wp-image-1231\" alt=\"140314_Sofits-at-Huron\" src=\"https://sofits.ca/wp-content/uploads/140314_Sofits-at-Huron.jpg\" width=\"800\" height=\"600\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140316_Crust-Cruising.jpg\"><img class=\"alignnone size-medium wp-image-1232\" alt=\"140316_Crust-Cruising\" src=\"https://sofits.ca/wp-content/uploads/140316_Crust-Cruising.jpg\" width=\"800\" height=\"600\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140316_Ila-and-Susan.jpg\"><img class=\"alignnone size-medium wp-image-1233\" alt=\"140316_Ila-and-Susan\" src=\"https://sofits.ca/wp-content/uploads/140316_Ila-and-Susan.jpg\" width=\"800\" height=\"600\" /></a>','Recent Sofit Photos','','inherit','open','closed','','1229-revision-v1','','','2014-04-05 22:04:48','2014-04-06 02:04:48','',1229,'https://sofits.ca/2014/04/05/1229-revision-v1/',0,'revision','',0),(1285,7,'2014-04-05 22:17:35','2014-04-06 02:17:35','<a href=\"https://sofits.ca/wp-content/uploads/140404_Sofits-Skate.jpg\"><img class=\"alignnone size-full wp-image-1280\" alt=\"140404_Sofits-Skate\" src=\"https://sofits.ca/wp-content/uploads/140404_Sofits-Skate.jpg\" width=\"800\" height=\"483\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/Sofits.jpg\"><img class=\"alignnone size-medium wp-image-1281\" alt=\"Sofits\" src=\"https://sofits.ca/wp-content/uploads/Sofits.jpg\" width=\"640\" height=\"359\" /></a><img class=\"alignnone size-full wp-image-1230\" alt=\"140311_Yvonne-and-Susan\" src=\"https://sofits.ca/wp-content/uploads/140311_Yvonne-and-Susan.jpg\" width=\"640\" height=\"480\" /> <a href=\"https://sofits.ca/wp-content/uploads/140314_Sofits-at-Huron.jpg\"><img class=\"alignnone size-medium wp-image-1231\" alt=\"140314_Sofits-at-Huron\" src=\"https://sofits.ca/wp-content/uploads/140314_Sofits-at-Huron.jpg\" width=\"800\" height=\"600\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140316_Crust-Cruising.jpg\"><img class=\"alignnone size-medium wp-image-1232\" alt=\"140316_Crust-Cruising\" src=\"https://sofits.ca/wp-content/uploads/140316_Crust-Cruising.jpg\" width=\"800\" height=\"600\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140316_Ila-and-Susan.jpg\"><img class=\"alignnone size-medium wp-image-1233\" alt=\"140316_Ila-and-Susan\" src=\"https://sofits.ca/wp-content/uploads/140316_Ila-and-Susan.jpg\" width=\"800\" height=\"600\" /></a>','Recent Sofit Photos','','inherit','open','closed','','1229-revision-v1','','','2014-04-05 22:17:35','2014-04-06 02:17:35','',1229,'https://sofits.ca/2014/04/05/1229-revision-v1/',0,'revision','',0),(1292,7,'2014-04-05 22:31:50','2014-04-06 02:31:50','<h2>Please comment if you know of other links of general interest.</h2>\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\n\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\n\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30 and wildly inaccurate.\n\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\n\nXCOttawa Ski Trail Reports\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\n\n<a href=\"https://weatherspark.com/#!graphs;a=Canada/QC/Chelsea\">Weather Spark</a>\n\n<a href=\"https://www.theweathernetwork.com/weather/canada/quebec/chelsea\">The Weather Network - Chelsea</a>\n\n<a href=\"https://weather.gc.ca/radar/index_e.html?id=XFT\">Franktown Radar </a>\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\n</span></span></h2>\n<h3><span style=\"text-decoration: underline; color: #ff0000;\">Some links about the importance of recovery:</span></h3>\n<ul>\n	<li>Joe Friel\'s article \"<a href=\"https://thesportfactory.com/site/trainingnews/Fitness_Depends_on_Recovery_257.shtml\" target=\"_blank\">Fitness depends on Recovery</a>\"</li>\n	<li>a cycling article \"<a href=\"https://www.climbbybike.com/cycling-training-and-supercompensation.asp\" target=\"_blank\">Training, resting and supercompensation</a>\"</li>\n</ul>\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\n\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\n\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\n\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\n\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\n\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\n\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\n\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\n\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\n\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\n\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\">A nice, short article for those creating their own training plans</a>\n\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\">Swimming compared to other aerobic activities</a>\n\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\">Combat Negative Self-Talk</a>\n\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\">Common Training Mistakes - for all of us!</a>\n\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\n\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\n\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\n\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\n\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\n\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\n\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\n\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\n\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\n\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\n\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\n\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\n\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\n\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\n\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\n\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\n\n&nbsp;','LINKS','','inherit','open','closed','','1054-autosave-v1','','','2014-04-05 22:31:50','2014-04-06 02:31:50','',1054,'https://sofits.ca/2014/04/05/1054-autosave-v1/',0,'revision','',0),(1293,7,'2014-04-05 22:32:30','2014-04-06 02:32:30','<h2>Please comment if you know of other links of general interest.</h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30 and wildly inaccurate.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n\r\n<a href=\"https://skitrails.xcottawa.ca/skitrails_gatineau_park.php\">XCOttawa Gatineau Park Ski Trail Reports </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n\r\n<a href=\"https://weatherspark.com/#!graphs;a=Canada/QC/Chelsea\">Weather Spark</a>\r\n\r\n<a href=\"https://www.theweathernetwork.com/weather/canada/quebec/chelsea\">The Weather Network - Chelsea</a>\r\n\r\n<a href=\"https://weather.gc.ca/radar/index_e.html?id=XFT\">Franktown Radar </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<h3><span style=\"text-decoration: underline; color: #ff0000;\">Some links about the importance of recovery:</span></h3>\r\n<ul>\r\n	<li>Joe Friel\'s article \"<a href=\"https://thesportfactory.com/site/trainingnews/Fitness_Depends_on_Recovery_257.shtml\" target=\"_blank\">Fitness depends on Recovery</a>\"</li>\r\n	<li>a cycling article \"<a href=\"https://www.climbbybike.com/cycling-training-and-supercompensation.asp\" target=\"_blank\">Training, resting and supercompensation</a>\"</li>\r\n</ul>\r\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\r\n\r\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;','LINKS','','inherit','open','closed','','1054-revision-v1','','','2014-04-05 22:32:30','2014-04-06 02:32:30','',1054,'https://sofits.ca/2014/04/05/1054-revision-v1/',0,'revision','',0),(1296,7,'2014-04-10 15:53:09','2014-04-10 19:53:09','<span style=\"color: #ff0000;\"><strong>12:45 at P10.</strong> </span>  Ready to ski by 1:00.    This will be the final Friday ski session   It should  be a fun ski, slow and sunny, no instruction, no tuques, no long johns, and no bugs.  If you feel like stopping to chat, you will not get frost bite! We will almost certainly go for coffee afterwards.\r\n\r\n&nbsp;','Friday, April 11','','publish','open','closed','','april-11','','','2014-04-10 22:11:50','2014-04-11 02:11:50','',0,'https://sofits.ca/?p=1296',0,'post','',0),(1297,7,'2014-04-10 15:53:09','2014-04-10 19:53:09','WE GOT SNOW!    We meet for the final Friday ski session tomorrow, although there will still be lots of skiing available after this date.   Arrive at 12:45 and be ready to ski by 1:00.   This will be a fun ski, slow and sunny, no instruction, no tuques, no long johns, and no bugs.  If you feel like stopping to chat, you will not get frost bite! We will almost certainly go for coffee afterwards.\r\n\r\nI\'m torn between P10 and P6.     The destinations are a bit more interesting at P10, and the parking lot seems to be a lot emptier these days (there were lots of spots this afternoon at 1:00).  It is a bit more work but I think all of you could now skate it with frequent rest breaks.  Let me know if you have a preference and I will decide and post the final location before I go to bed this evening.','Friday, April 11','','inherit','open','closed','','1296-revision-v1','','','2014-04-10 15:53:09','2014-04-10 19:53:09','',1296,'https://sofits.ca/2014/04/10/1296-revision-v1/',0,'revision','',0),(1300,7,'2014-04-10 22:10:58','2014-04-11 02:10:58','<span style=\"color: #ff0000;\"><strong>12:45 at P10.</strong> </span>  Ready to ski by 1:00.    This will be the final Friday ski session., although there will still be lots of skiing available after this date.      This should  be a fun ski, slow and sunny, no instruction, no tuques, no long johns, and no bugs.  If you feel like stopping to chat, you will not get frost bite! We will almost certainly go for coffee afterwards.\n\n&nbsp;','Friday, April 11','','inherit','open','closed','','1296-autosave-v1','','','2014-04-10 22:10:58','2014-04-11 02:10:58','',1296,'https://sofits.ca/2014/04/10/1296-autosave-v1/',0,'revision','',0),(1301,7,'2014-04-10 22:11:50','2014-04-11 02:11:50','<span style=\"color: #ff0000;\"><strong>12:45 at P10.</strong> </span>  Ready to ski by 1:00.    This will be the final Friday ski session   It should  be a fun ski, slow and sunny, no instruction, no tuques, no long johns, and no bugs.  If you feel like stopping to chat, you will not get frost bite! We will almost certainly go for coffee afterwards.\r\n\r\n&nbsp;','Friday, April 11','','inherit','open','closed','','1296-revision-v1','','','2014-04-10 22:11:50','2014-04-11 02:11:50','',1296,'https://sofits.ca/2014/04/10/1296-revision-v1/',0,'revision','',0),(1309,7,'2019-09-19 08:03:36','2019-09-19 12:03:36','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Cross Country  Ski Events: (to be updated soon)\n</span></span></h1>\n<strong>Silver Spoon:\n</strong>\n\n<strong>Tay Valley Loppet</strong>\n\n<strong>Opeongo Loppet:</strong>\n\n<strong>Winterlude Triathlon:</strong>   <strong>\n</strong>\n\n<strong>Viking Loppet:\n</strong>\n\n<strong>Canadian Ski Marathon:</strong>\n\n<strong>Gatineau Loppet:</strong>  <strong>\n</strong>\n\n<strong>Jackrabbit Classic</strong>\n\n<strong> </strong>\n\n&nbsp;\n<h1>Upcoming events:</h1>\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\" rel=\"noopener noreferrer\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\n\n&nbsp;\n\n&nbsp;','RACES & EVENTS','','inherit','open','closed','','93-autosave-v1','','','2019-09-19 08:03:36','2019-09-19 12:03:36','',93,'https://sofits.ca/2014/04/12/93-autosave-v1/',0,'revision','',0),(1310,7,'2014-04-12 21:07:53','2014-04-13 01:07:53','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n</span>\r\n\r\n<a href=\"https://www.bringonthebay.com/\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"13\"]','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-04-12 21:07:53','2014-04-13 01:07:53','',93,'https://sofits.ca/2014/04/12/93-revision-v1/',0,'revision','',0),(1311,7,'2014-04-12 21:12:31','2014-04-13 01:12:31','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.bringonthebay.com/\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n&nbsp;','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-04-12 21:12:31','2014-04-13 01:12:31','',93,'https://sofits.ca/2014/04/12/93-revision-v1/',0,'revision','',0),(1322,7,'2014-04-26 17:43:01','2014-04-26 21:43:01','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.bringonthebay.com/\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-04-26 17:43:01','2014-04-26 21:43:01','',93,'https://sofits.ca/2014/04/26/93-revision-v1/',0,'revision','',0),(1324,7,'2014-04-27 19:49:50','2014-04-27 23:49:50','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n&nbsp;\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.bringonthebay.com/\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-04-27 19:49:50','2014-04-27 23:49:50','',93,'https://sofits.ca/2014/04/27/93-revision-v1/',0,'revision','',0),(1328,7,'2014-05-02 10:03:28','2014-05-02 14:03:28','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n&nbsp;\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.bringonthebay.com/\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://thesearsgreatcanadianrun.ca/?id=3\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n100km relay - teams of up to 20 runners\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n&nbsp;\r\n\r\n&nbsp;','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-05-02 10:03:28','2014-05-02 14:03:28','',93,'https://sofits.ca/2014/05/02/93-revision-v1/',0,'revision','',0),(1329,7,'2014-05-02 10:04:17','2014-05-02 14:04:17','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n&nbsp;\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.bringonthebay.com/\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://thesearsgreatcanadianrun.ca/?id=3\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n100km relay - teams of up to 20 runners\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-05-02 10:04:17','2014-05-02 14:04:17','',93,'https://sofits.ca/2014/05/02/93-revision-v1/',0,'revision','',0),(1331,7,'2014-06-20 08:10:23','2014-06-20 12:10:23','<h2>Please comment if you know of other links of general interest.</h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30 and wildly inaccurate.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n\r\n<a href=\"https://skitrails.xcottawa.ca/skitrails_gatineau_park.php\">XCOttawa Gatineau Park Ski Trail Reports </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n\r\n<a href=\"https://weatherspark.com/#!graphs;a=Canada/QC/Chelsea\">Weather Spark</a>\r\n\r\n<a href=\"https://www.theweathernetwork.com/weather/canada/quebec/chelsea\">The Weather Network - Chelsea</a>\r\n\r\n<a href=\"https://weather.gc.ca/radar/index_e.html?id=XFT\">Franktown Radar </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a href=\"https://www.sciencedaily.com/releases/2014/05/140530154109.htm\" target=\"_blank\">Quality, not quantity, counts most in exercise, diet</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2014/06/11/judging-badly-how-hard-we-exercise/?_php=true&amp;_type=blogs&amp;_php=true&amp;_type=blogs&amp;ref=health&amp;_r=2&amp;\" target=\"_blank\">Overestimating How Hard We Exercise</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/older-does-not-mean-slower-2/\" target=\"_blank\">Research Shows – Older Does NOT Mean Slower</a>\r\n\r\n<a href=\"https://running.competitor.com/2014/06/training/study-run-faster-to-ride-better_43375\" target=\"_blank\">Run Faster To Ride Better </a>\r\n\r\n<a href=\"https://www.220triathlon.com/training/long-distance/can-heavy-lifting-increase-your-endurance-performance/8724.html\" target=\"_blank\">Can heavy lifting increase your endurance performance?</a>\r\n\r\n<a href=\"https://home.trainingpeaks.com/blog/article/the-1-rule-of-endurance-training?utm_source=tpr&amp;utm_medium=email&amp;utm_content=utb11&amp;utm_campaign=utb\" target=\"_blank\">The #1 Rule of Endurance Training</a>\r\n<a href=\"https://www.sciencedaily.com/releases/2014/06/140605113510.htm\" target=\"_blank\">Molecular secret of short, intense workouts clarified</a>\r\n<p id=\"page-title\"><a href=\"https://www.runnersworld.com/injury-prevention-recovery/hip-weakness-and-knee-pain\" target=\"_blank\">Hip Weakness and Knee Pain</a></p>\r\n\r\n<h3><span style=\"text-decoration: underline; color: #ff0000;\">Some links about the importance of recovery:</span></h3>\r\n<ul>\r\n	<li>Joe Friel\'s article \"<a href=\"https://thesportfactory.com/site/trainingnews/Fitness_Depends_on_Recovery_257.shtml\" target=\"_blank\">Fitness depends on Recovery</a>\"</li>\r\n	<li>a cycling article \"<a href=\"https://www.climbbybike.com/cycling-training-and-supercompensation.asp\" target=\"_blank\">Training, resting and supercompensation</a>\"</li>\r\n</ul>\r\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\r\n\r\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;','LINKS','','inherit','open','closed','','1054-revision-v1','','','2014-06-20 08:10:23','2014-06-20 12:10:23','',1054,'https://sofits.ca/2014/06/20/1054-revision-v1/',0,'revision','',0),(1332,7,'2014-06-20 08:16:41','2014-06-20 12:16:41','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n<a href=\"https://runguides.com/ottawa/event/sports-4-emilies-run?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\">Emilies Run</a> - June 21, 2014; 5km and Half-Marathon Distance\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://thesearsgreatcanadianrun.ca/?id=3\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n100km relay - teams of up to 20 runners\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-06-20 08:16:41','2014-06-20 12:16:41','',93,'https://sofits.ca/2014/06/20/93-revision-v1/',0,'revision','',0),(1333,7,'2014-06-20 08:18:07','2014-06-20 12:18:07','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n<strong><span style=\"color: #008000;\"><a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\" target=\"_blank\"><span style=\"color: #008000;\">Ottawa Run Guide:</span></a></span></strong> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n<a href=\"https://runguides.com/ottawa/event/sports-4-emilies-run?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\">Emilies Run</a> - June 21, 2014; 5km and Half-Marathon Distance\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://thesearsgreatcanadianrun.ca/?id=3\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n100km relay - teams of up to 20 runners\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-06-20 08:18:07','2014-06-20 12:18:07','',93,'https://sofits.ca/2014/06/20/93-revision-v1/',0,'revision','',0),(1334,7,'2014-06-20 08:20:52','2014-06-20 12:20:52','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n<a href=\"https://runguides.com/ottawa/event/sports-4-emilies-run?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\">Emilies Run</a> - June 21, 2014; 5km and Half-Marathon Distance\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://thesearsgreatcanadianrun.ca/?id=3\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n100km relay - teams of up to 20 runners\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-06-20 08:20:52','2014-06-20 12:20:52','',93,'https://sofits.ca/2014/06/20/93-revision-v1/',0,'revision','',0),(1339,7,'2014-08-01 15:38:03','2014-08-01 19:38:03','<ul>\r\n	<li>Mid September is coming fast!</li>\r\n	<li>Do regular weight bearing aerobic training now: running, fast hiking, hill walking, etc.</li>\r\n	<li>Get those connections strengthened: do a small amount of skipping and jumping each week.</li>\r\n	<li>Do  core strengthening  2 to 3 times a week - planks, bridges, squats and lunges etc.</li>\r\n	<li>Lift weights.  Hire a trainer for instruction if you are unsure how to lift safely.</li>\r\n	<li>Stretch after you work out, whatever obstinate body parts you know you have.</li>\r\n</ul>\r\nIt\'s no fun to be side-lined by injuries and our age group is more susceptible than 30 year-olds.  Start easy, work consistently and gradually to increase what you can do.  If you hope to run and jump at our practices,  it\'s too late to start it in September.','FALL TRAINING!      ARE YOU READY?','','publish','open','closed','','fall-training-begins-be-ready','','','2014-10-08 11:44:32','2014-10-08 15:44:32','',0,'https://sofits.ca/?p=1339',0,'post','',0),(1340,7,'2014-08-01 15:38:03','2014-08-01 19:38:03','<ul>\r\n	<li>Mid September - it\'s coming fast!</li>\r\n	<li>Do regular weight bearing aerobic training now: running, fast hiking, hill walking, etc.</li>\r\n	<li>Get those connections strengthened by doing a small amount of skipping and jumping each week.</li>\r\n	<li>Do some core strengthening  2 to 3 times a week - planks, bridges, squats and lunges etc.</li>\r\n	<li>Lift weights.  Hire a trainer for instruction if you are unsure how to lift safely.</li>\r\n	<li>Stretch after you work out, whatever obstinate body parts you know you have.</li>\r\n</ul>\r\nIt\'s no fun to be side-lined by injuries and our age group is more susceptible than 30 year olds.  Start easy and work consistently and gradually to increase what you can do.  If you want to be able to run and jump at our practices,  it\'s too late to start it all in the fall.','FALL TRAINING BEGINS!      BE READY!','','inherit','open','closed','','1339-revision-v1','','','2014-08-01 15:38:03','2014-08-01 19:38:03','',1339,'https://sofits.ca/2014/08/01/1339-revision-v1/',0,'revision','',0),(1341,7,'2014-08-01 15:40:23','2014-08-01 19:40:23','<ul>\n	<li>Mid September is coming fast!</li>\n	<li>Do regular weight bearing aerobic training now: running, fast hiking, hill walking, etc.</li>\n	<li>Get those connections strengthened: do a small amount of skipping and jumping each week.</li>\n	<li>Do  core strengthening  2 to 3 times a week - planks, bridges, squats and lunges etc.</li>\n	<li>Lift weights.  Hire a trainer for instruction if you are unsure how to lift safely.</li>\n	<li>Stretch after you work out, whatever obstinate body parts you know you have.</li>\n</ul>\nIt\'s no fun to be side-lined by injuries and our age group is more susceptible than 30 year-olds.  Start easy, work consistently and gradually to increase what you can do.  If you plan to run and jump at our practices,  it\'s too late to start it all in the fall.','FALL TRAINING BEGINS!      BE READY!','','inherit','open','closed','','1339-autosave-v1','','','2014-08-01 15:40:23','2014-08-01 19:40:23','',1339,'https://sofits.ca/2014/08/01/1339-autosave-v1/',0,'revision','',0),(1342,7,'2014-08-01 15:40:48','2014-08-01 19:40:48','<ul>\r\n	<li>Mid September is coming fast!</li>\r\n	<li>Do regular weight bearing aerobic training now: running, fast hiking, hill walking, etc.</li>\r\n	<li>Get those connections strengthened: do a small amount of skipping and jumping each week.</li>\r\n	<li>Do  core strengthening  2 to 3 times a week - planks, bridges, squats and lunges etc.</li>\r\n	<li>Lift weights.  Hire a trainer for instruction if you are unsure how to lift safely.</li>\r\n	<li>Stretch after you work out, whatever obstinate body parts you know you have.</li>\r\n</ul>\r\nIt\'s no fun to be side-lined by injuries and our age group is more susceptible than 30 year-olds.  Start easy, work consistently and gradually to increase what you can do.  If you hope to run and jump at our practices,  it\'s too late to start it in September.','FALL TRAINING!      BE READY!','','inherit','open','closed','','1339-revision-v1','','','2014-08-01 15:40:48','2014-08-01 19:40:48','',1339,'https://sofits.ca/2014/08/01/1339-revision-v1/',0,'revision','',0),(1343,7,'2014-08-01 15:41:23','2014-08-01 19:41:23','<ul>\r\n	<li>Mid September is coming fast!</li>\r\n	<li>Do regular weight bearing aerobic training now: running, fast hiking, hill walking, etc.</li>\r\n	<li>Get those connections strengthened: do a small amount of skipping and jumping each week.</li>\r\n	<li>Do  core strengthening  2 to 3 times a week - planks, bridges, squats and lunges etc.</li>\r\n	<li>Lift weights.  Hire a trainer for instruction if you are unsure how to lift safely.</li>\r\n	<li>Stretch after you work out, whatever obstinate body parts you know you have.</li>\r\n</ul>\r\nIt\'s no fun to be side-lined by injuries and our age group is more susceptible than 30 year-olds.  Start easy, work consistently and gradually to increase what you can do.  If you hope to run and jump at our practices,  it\'s too late to start it in September.','FALL TRAINING!      ARE YOU READY?','','inherit','open','closed','','1339-revision-v1','','','2014-08-01 15:41:23','2014-08-01 19:41:23','',1339,'https://sofits.ca/2014/08/01/1339-revision-v1/',0,'revision','',0),(1346,7,'2014-08-01 15:47:48','2014-08-01 19:47:48','<a href=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party2.jpg\"><img class=\"alignnone size-full wp-image-1250\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party2.jpg\" alt=\"120712_Tea-Party2\" width=\"750\" height=\"485\" /></a><a href=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\"><img class=\"alignnone size-full wp-image-1255\" src=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\" alt=\"121109_Sofits-Skipping2\" width=\"750\" height=\"515\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120907_Sofits.jpg\"><img class=\"alignnone size-full wp-image-1254\" src=\"https://sofits.ca/wp-content/uploads/120907_Sofits.jpg\" alt=\"120907_Sofits\" width=\"750\" height=\"477\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\"><img class=\"alignnone size-full wp-image-1252\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\" alt=\"120712_Tea-Party\" width=\"750\" height=\"413\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120505_Sofits-Wakefield.jpg\"><img class=\"alignnone size-full wp-image-1251\" src=\"https://sofits.ca/wp-content/uploads/120505_Sofits-Wakefield.jpg\" alt=\"120505_Sofits-Wakefield\" width=\"700\" height=\"562\" /></a>','Snowless Sofits','','inherit','open','closed','','1248-revision-v1','','','2014-08-01 15:47:48','2014-08-01 19:47:48','',1248,'https://sofits.ca/2014/08/01/1248-revision-v1/',0,'revision','',0),(1348,7,'2014-08-01 15:51:42','2014-08-01 19:51:42','<a href=\"https://sofits.ca/wp-content/uploads/140404_Sofits-Skate.jpg\"><img class=\"alignnone size-full wp-image-1280\" src=\"https://sofits.ca/wp-content/uploads/140404_Sofits-Skate.jpg\" alt=\"140404_Sofits-Skate\" width=\"800\" height=\"483\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/Sofits.jpg\"><img class=\"alignnone size-medium wp-image-1281\" src=\"https://sofits.ca/wp-content/uploads/Sofits.jpg\" alt=\"Sofits\" width=\"640\" height=\"359\" /></a><img class=\"alignnone size-full wp-image-1230\" src=\"https://sofits.ca/wp-content/uploads/140311_Yvonne-and-Susan.jpg\" alt=\"140311_Yvonne-and-Susan\" width=\"640\" height=\"480\" /> <a href=\"https://sofits.ca/wp-content/uploads/140314_Sofits-at-Huron.jpg\"><img class=\"alignnone size-medium wp-image-1231\" src=\"https://sofits.ca/wp-content/uploads/140314_Sofits-at-Huron.jpg\" alt=\"140314_Sofits-at-Huron\" width=\"800\" height=\"600\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140316_Crust-Cruising.jpg\"><img class=\"alignnone size-medium wp-image-1232\" src=\"https://sofits.ca/wp-content/uploads/140316_Crust-Cruising.jpg\" alt=\"140316_Crust-Cruising\" width=\"800\" height=\"600\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/140316_Ila-and-Susan.jpg\"><img class=\"alignnone size-medium wp-image-1233\" src=\"https://sofits.ca/wp-content/uploads/140316_Ila-and-Susan.jpg\" alt=\"140316_Ila-and-Susan\" width=\"800\" height=\"600\" /></a>','SNOWY SOFITS','','inherit','open','closed','','1229-revision-v1','','','2014-08-01 15:51:42','2014-08-01 19:51:42','',1229,'https://sofits.ca/2014/08/01/1229-revision-v1/',0,'revision','',0),(1349,7,'2014-08-01 15:52:30','2014-08-01 19:52:30','<a href=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party2.jpg\"><img class=\"alignnone size-full wp-image-1250\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party2.jpg\" alt=\"120712_Tea-Party2\" width=\"750\" height=\"485\" /></a><a href=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\"><img class=\"alignnone size-full wp-image-1255\" src=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\" alt=\"121109_Sofits-Skipping2\" width=\"750\" height=\"515\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120907_Sofits.jpg\"><img class=\"alignnone size-full wp-image-1254\" src=\"https://sofits.ca/wp-content/uploads/120907_Sofits.jpg\" alt=\"120907_Sofits\" width=\"750\" height=\"477\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\"><img class=\"alignnone size-full wp-image-1252\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\" alt=\"120712_Tea-Party\" width=\"750\" height=\"413\" /></a> <a href=\"https://sofits.ca/wp-content/uploads/120505_Sofits-Wakefield.jpg\"><img class=\"alignnone size-full wp-image-1251\" src=\"https://sofits.ca/wp-content/uploads/120505_Sofits-Wakefield.jpg\" alt=\"120505_Sofits-Wakefield\" width=\"700\" height=\"562\" /></a>','SNOWLESS SOFITS','','inherit','open','closed','','1248-revision-v1','','','2014-08-01 15:52:30','2014-08-01 19:52:30','',1248,'https://sofits.ca/2014/08/01/1248-revision-v1/',0,'revision','',0),(1353,7,'2014-08-12 10:27:57','2014-08-12 14:27:57','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=33306ec9c6-ottawa_run_update_august_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-33306ec9c6-82161981#\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n<a href=\"https://thesearsgreatcanadianrun.ca/?id=3\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n100km relay - teams of up to 20 runners\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://runguides.com/ottawa/event/sports-4-emilies-run?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\">Emilies Run</a> - June 21, 2014; 5km and Half-Marathon Distance\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-08-12 10:27:57','2014-08-12 14:27:57','',93,'https://sofits.ca/2014/08/12/93-revision-v1/',0,'revision','',0),(1395,7,'2014-08-26 10:07:07','2014-08-26 14:07:07','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=33306ec9c6-ottawa_run_update_august_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-33306ec9c6-82161981#\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">MEC Century Ride:</a> September 14. Distances are 55km or 100 km on paved road - or 80km on gravel road. Meet up at Alice\'s in Carp at the end of the ride!\r\n\r\n<a href=\"https://thesearsgreatcanadianrun.ca/?id=3\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n100km relay - teams of up to 20 runners\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://runguides.com/ottawa/event/sports-4-emilies-run?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\">Emilies Run</a> - June 21, 2014; 5km and Half-Marathon Distance\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-08-26 10:07:07','2014-08-26 14:07:07','',93,'https://sofits.ca/2014/08/26/93-revision-v1/',0,'revision','',0),(1468,7,'2014-09-26 20:07:58','2014-09-27 00:07:58','<a href=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\"><img class=\"alignnone size-full wp-image-1482\" src=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\" alt=\"131009_River-Fog\" width=\"800\" height=\"600\" /></a>\r\n\r\n<strong>Tuesday Group Runs:</strong>  <strong>1:30 p.m</strong>. at various Gatineau Park locations:  Contact Fay\r\n\r\n<strong>Sunday</strong> <strong>Trail Runs: 9:00 a.m.</strong> on  Chelsea or Gatineau Park trails.  Contact Yvonne or Maggie\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;','ONGOING WEEKLY - join us!','','publish','open','closed','','join-us','','','2014-11-07 10:14:47','2014-11-07 15:14:47','',0,'https://sofits.ca/?p=1468',0,'post','',0),(1469,7,'2014-09-20 21:07:58','2014-09-21 01:07:58','&nbsp;\r\n\r\nTuesday group runs:     Talk to Fay at practice, to find out more.\r\n\r\nSunday trail runs on the Chelsea trails.  Talk to Yvonne or Jo-Ann\r\n\r\nSTAY TUNED FOR MORE DETAILS\r\n\r\n&nbsp;','STARTING SOON:','','inherit','open','closed','','1468-revision-v1','','','2014-09-20 21:07:58','2014-09-21 01:07:58','',1468,'https://sofits.ca/2014/09/20/1468-revision-v1/',0,'revision','',0),(1470,7,'2014-09-20 21:08:23','2014-09-21 01:08:23','&nbsp;\r\n\r\n<strong>Tuesday</strong> group runs:     Talk to Fay at practice, to find out more.\r\n\r\n<strong>Sunday</strong> trail runs on the Chelsea trails.  Talk to Yvonne or Jo-Ann\r\n\r\nSTAY TUNED FOR MORE DETAILS\r\n\r\n&nbsp;','STARTING SOON:','','inherit','open','closed','','1468-revision-v1','','','2014-09-20 21:08:23','2014-09-21 01:08:23','',1468,'https://sofits.ca/2014/09/20/1468-revision-v1/',0,'revision','',0),(1471,7,'2014-09-21 10:05:30','2014-09-21 14:05:30','&nbsp;\r\n\r\n[yop_poll id=\"12\"]','MISS A WORKOUT?','','inherit','open','closed','','346-revision-v1','','','2014-09-21 10:05:30','2014-09-21 14:05:30','',346,'https://sofits.ca/2014/09/21/346-revision-v1/',0,'revision','',0),(1478,7,'2014-09-23 22:00:39','2014-09-24 02:00:39','&nbsp;\r\n\r\n<strong>Tuesday Group Runs:</strong>     Talk to Fay at practice, to find out more.\r\n\r\n<strong>Sunday</strong> <strong>Trail Runs</strong> on the Chelsea trails.  Talk to Yvonne or Jo-Ann\r\n\r\nSTAY TUNED FOR MORE DETAILS\r\n\r\n&nbsp;','STARTING SOON:','','inherit','open','closed','','1468-revision-v1','','','2014-09-23 22:00:39','2014-09-24 02:00:39','',1468,'https://sofits.ca/2014/09/23/1468-revision-v1/',0,'revision','',0),(1482,7,'2014-09-23 23:18:36','2014-09-24 03:18:36','','131009_River-Fog','','inherit','open','closed','','131009_river-fog','','','2014-09-23 23:18:36','2014-09-24 03:18:36','',1468,'https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg',0,'attachment','image/jpeg',0),(1483,7,'2014-09-23 23:18:44','2014-09-24 03:18:44','<a href=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\"><img class=\"alignnone size-full wp-image-1482\" src=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\" alt=\"131009_River-Fog\" width=\"800\" height=\"600\" /></a>\r\n\r\n<strong>Tuesday Group Runs:</strong>     Talk to Fay at practice, to find out more.\r\n\r\n<strong>Sunday</strong> <strong>Trail Runs</strong> on the Chelsea trails.  Talk to Yvonne or Jo-Ann\r\n\r\nSTAY TUNED FOR MORE DETAILS\r\n\r\n&nbsp;','STARTING SOON:','','inherit','open','closed','','1468-revision-v1','','','2014-09-23 23:18:44','2014-09-24 03:18:44','',1468,'https://sofits.ca/2014/09/23/1468-revision-v1/',0,'revision','',0),(1491,7,'2014-09-24 16:49:26','2014-09-24 20:49:26','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=33306ec9c6-ottawa_run_update_august_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-33306ec9c6-82161981#\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n<a href=\"https://www.wqwheelers.com/\" target=\"_blank\">Tour du Ponts</a>: 100/145 km bike ride - October 4, 2014:  Quyon to Portage du Fort / beyond\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n\r\n100km relay - teams of up to 20 runners\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">MEC Century Ride:</a> September 14. Distances are 55km or 100 km on paved road - or 80km on gravel road. Meet up at Alice\'s in Carp at the end of the ride!\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://runguides.com/ottawa/event/sports-4-emilies-run?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\">Emilies Run</a> - June 21, 2014; 5km and Half-Marathon Distance\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-09-24 16:49:26','2014-09-24 20:49:26','',93,'https://sofits.ca/2014/09/24/93-revision-v1/',0,'revision','',0),(1492,7,'2014-09-24 16:53:18','2014-09-24 20:53:18','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=33306ec9c6-ottawa_run_update_august_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-33306ec9c6-82161981#\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n<a href=\"https://www.wqwheelers.com/\" target=\"_blank\">Tour du Ponts</a>: 100/145 km bike ride - October 4, 2014:  Quyon to Portage du Fort / beyond\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n\r\n100km relay - teams of up to 20 runners\r\n\r\n<a href=\"https://csm-mcs.com/en/\" target=\"_blank\">Canadian Ski Marathon</a>:  Feb. 7-8, 2015\r\n\r\n<a href=\"https://www.gatineauloppet.com/?lang=en\" target=\"_blank\">Gatineau Loppet</a>: Feb. 13, 14, 15, 2015\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">MEC Century Ride:</a> September 14. Distances are 55km or 100 km on paved road - or 80km on gravel road. Meet up at Alice\'s in Carp at the end of the ride!\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://runguides.com/ottawa/event/sports-4-emilies-run?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\">Emilies Run</a> - June 21, 2014; 5km and Half-Marathon Distance\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-09-24 16:53:18','2014-09-24 20:53:18','',93,'https://sofits.ca/2014/09/24/93-revision-v1/',0,'revision','',0),(1495,7,'2014-09-28 11:20:48','2014-09-28 15:20:48','head to foot','Stretches','Post workout stretches','inherit','open','closed','','stretches','','','2014-09-28 11:21:17','2014-09-28 15:21:17','',723,'https://sofits.ca/wp-content/uploads/Stretches.pdf',0,'attachment','application/pdf',0),(1500,7,'2016-10-17 10:38:27','2016-10-17 14:38:27','&nbsp;\n\nSOME GREAT WOMEN\'S CLASSIC FOOTAGE: <strong> <a href=\"httpss://youtu.be/2pEIyDLh_P0\">httpss://youtu.be/2pEIyDLh_P0</a></strong>\n\nBEST SITE EVER for HOW-TO SKI VIDEOS of all techniques  <strong><a href=\"https://crosscountryskitechnique.com\">crosscountryskitechnique.com</a></strong>\n\nGREAT VIDEO of Ski walking and Ski Striding <strong><a href=\"httpss://www.youtube.com/watch?v=LzlGkpAL5ec\">httpss://www.youtube.com/watch?v=LzlGkpAL5ec</a></strong>\n\nALSO THIS ONE by Local XCOTTAWA  <strong><a href=\"httpss://www.youtube.com/watch?v=P5wvl50bE8Q\">httpss://www.youtube.com/watch?v=P5wvl50bE8Q</a></strong>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','XCSKI TECHNIQUE','','inherit','open','closed','','723-autosave-v1','','','2016-10-17 10:38:27','2016-10-17 14:38:27','',723,'https://sofits.ca/2014/09/28/723-autosave-v1/',0,'revision','',0),(1501,7,'2014-09-28 11:27:19','2014-09-28 15:27:19','<a href=\"https://sofits.ca/wp-content/uploads/Stretches.pdf\">Stretches</a>: Sharon\'s post workout stretches.\r\n\r\n&nbsp;\r\n\r\nThe first video is  Sharon in slow motion, followed by one in normal time.   Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and an excellent body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Hips can be slightly more forward, ahead of your heels.  Great skiing, Sharon!\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/sharon-in-slo-mo_x264.mp4\"][/video]\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/Sharon4_x264.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" alt=\"Sharon-weight-shift\" width=\"800\" height=\"450\" /></a>\r\n\r\n(perhaps should have said \"provided the boot is off the snow\".   The tip of the ski will be touching of course.\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" alt=\"Sharon-legs-toghether-phase\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" alt=\"Kathy1\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" alt=\"Kathy2\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.','TECHNIQUE','','inherit','open','closed','','723-revision-v1','','','2014-09-28 11:27:19','2014-09-28 15:27:19','',723,'https://sofits.ca/2014/09/28/723-revision-v1/',0,'revision','',0),(1507,7,'2014-10-08 11:49:00','2014-10-08 15:49:00','<a href=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\"><img class=\"alignnone size-full wp-image-1482\" src=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\" alt=\"131009_River-Fog\" width=\"800\" height=\"600\" /></a>\n\n<strong>Tuesday Group Runs:</strong>  <strong>1:00 p.m</strong>. at various Gatineau Park locations with Fay\n\n<strong>Sunday</strong> <strong>Trail Runs: 9:00 a.m.</strong> on the Chelsea trails with Yvonne.\n\n<strong>CHECK FACEBOOK for  WEEKLY DETAILS</strong>\n\n&nbsp;','ONGOING EVENTS','','inherit','open','closed','','1468-autosave-v1','','','2014-10-08 11:49:00','2014-10-08 15:49:00','',1468,'https://sofits.ca/2014/09/28/1468-autosave-v1/',0,'revision','',0),(1508,7,'2014-09-28 20:15:25','2014-09-29 00:15:25','<a href=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\"><img class=\"alignnone size-full wp-image-1482\" src=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\" alt=\"131009_River-Fog\" width=\"800\" height=\"600\" /></a>\r\n\r\n<strong>Tuesday Group Runs:</strong>  <strong>1:00 p.m</strong>. at various Gatineau Park locations with Fay\r\n\r\n<strong>Sunday</strong> <strong>Trail Runs: 9:00 a.m.</strong> on the Chelsea trails with Yvonne.\r\n\r\n<strong>CHECK FACEBOOK for  WEEKLY DETAILS</strong>\r\n\r\n&nbsp;','JOIN US!','','inherit','open','closed','','1468-revision-v1','','','2014-09-28 20:15:25','2014-09-29 00:15:25','',1468,'https://sofits.ca/2014/09/28/1468-revision-v1/',0,'revision','',0),(1514,7,'2014-09-29 15:02:28','2014-09-29 19:02:28','','140929_Penguin-Picnic','','inherit','open','closed','','140929_penguin-picnic','','','2016-09-24 10:35:07','2016-09-24 14:35:07','',0,'https://sofits.ca/wp-content/uploads/140929_Penguin-Picnic.jpg',0,'attachment','image/jpeg',0),(1516,7,'2014-09-27 21:38:23','2014-09-28 01:38:23','57% of Sofits indicate that classic skiing is \"Their Thing\".\r\n\r\n37% mix skate and classic equally.\r\n\r\n29% of Sofits ski  5-10 k on an average ski outing,\r\n\r\n63% ski 10-20 k\r\n\r\n6% ski 20-30 k\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','SOME SOFIT STATS','','publish','open','closed','','sofit-stats','','','2014-09-29 21:50:52','2014-09-30 01:50:52','',0,'https://sofits.ca/?p=1516',0,'post','',0),(1517,7,'2014-09-29 21:43:59','2014-09-30 01:43:59','57% of Sofits indicated that classic skiing is \"My Thing\",  while 37% mix skate and classic equally.\r\n\r\n10 Sofits ski  5-10 k on an average ski outing,   22 ski 10-20 k , and 2 ski 20-30 k.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','SOFIT STATS','','inherit','open','closed','','1516-revision-v1','','','2014-09-29 21:43:59','2014-09-30 01:43:59','',1516,'https://sofits.ca/2014/09/29/1516-revision-v1/',0,'revision','',0),(1518,7,'2014-09-29 21:50:49','2014-09-30 01:50:49','57% of Sofits indicate that classic skiing is \"Their Thing\".\n\n37% mix skate and classic equally.\n\n29% of Sofits ski  5-10 k on an average ski outing,\n\n63% ski 10-20 k\n\n6% ski 20-30 k\n\n2% do not keep track\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','SOME SOFIT STATS','','inherit','open','closed','','1516-autosave-v1','','','2014-09-29 21:50:49','2014-09-30 01:50:49','',1516,'https://sofits.ca/2014/09/29/1516-autosave-v1/',0,'revision','',0),(1519,7,'2014-09-29 21:50:52','2014-09-30 01:50:52','57% of Sofits indicate that classic skiing is \"Their Thing\".\r\n\r\n37% mix skate and classic equally.\r\n\r\n29% of Sofits ski  5-10 k on an average ski outing,\r\n\r\n63% ski 10-20 k\r\n\r\n6% ski 20-30 k\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','SOME SOFIT STATS','','inherit','open','closed','','1516-revision-v1','','','2014-09-29 21:50:52','2014-09-30 01:50:52','',1516,'https://sofits.ca/2014/09/29/1516-revision-v1/',0,'revision','',0),(1520,7,'2014-09-30 16:23:16','2014-09-30 20:23:16','Many of our practices will be in a format much like this:\r\n\r\n<span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2, with using ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">You should be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds. </span></span></span></span>\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just running, it doesn’t count ! </span></span></span></span>\r\n\r\n<span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span>\r\n\r\n<span style=\"font-size: medium;\"><a href=\"https://www.xcottawa.ca/articles.php?id=2618%20\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.xcottawa.ca/articles.php?id=2618</span></span></span></span></a> </span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and a gigantic mix of individual strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. <a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: Unpredictable snow conditions preclude using pacing as you might while running)</span></span></span></p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before folding yourself into your car for a long drive home. </span></span></span></span>\r\n\r\n&nbsp;','ABOUT OUR WORKOUTS','','inherit','open','closed','','346-revision-v1','','','2014-09-30 16:23:16','2014-09-30 20:23:16','',346,'https://sofits.ca/2014/09/30/346-revision-v1/',0,'revision','',0),(1521,7,'2014-09-30 16:32:39','2014-09-30 20:32:39','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2, with using ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">You should be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds. </span></span></span></span>\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just running, it doesn’t count ! </span></span></span></span>\r\n\r\n<span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span>\r\n\r\n<span style=\"font-size: medium;\"><a href=\"https://www.xcottawa.ca/articles.php?id=2618%20\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.xcottawa.ca/articles.php?id=2618</span></span></span></span></a> </span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and a gigantic mix of individual strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. <a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: Unpredictable snow conditions preclude using pacing as you might while running)</span></span></span></p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before folding yourself into your car for a long drive home. </span></span></span></span>','ABOUT OUR WORKOUTS','','inherit','open','closed','','346-revision-v1','','','2014-09-30 16:32:39','2014-09-30 20:32:39','',346,'https://sofits.ca/2014/09/30/346-revision-v1/',0,'revision','',0),(1522,7,'2014-09-30 16:33:18','2014-09-30 20:33:18','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2, with using ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">You should be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds. </span></span></span></span>\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just running, it doesn’t count ! </span></span></span></span>\r\n\r\n<span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span>\r\n\r\n<span style=\"font-size: medium;\"><a href=\"https://www.xcottawa.ca/articles.php?id=2618%20\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.xcottawa.ca/articles.php?id=2618</span></span></span></span></a> </span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and a gigantic mix of individual strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. <a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: Unpredictable snow conditions preclude using pacing as you might while running)</span></span></span></p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before folding yourself into your car for a long drive home. </span></span></span></span>','ABOUT OUR WORKOUTS','','inherit','open','closed','','346-revision-v1','','','2014-09-30 16:33:18','2014-09-30 20:33:18','',346,'https://sofits.ca/2014/09/30/346-revision-v1/',0,'revision','',0),(1523,7,'2014-09-30 16:35:03','2014-09-30 20:35:03','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2, with using ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">You should be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds. </span></span></span></span>\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just running, it doesn’t count ! </span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.xcottawa.ca/articles.php?id=2618%20\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.xcottawa.ca/articles.php?id=2618</span></span></span></span></a> </span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and a gigantic mix of individual strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: Unpredictable snow conditions preclude using pacing as you might while running)</span></span></span></p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before folding yourself into your car for a long drive home. </span></span></span></span>','ABOUT OUR WORKOUTS','','inherit','open','closed','','346-revision-v1','','','2014-09-30 16:35:03','2014-09-30 20:35:03','',346,'https://sofits.ca/2014/09/30/346-revision-v1/',0,'revision','',0),(1524,7,'2014-09-30 16:36:24','2014-09-30 20:36:24','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2, with using ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">You should be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds. </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just running, it doesn’t count ! </span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.xcottawa.ca/articles.php?id=2618%20\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.xcottawa.ca/articles.php?id=2618</span></span></span></span></a> </span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and a gigantic mix of individual strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: Unpredictable snow conditions preclude using pacing as you might while running)</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before folding yourself into your car for a long drive home. </span></span></span></span>','ABOUT OUR WORKOUTS','','inherit','open','closed','','346-revision-v1','','','2014-09-30 16:36:24','2014-09-30 20:36:24','',346,'https://sofits.ca/2014/09/30/346-revision-v1/',0,'revision','',0),(1525,7,'2014-09-30 16:37:51','2014-09-30 20:37:51','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2, with using ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">You should be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds. </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just running, it doesn’t count ! Here is what it looks like:\r\n</span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and a gigantic mix of individual strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: Unpredictable snow conditions preclude using pacing as you might while running)</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before folding yourself into your car for a long drive home. </span></span></span></span>','ABOUT OUR WORKOUTS','','inherit','open','closed','','346-revision-v1','','','2014-09-30 16:37:51','2014-09-30 20:37:51','',346,'https://sofits.ca/2014/09/30/346-revision-v1/',0,'revision','',0),(1526,7,'2014-09-30 16:39:00','2014-09-30 20:39:00','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2, with using ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">You should be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds. </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just running, it doesn’t count ! Here is what it looks like:\r\n</span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and a gigantic mix of individual strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: Unpredictable snow conditions preclude using pacing as you might while running)</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before folding yourself into your car for a long drive home. </span></span></span></span>','OUR WORKOUTS','','inherit','open','closed','','346-revision-v1','','','2014-09-30 16:39:00','2014-09-30 20:39:00','',346,'https://sofits.ca/2014/09/30/346-revision-v1/',0,'revision','',0),(1527,7,'2014-09-30 16:40:26','2014-09-30 20:40:26','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2, with using ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">You should be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds. </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just running, it doesn’t count ! Here is what it looks like:\r\n</span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and a gigantic mix of individual strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: Unpredictable snow conditions preclude using pacing as you might while running)</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before folding yourself into your car for a long drive home. </span></span></span></span>','ABOUT SOFITS\' WORKOUTS','','inherit','open','closed','','346-revision-v1','','','2014-09-30 16:40:26','2014-09-30 20:40:26','',346,'https://sofits.ca/2014/09/30/346-revision-v1/',0,'revision','',0),(1528,7,'2014-09-30 16:47:12','2014-09-30 20:47:12','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2,  ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">Be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds. </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just running, it doesn’t count ! Here is what ski striding/ski-bounding looks like:\r\n</span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and an impressive variety of strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: Unpredictable snow conditions preclude using pacing as you might while running)</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before folding yourself into your car for a long drive home. </span></span></span></span>','ABOUT SOFITS\' WORKOUTS','','inherit','open','closed','','346-revision-v1','','','2014-09-30 16:47:12','2014-09-30 20:47:12','',346,'https://sofits.ca/2014/09/30/346-revision-v1/',0,'revision','',0),(1529,7,'2014-09-30 16:48:24','2014-09-30 20:48:24','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2,  ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">Be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds. </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just running, it doesn’t count ! Here is what ski striding/ski-bounding looks like:\r\n</span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and an impressive variety of strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: skiers usually do not use pacing as runners do, as  snow conditions are highly variable )</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before folding yourself into your car for a long drive home. </span></span></span></span>','ABOUT SOFITS\' WORKOUTS','','inherit','open','closed','','346-revision-v1','','','2014-09-30 16:48:24','2014-09-30 20:48:24','',346,'https://sofits.ca/2014/09/30/346-revision-v1/',0,'revision','',0),(1535,7,'2014-10-05 13:24:01','2014-10-05 17:24:01','','Fall colour','','inherit','open','closed','','image','','','2014-10-05 13:24:50','2014-10-05 17:24:50','',0,'https://sofits.ca/wp-content/uploads/image.jpg',0,'attachment','image/jpeg',0),(1536,7,'2014-10-05 17:21:26','2014-10-05 21:21:26','','141003_Sofits4','','inherit','open','closed','','141003_sofits4','','','2019-09-17 10:35:48','2019-09-17 14:35:48','',346,'https://sofits.ca/wp-content/uploads/141003_Sofits4.jpg',0,'attachment','image/jpeg',0),(1542,7,'2014-10-07 12:47:35','2014-10-07 16:47:35','<h2>Please comment if you know of other links of general interest.</h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30 and wildly inaccurate.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n\r\n<a href=\"https://skitrails.xcottawa.ca/skitrails_gatineau_park.php\">XCOttawa Gatineau Park Ski Trail Reports </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n\r\n<a href=\"https://weatherspark.com/#!graphs;a=Canada/QC/Chelsea\">Weather Spark</a>\r\n\r\n<a href=\"https://www.theweathernetwork.com/weather/canada/quebec/chelsea\">The Weather Network - Chelsea</a>\r\n\r\n<a href=\"https://weather.gc.ca/radar/index_e.html?id=XFT\">Franktown Radar </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a href=\"https://www.precisionnutrition.com/working-out-when-sick\" target=\"_blank\">Should you exercise when you\'re sick?</a>:  a detailed discussion of pros and cons, including discussion of how to adapt your training when sick.\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2014/05/140530154109.htm\" target=\"_blank\">Quality, not quantity, counts most in exercise, diet</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2014/06/11/judging-badly-how-hard-we-exercise/?_php=true&amp;_type=blogs&amp;_php=true&amp;_type=blogs&amp;ref=health&amp;_r=2&amp;\" target=\"_blank\">Overestimating How Hard We Exercise</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/older-does-not-mean-slower-2/\" target=\"_blank\">Research Shows – Older Does NOT Mean Slower</a>\r\n\r\n<a href=\"https://running.competitor.com/2014/06/training/study-run-faster-to-ride-better_43375\" target=\"_blank\">Run Faster To Ride Better </a>\r\n\r\n<a href=\"https://www.220triathlon.com/training/long-distance/can-heavy-lifting-increase-your-endurance-performance/8724.html\" target=\"_blank\">Can heavy lifting increase your endurance performance?</a>\r\n\r\n<a href=\"https://home.trainingpeaks.com/blog/article/the-1-rule-of-endurance-training?utm_source=tpr&amp;utm_medium=email&amp;utm_content=utb11&amp;utm_campaign=utb\" target=\"_blank\">The #1 Rule of Endurance Training</a>\r\n<a href=\"https://www.sciencedaily.com/releases/2014/06/140605113510.htm\" target=\"_blank\">Molecular secret of short, intense workouts clarified</a>\r\n<p id=\"page-title\"><a href=\"https://www.runnersworld.com/injury-prevention-recovery/hip-weakness-and-knee-pain\" target=\"_blank\">Hip Weakness and Knee Pain</a></p>\r\n\r\n<h3><span style=\"text-decoration: underline; color: #ff0000;\">Some links about the importance of recovery:</span></h3>\r\n<ul>\r\n	<li>Joe Friel\'s article \"<a href=\"https://thesportfactory.com/site/trainingnews/Fitness_Depends_on_Recovery_257.shtml\" target=\"_blank\">Fitness depends on Recovery</a>\"</li>\r\n	<li>a cycling article \"<a href=\"https://www.climbbybike.com/cycling-training-and-supercompensation.asp\" target=\"_blank\">Training, resting and supercompensation</a>\"</li>\r\n</ul>\r\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\r\n\r\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;','LINKS','','inherit','open','closed','','1054-revision-v1','','','2014-10-07 12:47:35','2014-10-07 16:47:35','',1054,'https://sofits.ca/2014/10/07/1054-revision-v1/',0,'revision','',0),(1551,7,'2014-10-08 11:49:12','2014-10-08 15:49:12','<a href=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\"><img class=\"alignnone size-full wp-image-1482\" src=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\" alt=\"131009_River-Fog\" width=\"800\" height=\"600\" /></a>\r\n\r\n<strong>Tuesday Group Runs:</strong>  <strong>1:00 p.m</strong>. at various Gatineau Park locations with Fay\r\n\r\n<strong>Sunday</strong> <strong>Trail Runs: 9:00 a.m.</strong> on the Chelsea trails with Yvonne.\r\n\r\n<strong>CHECK FACEBOOK for  WEEKLY DETAILS</strong>\r\n\r\n&nbsp;','ONGOING WEEKLY - join us!','','inherit','open','closed','','1468-revision-v1','','','2014-10-08 11:49:12','2014-10-08 15:49:12','',1468,'https://sofits.ca/2014/10/08/1468-revision-v1/',0,'revision','',0),(1552,7,'2014-10-13 09:13:47','2014-10-13 13:13:47','','141013_Sofits','','inherit','open','closed','','141003_sofits2','','','2014-10-13 09:14:04','2014-10-13 13:14:04','',0,'https://sofits.ca/wp-content/uploads/141003_Sofits2.jpg',0,'attachment','image/jpeg',0),(1557,7,'2014-10-13 09:30:59','2014-10-13 13:30:59','','SOFITS group photo Oct 10, 2014','','inherit','open','closed','','olympus-digital-camera','','','2017-08-12 18:02:02','2017-08-12 22:02:02','',0,'https://sofits.ca/wp-content/uploads/141010_Sofits.jpg',0,'attachment','image/jpeg',0),(1559,7,'2014-10-13 13:43:40','2014-10-13 17:43:40','<a href=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\"><img class=\"alignnone size-full wp-image-1482\" src=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\" alt=\"131009_River-Fog\" width=\"800\" height=\"600\" /></a>\r\n\r\n<strong>Tuesday Group Runs:</strong>  <strong>1:30 p.m</strong>. at various Gatineau Park locations with Fay\r\n\r\n<strong>Sunday</strong> <strong>Trail Runs: 9:00 a.m.</strong> on  Chelsea or Gatineau Park trails with Yvonne.\r\n\r\n<strong>CHECK FACEBOOK for  WEEKLY DETAILS</strong>\r\n\r\n&nbsp;','ONGOING WEEKLY - join us!','','inherit','open','closed','','1468-revision-v1','','','2014-10-13 13:43:40','2014-10-13 17:43:40','',1468,'https://sofits.ca/2014/10/13/1468-revision-v1/',0,'revision','',0),(1565,7,'2014-10-19 09:37:45','2014-10-19 13:37:45','<a href=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\"><img class=\"alignnone size-full wp-image-1482\" src=\"https://sofits.ca/wp-content/uploads/131009_River-Fog.jpg\" alt=\"131009_River-Fog\" width=\"800\" height=\"600\" /></a>\r\n\r\n<strong>Tuesday Group Runs:</strong>  <strong>1:30 p.m</strong>. at various Gatineau Park locations:  Contact Fay\r\n\r\n<strong>Sunday</strong> <strong>Trail Runs: 9:00 a.m.</strong> on  Chelsea or Gatineau Park trails.  Contact Yvonne or Maggie\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;','ONGOING WEEKLY - join us!','','inherit','open','closed','','1468-revision-v1','','','2014-10-19 09:37:45','2014-10-19 13:37:45','',1468,'https://sofits.ca/2014/10/19/1468-revision-v1/',0,'revision','',0),(1572,7,'2014-10-24 17:13:14','2014-10-24 21:13:14','','Blondies','','inherit','open','closed','','blondies','','','2014-10-24 17:13:14','2014-10-24 21:13:14','',0,'https://sofits.ca/wp-content/uploads/Blondies.pdf',0,'attachment','application/pdf',0),(1614,7,'2014-11-05 07:29:05','2014-11-05 12:29:05','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n<a href=\"%20https://ottawamission.com/mission-possible/\" target=\"_blank\">Mission Possible</a>: half marathon, 5K and 2-person half marathon relay - Nov. 8 at Marshes Golf Course on Terry Fox Drive\r\n\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n<a href=\"https://www.wqwheelers.com/\" target=\"_blank\">Canadian Ski Marathon</a>:  Feb. 7-8, 2015\r\n\r\n<a href=\"https://www.gatineauloppet.com/?lang=en\" target=\"_blank\">Gatineau Loppet</a>: Feb. 13, 14, 15, 2015\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n<a href=\"https://www.wqwheelers.com/\" target=\"_blank\">Tour du Ponts</a>: 100/145 km bike ride - October 4, 2014:  Quyon to Portage du Fort / beyond\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n\r\n100km relay - teams of up to 20 runners\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">MEC Century Ride:</a> September 14. Distances are 55km or 100 km on paved road - or 80km on gravel road. Meet up at Alice\'s in Carp at the end of the ride!\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://runguides.com/ottawa/event/sports-4-emilies-run?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\">Emilies Run</a> - June 21, 2014; 5km and Half-Marathon Distance\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-11-05 07:29:05','2014-11-05 12:29:05','',93,'https://sofits.ca/2014/11/05/93-revision-v1/',0,'revision','',0),(1615,7,'2014-11-05 07:31:11','2014-11-05 12:31:11','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n<a href=\"https://ottawamission.com/mission-possible/\" target=\"_blank\">Mission Possible</a>: half marathon, 5K and 2-person half marathon relay - Nov. 8 at Marshes Golf Course on Terry Fox Drive\r\n\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n<a href=\"https://www.wqwheelers.com/\" target=\"_blank\">Canadian Ski Marathon</a>:  Feb. 7-8, 2015\r\n\r\n<a href=\"https://www.gatineauloppet.com/?lang=en\" target=\"_blank\">Gatineau Loppet</a>: Feb. 13, 14, 15, 2015\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n<a href=\"https://www.wqwheelers.com/\" target=\"_blank\">Tour du Ponts</a>: 100/145 km bike ride - October 4, 2014:  Quyon to Portage du Fort / beyond\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n\r\n100km relay - teams of up to 20 runners\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">MEC Century Ride:</a> September 14. Distances are 55km or 100 km on paved road - or 80km on gravel road. Meet up at Alice\'s in Carp at the end of the ride!\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://runguides.com/ottawa/event/sports-4-emilies-run?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\">Emilies Run</a> - June 21, 2014; 5km and Half-Marathon Distance\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2014-11-05 07:31:11','2014-11-05 12:31:11','',93,'https://sofits.ca/2014/11/05/93-revision-v1/',0,'revision','',0),(1626,7,'2014-11-09 21:25:07','2014-11-10 02:25:07','','131104_Ice-Crystals','','inherit','open','closed','','131104_ice-chrystals','','','2014-11-09 21:25:18','2014-11-10 02:25:18','',0,'https://sofits.ca/wp-content/uploads/131104_Ice-Chrystals.jpg',0,'attachment','image/jpeg',0),(1627,7,'2014-11-09 21:28:14','2014-11-10 02:28:14','','131114_Ice-and-Snow','','inherit','open','closed','','131114_ice-and-snow','','','2016-11-22 17:16:23','2016-11-22 22:16:23','',0,'https://sofits.ca/wp-content/uploads/131114_Ice-and-Snow.jpg',0,'attachment','image/jpeg',0),(1651,7,'2014-11-16 18:14:50','2014-11-16 23:14:50','','140307_Sofits','','inherit','open','closed','','140307_sofits','','','2016-10-17 10:25:36','2016-10-17 14:25:36','',0,'https://sofits.ca/wp-content/uploads/140307_Sofits.jpg',0,'attachment','image/jpeg',0),(1665,7,'2014-11-21 16:11:38','2014-11-21 21:11:38','For the month of November Greg Christie is offering a 20% discount to Sofits members, as well as  Julbo Sniper special pricing.\r\nIn order to get the 20% discount on ski equipment, members must bring in the 20% <a href=\"https://sofits.ca/wp-content/uploads/GregChristie_Nov2014.pdf\">discount flyer</a> to the shop.  This discount is only valid for the month of November!!!\r\n\r\n<span style=\"color: #0000ff;\">UPDATE:  This discount has been extended to Dec. 7.</span>\r\n\r\nThanks to Carol for this info.','Discount at Greg Christie\'s','','publish','open','closed','','discount-at-greg-christies','','','2014-12-08 16:35:58','2014-12-08 21:35:58','',0,'https://sofits.ca/?p=1665',0,'post','',0),(1666,7,'2014-11-21 16:05:37','2014-11-21 21:05:37','','GregChristie_Nov2014','','inherit','open','closed','','gregchristie_nov2014','','','2014-11-21 16:05:37','2014-11-21 21:05:37','',1665,'https://sofits.ca/wp-content/uploads/GregChristie_Nov2014.pdf',0,'attachment','application/pdf',0),(1667,7,'2014-11-21 16:10:19','2014-11-21 21:10:19','For the month of November Greg Christie is offering a 20% discount to Sofits members, as well as  Julbo Sniper special pricing (for wannabe biathletes).\r\nIn order to get the 20% discount on ski equipment, members must bring in the 20% <a href=\"https://sofits.ca/wp-content/uploads/GregChristie_Nov2014.pdf\">discount flyer</a> to the shop.  This discount is only valid for the month of November!!!\r\n\r\nThanks to Carol for this info.','Discount at Greg Christie\'s','','inherit','open','closed','','1665-revision-v1','','','2014-11-21 16:10:19','2014-11-21 21:10:19','',1665,'https://sofits.ca/2014/11/21/1665-revision-v1/',0,'revision','',0),(1684,7,'2014-11-29 08:51:55','2014-11-29 13:51:55','For the month of November Greg Christie is offering a 20% discount to Sofits members, as well as  Julbo Sniper special pricing.\r\nIn order to get the 20% discount on ski equipment, members must bring in the 20% <a href=\"https://sofits.ca/wp-content/uploads/GregChristie_Nov2014.pdf\">discount flyer</a> to the shop.  This discount is only valid for the month of November!!!\r\n\r\n<span style=\"color: #0000ff;\">UPDATE:  This discount has been extended to Dec. 7.</span>\r\n\r\nThanks to Carol for this info.','Discount at Greg Christie\'s','','inherit','open','closed','','1665-autosave-v1','','','2014-11-29 08:51:55','2014-11-29 13:51:55','',1665,'https://sofits.ca/2014/11/29/1665-autosave-v1/',0,'revision','',0),(1685,7,'2014-11-29 08:52:10','2014-11-29 13:52:10','For the month of November Greg Christie is offering a 20% discount to Sofits members, as well as  Julbo Sniper special pricing.\r\nIn order to get the 20% discount on ski equipment, members must bring in the 20% <a href=\"https://sofits.ca/wp-content/uploads/GregChristie_Nov2014.pdf\">discount flyer</a> to the shop.  This discount is only valid for the month of November!!!\r\n\r\n<span style=\"color: #0000ff;\">UPDATE:  This discount has been extended to Dec. 7.</span>\r\n\r\nThanks to Carol for this info.','Discount at Greg Christie\'s','','inherit','open','closed','','1665-revision-v1','','','2014-11-29 08:52:10','2014-11-29 13:52:10','',1665,'https://sofits.ca/2014/11/29/1665-revision-v1/',0,'revision','',0),(1687,7,'2014-11-30 20:05:56','2014-12-01 01:05:56','','Ski Team','','inherit','open','closed','','100_4746','','','2015-10-25 08:12:15','2015-10-25 12:12:15','',0,'https://sofits.ca/wp-content/uploads/100_4746.jpg',0,'attachment','image/jpeg',0),(1692,7,'2014-12-02 12:42:30','2014-12-02 17:42:30','','Time-Trial-START-HERE','','inherit','open','closed','','time-trial-start-here','','','2014-12-02 12:42:41','2014-12-02 17:42:41','',0,'https://sofits.ca/wp-content/uploads/Time-Trial-START-HERE.jpg',0,'attachment','image/jpeg',0),(1693,7,'2014-12-02 12:43:55','2014-12-02 17:43:55','','Time-Trial-FINISH','','inherit','open','closed','','time-trial-finish','','','2014-12-02 12:43:55','2014-12-02 17:43:55','',0,'https://sofits.ca/wp-content/uploads/Time-Trial-FINISH.jpg',0,'attachment','image/jpeg',0),(1694,7,'2014-12-02 12:44:29','2014-12-02 17:44:29','','Dec-1-Time-Trial-TURN-AROUND','','inherit','open','closed','','dec-1-time-trial-turn-around','','','2014-12-02 12:44:39','2014-12-02 17:44:39','',0,'https://sofits.ca/wp-content/uploads/Dec-1-Time-Trial-TURN-AROUND.jpg',0,'attachment','image/jpeg',0),(1736,7,'2014-12-05 22:23:24','2014-12-06 03:23:24','','Time Trial Results Dec 5 2014','','inherit','open','closed','','time-trial-results-dec-5-2014','','','2014-12-05 22:23:24','2014-12-06 03:23:24','',0,'https://sofits.ca/wp-content/uploads/Time-Trial-Results-Dec-5-2014.pdf',0,'attachment','application/pdf',0),(1810,7,'2014-12-31 09:23:19','2014-12-31 14:23:19','','141219_Sofits','','inherit','open','closed','','141219_sofits','','','2017-03-01 11:24:12','2017-03-01 16:24:12','',0,'https://sofits.ca/wp-content/uploads/141219_Sofits.jpg',0,'attachment','image/jpeg',0),(1850,7,'2015-01-12 22:35:15','2015-01-13 03:35:15','','140124_Sofits2','','inherit','open','closed','','140124_sofits2','','','2016-02-02 21:22:22','2016-02-03 02:22:22','',0,'https://sofits.ca/wp-content/uploads/140124_Sofits2.jpg',0,'attachment','image/jpeg',0),(1887,7,'2015-01-17 15:50:19','2015-01-17 20:50:19','','Sofits_Jan-16-2015','','inherit','open','closed','','sofits_jan-16-2015','','','2015-01-17 15:50:19','2015-01-17 20:50:19','',0,'https://sofits.ca/wp-content/uploads/Sofits_Jan-16-2015.jpg',0,'attachment','image/jpeg',0),(1972,7,'2015-03-06 19:55:18','2015-03-07 00:55:18','','150306_Sofits-Skate','','inherit','open','closed','','150306_sofits-skate','','','2016-10-17 10:27:07','2016-10-17 14:27:07','',2446,'https://sofits.ca/wp-content/uploads/150306_Sofits-Skate.jpg',0,'attachment','image/jpeg',0),(1984,7,'2015-04-15 07:43:40','2015-04-15 11:43:40','','Sharon\'s weight workout','','inherit','open','closed','','anne-v','','','2015-04-15 07:44:01','2015-04-15 11:44:01','',0,'https://sofits.ca/wp-content/uploads/Anne-V..pdf',0,'attachment','application/pdf',0),(2013,7,'2015-08-15 19:10:22','2015-08-15 23:10:22','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n<a href=\"https://ottawamission.com/mission-possible/\" target=\"_blank\">Mission Possible</a>: half marathon, 5K and 2-person half marathon relay - Nov. 8 at Marshes Golf Course on Terry Fox Drive\r\n\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n<a href=\"https://www.wqwheelers.com/\" target=\"_blank\">Canadian Ski Marathon</a>:\r\n\r\n<a href=\"https://www.gatineauloppet.com/?lang=en\" target=\"_blank\">Gatineau Loppet</a>:\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n<a href=\"https://www.wqwheelers.com/\" target=\"_blank\">Tour du Ponts</a>: 100/145 km bike ride - October 4, 2014:  Quyon to Portage du Fort / beyond\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n\r\n100km relay - teams of up to 20 runners\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">MEC Century Ride:</a> September 14. Distances are 55km or 100 km on paved road - or 80km on gravel road. Meet up at Alice\'s in Carp at the end of the ride!\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://runguides.com/ottawa/event/sports-4-emilies-run?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\">Emilies Run</a> - June 21, 2014; 5km and Half-Marathon Distance\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2015-08-15 19:10:22','2015-08-15 23:10:22','',93,'https://sofits.ca/2015/08/15/93-revision-v1/',0,'revision','',0),(2014,7,'2015-08-15 19:11:16','2015-08-15 23:11:16','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n<a href=\"https://ottawamission.com/mission-possible/\" target=\"_blank\">Mission Possible</a>: half marathon, 5K and 2-person half marathon relay - Nov. 8 at Marshes Golf Course on Terry Fox Drive\r\n\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n<strong>Lanark Loppet</strong>\r\n\r\n<strong>Silver Spoon</strong>\r\n\r\n<a href=\"https://www.wqwheelers.com/\" target=\"_blank\">Canadian Ski Marathon</a>:\r\n\r\n<a href=\"https://www.gatineauloppet.com/?lang=en\" target=\"_blank\">Gatineau Loppet</a>:\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n<a href=\"https://www.wqwheelers.com/\" target=\"_blank\">Tour du Ponts</a>: 100/145 km bike ride - October 4, 2014:  Quyon to Portage du Fort / beyond\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n\r\n100km relay - teams of up to 20 runners\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">MEC Century Ride:</a> September 14. Distances are 55km or 100 km on paved road - or 80km on gravel road. Meet up at Alice\'s in Carp at the end of the ride!\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://runguides.com/ottawa/event/sports-4-emilies-run?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\">Emilies Run</a> - June 21, 2014; 5km and Half-Marathon Distance\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>','RACES and EVENTS','','inherit','open','closed','','93-revision-v1','','','2015-08-15 19:11:16','2015-08-15 23:11:16','',93,'https://sofits.ca/2015/08/15/93-revision-v1/',0,'revision','',0),(2017,7,'2015-08-15 19:15:06','2015-08-15 23:15:06','&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SKI-FIRST-OR-ALSO-SKIS.pdf\">SKI FIRST THEN RUNS OR ALSO SKIS</a> </strong>(read this first, then open the appropriate BUILD document.)\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/BUILD-1-for-ALSO-SKIS-.pdf\">BUILD 1 for ALSO SKIS, weeks of Dec 9 - 30</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SOFITS-GENERIC-2013-BUILD-1.pdf\">BUILD 1 for SKIS FIRST</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/Ski-Waxing-Updated-Dec-9-2013.pdf\">SKI WAXING Updated Dec 9 2013</a>  (Thanks, Ila!)\r\n</strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','CREATE A PLAN','','inherit','open','closed','','319-revision-v1','','','2015-08-15 19:15:06','2015-08-15 23:15:06','',319,'https://sofits.ca/2015/08/15/319-revision-v1/',0,'revision','',0),(2018,7,'2015-08-15 19:15:37','2015-08-15 23:15:37','&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SKI-FIRST-OR-ALSO-SKIS.pdf\">SKI FIRST THEN RUNS OR ALSO SKIS</a> </strong>(read this first, then open the appropriate BUILD document.)\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/BUILD-1-for-ALSO-SKIS-.pdf\">BUILD 1 for ALSO SKIS, weeks of Dec 9 - 30</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SOFITS-GENERIC-2013-BUILD-1.pdf\">BUILD 1 for SKIS FIRST</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','CREATE A PLAN','','inherit','open','closed','','319-revision-v1','','','2015-08-15 19:15:37','2015-08-15 23:15:37','',319,'https://sofits.ca/2015/08/15/319-revision-v1/',0,'revision','',0),(2019,7,'2016-11-18 19:16:37','2016-11-19 00:16:37','<img class=\"alignnone size-full wp-image-846\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg\" alt=\"Wax Bench\" width=\"700\" height=\"467\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://sofits.ca/wp-content/uploads/Ski-Waxing-Updated-Dec-9-2013.pdf\">PDF File  on SKI WAXING  (thanks, Ila!)</a></strong></span>','SKI WAXING','','publish','open','closed','','ski-waxing','','','2016-11-19 09:59:26','2016-11-19 14:59:26','',0,'https://sofits.ca/?page_id=2019',0,'page','',0),(2020,7,'2015-08-15 19:16:37','2015-08-15 23:16:37',' ','','','publish','open','closed','','2020','','','2015-08-15 19:16:37','2015-08-15 23:16:37','',0,'https://sofits.ca/2015/08/15/2020/',21,'nav_menu_item','',0),(2021,7,'2015-08-15 19:16:37','2015-08-15 23:16:37','<strong><a href=\"https://sofits.ca/wp-content/uploads/Ski-Waxing-Updated-Dec-9-2013.pdf\">Ski Waxing Updated Dec 9 2013 </a></strong>','SKI WAXING','','inherit','open','closed','','2019-revision-v1','','','2015-08-15 19:16:37','2015-08-15 23:16:37','',2019,'https://sofits.ca/2015/08/15/2019-revision-v1/',0,'revision','',0),(2022,7,'2015-08-15 19:17:10','2015-08-15 23:17:10','<strong><a href=\"https://sofits.ca/wp-content/uploads/Ski-Waxing-Updated-Dec-9-2013.pdf\">Ski Waxing Updated Dec 9 2013 (thanks, Ila!)</a></strong>','SKI WAXING','','inherit','open','closed','','2019-revision-v1','','','2015-08-15 19:17:10','2015-08-15 23:17:10','',2019,'https://sofits.ca/2015/08/15/2019-revision-v1/',0,'revision','',0),(2023,7,'2015-08-15 19:17:27','2015-08-15 23:17:27','<strong><a href=\"https://sofits.ca/wp-content/uploads/Ski-Waxing-Updated-Dec-9-2013.pdf\">SKI WAXING  (thanks, Ila!)</a></strong>','SKI WAXING','','inherit','open','closed','','2019-revision-v1','','','2015-08-15 19:17:27','2015-08-15 23:17:27','',2019,'https://sofits.ca/2015/08/15/2019-revision-v1/',0,'revision','',0),(2104,7,'2015-09-26 10:30:54','2015-09-26 14:30:54','','150925_Sofits10','','inherit','open','closed','','150925_sofits10','','','2016-08-26 15:40:17','2016-08-26 19:40:17','',0,'https://sofits.ca/wp-content/uploads/150925_Sofits10.jpg',0,'attachment','image/jpeg',0),(2116,7,'2015-10-02 19:25:53','2015-10-02 23:25:53','','151002_Sofits-Mount-Mooney04','','inherit','closed','closed','','151002_sofits-mount-mooney04','','','2015-10-02 19:25:53','2015-10-02 23:25:53','',0,'https://sofits.ca/wp-content/uploads/151002_Sofits-Mount-Mooney04.jpg',0,'attachment','image/jpeg',0),(2130,7,'2015-10-04 17:28:04','2015-10-04 21:28:04','BEST SITE EVER for HOW-TO SKI VIDEOS  <a href=\"https://crosscountryskitechnique.com\">crosscountryskitechnique.com</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe first video is  Sharon in slow motion, followed by one in normal time.   Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and an excellent body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Hips can be slightly more forward, ahead of your heels.  Great skiing, Sharon!\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/sharon-in-slo-mo_x264.mp4\"][/video]\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/Sharon4_x264.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" alt=\"Sharon-weight-shift\" width=\"800\" height=\"450\" /></a>\r\n\r\n(perhaps should have said \"provided the boot is off the snow\".   The tip of the ski will be touching of course.\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" alt=\"Sharon-legs-toghether-phase\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" alt=\"Kathy1\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" alt=\"Kathy2\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/Stretches.pdf\">Stretches</a>: Sharon\'s post workout stretches.','TECHNIQUE','','inherit','closed','closed','','723-revision-v1','','','2015-10-04 17:28:04','2015-10-04 21:28:04','',723,'https://sofits.ca/2015/10/04/723-revision-v1/',0,'revision','',0),(2131,7,'2015-10-04 17:28:21','2015-10-04 21:28:21','BEST SITE EVER for HOW-TO SKI VIDEOS  <a href=\"https://crosscountryskitechnique.com\">crosscountryskitechnique.com</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe first video is  Sharon in slow motion, followed by one in normal time.   Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and an excellent body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Hips can be slightly more forward, ahead of your heels.  Great skiing, Sharon!\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/sharon-in-slo-mo_x264.mp4\"][/video]\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/Sharon4_x264.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" alt=\"Sharon-weight-shift\" width=\"800\" height=\"450\" /></a>\r\n\r\n(perhaps should have said \"provided the boot is off the snow\".   The tip of the ski will be touching of course.\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" alt=\"Sharon-legs-toghether-phase\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" alt=\"Kathy1\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" alt=\"Kathy2\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/Stretches.pdf\">Stretches</a>: Sharon\'s post workout stretches.','XCSKI TECHNIQUE','','inherit','closed','closed','','723-revision-v1','','','2015-10-04 17:28:21','2015-10-04 21:28:21','',723,'https://sofits.ca/2015/10/04/723-revision-v1/',0,'revision','',0),(2132,7,'2015-10-04 17:31:19','2015-10-04 21:31:19','BEST SITE EVER for HOW-TO SKI VIDEOS of all techniques  <strong><a href=\"https://crosscountryskitechnique.com\">crosscountryskitechnique.com</a></strong>\r\n\r\nGREAT VIDEO of Ski walking and Ski Striding <strong><a href=\"httpss://www.youtube.com/watch?v=LzlGkpAL5ec\">httpss://www.youtube.com/watch?v=LzlGkpAL5ec</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe first video is  Sharon in slow motion, followed by one in normal time.   Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and an excellent body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Hips can be slightly more forward, ahead of your heels.  Great skiing, Sharon!\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/sharon-in-slo-mo_x264.mp4\"][/video]\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/Sharon4_x264.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" alt=\"Sharon-weight-shift\" width=\"800\" height=\"450\" /></a>\r\n\r\n(perhaps should have said \"provided the boot is off the snow\".   The tip of the ski will be touching of course.\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" alt=\"Sharon-legs-toghether-phase\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" alt=\"Kathy1\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" alt=\"Kathy2\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/Stretches.pdf\">Stretches</a>: Sharon\'s post workout stretches.','XCSKI TECHNIQUE','','inherit','closed','closed','','723-revision-v1','','','2015-10-04 17:31:19','2015-10-04 21:31:19','',723,'https://sofits.ca/2015/10/04/723-revision-v1/',0,'revision','',0),(2133,7,'2015-10-04 17:42:29','2015-10-04 21:42:29','BEST SITE EVER for HOW-TO SKI VIDEOS of all techniques  <strong><a href=\"https://crosscountryskitechnique.com\">crosscountryskitechnique.com</a></strong>\r\n\r\nGREAT VIDEO of Ski walking and Ski Striding <strong><a href=\"httpss://www.youtube.com/watch?v=LzlGkpAL5ec\">httpss://www.youtube.com/watch?v=LzlGkpAL5ec</a></strong>\r\n\r\nALSO THIS ONE by Local XCOTTAWA  <strong><a href=\"httpss://www.youtube.com/watch?v=P5wvl50bE8Q\">httpss://www.youtube.com/watch?v=P5wvl50bE8Q</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe first video is  Sharon in slow motion, followed by one in normal time.   Below the video are two stop frames showing two things everyone should aim for. Sharon has good weight shift, timing  and an excellent body position.  A couple of small pointers:  the arms are not always consistent. They should be just slightly more bent, and should both pass the hips at each stride.  Upper back could be more relaxed.  Hips can be slightly more forward, ahead of your heels.  Great skiing, Sharon!\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/sharon-in-slo-mo_x264.mp4\"][/video]\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/12/Sharon4_x264.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\"><img class=\"alignnone size-full wp-image-904\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-weight-shift.jpg\" alt=\"Sharon-weight-shift\" width=\"800\" height=\"450\" /></a>\r\n\r\n(perhaps should have said \"provided the boot is off the snow\".   The tip of the ski will be touching of course.\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\"><img class=\"alignnone size-full wp-image-905\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Sharon-legs-toghether-phase.jpg\" alt=\"Sharon-legs-toghether-phase\" width=\"800\" height=\"450\" /></a>\r\n\r\nBelow you can see Janey\'s admirably coordinated and relaxed \"skiing\".  Great timing, good body position and poling. This could never be confused with running.\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Janey1.mp4\"][/video]\r\n\r\nHere\'s Kathy in action - great ski walking. (technique pointers below)\r\n\r\n[video width=\"640\" height=\"480\" mp4=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy_Nov1_2013.mp4\"][/video]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-724\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy1.jpg\" alt=\"Kathy1\" width=\"800\" height=\"533\" />\r\n\r\n<img class=\"alignnone size-medium wp-image-725\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Kathy2.jpg\" alt=\"Kathy2\" width=\"800\" height=\"533\" />\r\n\r\n&nbsp;\r\n\r\nAt the risk of embarrassing Kathy I wanted to show some of her specific (and excellent) technical skills.\r\n\r\nClick on each photo if you have trouble reading the fine print.\r\n\r\nSorry about the spelling. Couldn’t see what I was writing in Photoshop.\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://sofits.ca/wp-content/uploads/Stretches.pdf\">Stretches</a>: Sharon\'s post workout stretches.','XCSKI TECHNIQUE','','inherit','closed','closed','','723-revision-v1','','','2015-10-04 17:42:29','2015-10-04 21:42:29','',723,'https://sofits.ca/2015/10/04/723-revision-v1/',0,'revision','',0),(2136,7,'2015-10-09 14:55:17','2015-10-09 18:55:17','','151008_Ridge-0002','','inherit','closed','closed','','151008_ridge-dog-walk_0002','','','2018-09-12 12:26:46','2018-09-12 16:26:46','',0,'https://sofits.ca/wp-content/uploads/151008_Ridge-Dog-Walk_0002.jpg',0,'attachment','image/jpeg',0),(2149,7,'2015-10-18 21:14:03','2015-10-19 01:14:03','','Sofits Etienne Brule_0022','','inherit','closed','closed','','sofits-etienne-brule_0022','','','2016-10-07 15:27:47','2016-10-07 19:27:47','',0,'https://sofits.ca/wp-content/uploads/Sofits-Etienne-Brule_0022.jpg',0,'attachment','image/jpeg',0),(2172,7,'2015-10-25 08:14:12','2015-10-25 12:14:12','','061011','','inherit','closed','closed','','061011','','','2015-10-25 08:14:12','2015-10-25 12:14:12','',0,'https://sofits.ca/wp-content/uploads/061011.jpg',0,'attachment','image/jpeg',0),(2192,7,'2015-11-02 21:44:19','2015-11-03 02:44:19','','151018_Trail-8-Sofits-Ski-Walk_0015','','inherit','closed','closed','','151018_trail-8-sofits-ski-walk_0015','','','2015-11-02 21:44:19','2015-11-03 02:44:19','',0,'https://sofits.ca/wp-content/uploads/151018_Trail-8-Sofits-Ski-Walk_0015.jpg',0,'attachment','image/jpeg',0),(2209,7,'2015-11-06 16:36:32','2015-11-06 21:36:32','','Buff2','','inherit','closed','closed','','buff2','','','2015-11-06 16:36:32','2015-11-06 21:36:32','',0,'https://sofits.ca/wp-content/uploads/Buff2.jpg',0,'attachment','image/jpeg',0),(2219,7,'2015-11-11 13:53:12','2015-11-11 18:53:12','','061107','','inherit','closed','closed','','061107','','','2015-11-11 13:53:12','2015-11-11 18:53:12','',0,'https://sofits.ca/wp-content/uploads/061107.jpg',0,'attachment','image/jpeg',0),(2232,7,'2015-11-13 15:43:20','2015-11-13 20:43:20','','S995_ABC15_jacket','','inherit','closed','closed','','s995_abc15_jacket','','','2015-11-13 15:56:36','2015-11-13 20:56:36','',0,'https://sofits.ca/wp-content/uploads/S995_ABC15_jacket.pdf',0,'attachment','application/pdf',0),(2259,7,'2015-11-15 20:08:07','2015-11-16 01:08:07','','091202','','inherit','closed','closed','','091202','','','2016-11-05 10:17:50','2016-11-05 14:17:50','',0,'https://sofits.ca/wp-content/uploads/091202.jpg',0,'attachment','image/jpeg',0),(2292,7,'2015-12-01 15:14:34','2015-12-01 20:14:34','','151201_071204','','inherit','closed','closed','','151201_071204','','','2016-12-03 09:09:15','2016-12-03 14:09:15','',0,'https://sofits.ca/wp-content/uploads/151201_071204.jpg',0,'attachment','image/jpeg',0),(2314,7,'2015-12-07 22:37:19','2015-12-08 03:37:19','','091211','','inherit','closed','closed','','091211','','','2015-12-07 22:37:19','2015-12-08 03:37:19','',0,'https://sofits.ca/wp-content/uploads/091211.jpg',0,'attachment','image/jpeg',0),(2319,7,'2015-12-09 09:17:36','2015-12-09 14:17:36','SOME GREAT WOMEN\'S CLASSIC FOOTAGE: <strong> <a href=\"httpss://youtu.be/2pEIyDLh_P0\">httpss://youtu.be/2pEIyDLh_P0</a></strong>\r\n\r\nBEST SITE EVER for HOW-TO SKI VIDEOS of all techniques  <strong><a href=\"https://crosscountryskitechnique.com\">crosscountryskitechnique.com</a></strong>\r\n\r\nGREAT VIDEO of Ski walking and Ski Striding <strong><a href=\"httpss://www.youtube.com/watch?v=LzlGkpAL5ec\">httpss://www.youtube.com/watch?v=LzlGkpAL5ec</a></strong>\r\n\r\nALSO THIS ONE by Local XCOTTAWA  <strong><a href=\"httpss://www.youtube.com/watch?v=P5wvl50bE8Q\">httpss://www.youtube.com/watch?v=P5wvl50bE8Q</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','XCSKI TECHNIQUE','','inherit','closed','closed','','723-revision-v1','','','2015-12-09 09:17:36','2015-12-09 14:17:36','',723,'https://sofits.ca/2015/12/09/723-revision-v1/',0,'revision','',0),(2329,7,'2015-12-11 19:35:50','2015-12-12 00:35:50','','130412_Fire-at-Western','','inherit','closed','closed','','130412_fire-at-western','','','2015-12-11 19:35:50','2015-12-12 00:35:50','',0,'https://sofits.ca/wp-content/uploads/130412_Fire-at-Western.jpg',0,'attachment','image/jpeg',0),(2354,7,'2016-01-04 10:18:54','2016-01-04 15:18:54','&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2355\" src=\"https://sofits.ca/wp-content/uploads/Sofits_Jan-16-2015-1.jpg\" alt=\"Sofits_Jan-16-2015\" width=\"800\" height=\"449\" />\r\n\r\nFRIDAY TRAINING:   This week is a little bit different, so please read it carefully!  Note that there is a choice of classic or skate, and that the classic has an earlier start option for those who can make it.  Please choose either classic or skate, but not both.   When you arrive at P2, park at the stadium area (free) , not in front of the Relais building ($).\r\n\r\n<strong>11:00 Classic Refresher</strong>, for one hour and merging with the 12:00 classic session.   Especially recommended if it is your first ski of the year, or if you are new to the group.  If you can come at 11:00, great!   If not, just come at 12:00.\r\n\r\n<strong>12:00 Classic Continues</strong>, with an assortment of useful and fun drills and tricks on the go, for an hour to two (options to leave after the first hour if it is your first ski of the year or your brain is tired)\r\n\r\n******************************************************************************\r\n\r\n<strong>12:00 - 2:00 :  Skate Skiing:</strong>   Drills, optional videotaping and introductory, short  intervals\r\n\r\n*************************************************************************************\r\n\r\n(EEK!  4 polls!  Go slowly, choose the correct one! )\r\n\r\n[yop_poll id=\"45\" tr_id=\"\"\" show_results=\"-1\"]\r\n\r\n[yop_poll id=\"46\" tr_id=\"\"\" show_results=\"-1\"]\r\n\r\n[yop_poll id=\"47\" tr_id=\"\"\" show_results=\"-1\"]\r\n\r\n[yop_poll id=\"48\" tr_id=\"\"\" show_results=\"-1\"]','FRIDAY TRAINING JANUARY 8, 2016','','publish','closed','closed','','on-snow-training-january-2016','','','2016-01-04 10:59:05','2016-01-04 15:59:05','',0,'https://sofits.ca/?p=2354',0,'post','',0),(2355,7,'2016-01-03 18:17:24','2016-01-03 23:17:24','','Sofits_Jan-16-2015','','inherit','closed','closed','','sofits_jan-16-2015-2','','','2016-01-03 18:17:24','2016-01-03 23:17:24','',2354,'https://sofits.ca/wp-content/uploads/Sofits_Jan-16-2015-1.jpg',0,'attachment','image/jpeg',0),(2356,7,'2016-01-03 18:18:54','2016-01-03 23:18:54','&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2355\" src=\"https://sofits.ca/wp-content/uploads/Sofits_Jan-16-2015-1.jpg\" alt=\"Sofits_Jan-16-2015\" width=\"800\" height=\"449\" />TUESDAY TRAINING is ongoing.   We meet every week at 9:30, and will usually work on skating unless the weather is extremely cold.      If you wish to ski with us  on both Tuesday and Friday but did not register for the Tuesdays, you can drop in for $5, but please let me know you are coming.      Most of the info is done through a separate Facebook page,  so you will see it only if you ask!\r\n\r\nFRIDAY TRAINING resumes this week, on January 8.   More details to follow.','ON SNOW TRAINING JANUARY 2016','','inherit','closed','closed','','2354-revision-v1','','','2016-01-03 18:18:54','2016-01-03 23:18:54','',2354,'https://sofits.ca/2016/01/03/2354-revision-v1/',0,'revision','',0),(2358,7,'2016-01-03 18:41:52','2016-01-03 23:41:52','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming events:</span></span></h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href=\"https://bright-ideas-software.com/silverspoon/\">Silver Spoon: </a>   Saturday January 30, 2016\r\n</strong>\r\n\r\n<strong><a href=\"https://www.winterludetriathlon.ca/\" target=\"_blank\">Winterlude Triathlon:</a></strong>   <strong>Saturday January 30, 2016</strong>\r\n\r\n<strong><a href=\"httpss://tayvalleyskiclub.wordpress.com/2016-loppet/\" target=\"_blank\">Lanark Loppet</a>:  Sunday February 7 (snow date Feb 14)</strong>\r\n\r\n<strong><a href=\"https://www.skiloppet.com/?lang=en\" target=\"_blank\">Viking Loppet:</a> Sunday February 7</strong>\r\n\r\n<strong><a href=\"https://csm-mcs.com/\" target=\"_blank\">Canadian Ski Marathon</a>:</strong>  <strong>February 19 - 21</strong>\r\n\r\n<strong><a href=\"https://www.gatineauloppet.com/?lang=en\" target=\"_blank\">Gatineau Loppet:</a></strong>  <strong>February 26 - 28</strong>\r\n\r\n<strong><a href=\"https://skitourcanada.com/en/2015/10/15/ski-tour-canadas-schedule/\" target=\"_blank\">SKi Tour Canada Schedule</a>:  March 1 (Gatineau), March  2 (Montreal) , March  4&amp;5 (Quebec City</strong>\r\n\r\n&nbsp;\r\n<h1>Past events:</h1>\r\n<a href=\"https://www.wqwheelers.com/\" target=\"_blank\">Tour du Ponts</a>: 100/145 km bike ride - October 4, 2014:  Quyon to Portage du Fort / beyond\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n\r\n100km relay - teams of up to 20 runners\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">MEC Century Ride:</a> September 14. Distances are 55km or 100 km on paved road - or 80km on gravel road. Meet up at Alice\'s in Carp at the end of the ride!\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://runguides.com/ottawa/event/sports-4-emilies-run?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\">Emilies Run</a> - June 21, 2014; 5km and Half-Marathon Distance\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>','RACES and EVENTS','','inherit','closed','closed','','93-revision-v1','','','2016-01-03 18:41:52','2016-01-03 23:41:52','',93,'https://sofits.ca/2016/01/03/93-revision-v1/',0,'revision','',0),(2359,7,'2016-01-03 18:44:19','2016-01-03 23:44:19','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Upcoming Ski Events:</span></span></h1>\r\n<strong><a href=\"https://bright-ideas-software.com/silverspoon/\">Silver Spoon: </a>   Saturday January 30, 2016\r\n</strong>\r\n\r\n<strong><a href=\"https://www.winterludetriathlon.ca/\" target=\"_blank\">Winterlude Triathlon:</a></strong>   <strong>Saturday January 30, 2016</strong>\r\n\r\n<strong><a href=\"httpss://tayvalleyskiclub.wordpress.com/2016-loppet/\" target=\"_blank\">Lanark Loppet</a>:  Sunday February 7 (snow date Feb 14)</strong>\r\n\r\n<strong><a href=\"https://www.skiloppet.com/?lang=en\" target=\"_blank\">Viking Loppet:</a> Sunday February 7</strong>\r\n\r\n<strong><a href=\"https://csm-mcs.com/\" target=\"_blank\">Canadian Ski Marathon</a>:</strong>  <strong>February 19 - 21</strong>\r\n\r\n<strong><a href=\"https://www.gatineauloppet.com/?lang=en\" target=\"_blank\">Gatineau Loppet:</a></strong>  <strong>February 26 - 28</strong>\r\n\r\n<strong><a href=\"https://skitourcanada.com/en/2015/10/15/ski-tour-canadas-schedule/\" target=\"_blank\">SKi Tour Canada Schedule</a>:  March 1 (Gatineau), March  2 (Montreal) , March  4&amp;5 (Quebec City</strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n<h1>Past events:</h1>\r\n<a href=\"https://www.wqwheelers.com/\" target=\"_blank\">Tour du Ponts</a>: 100/145 km bike ride - October 4, 2014:  Quyon to Portage du Fort / beyond\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">Sears Great Canadian Run Ottawa</a> - October 4, 2014\r\n\r\n100km relay - teams of up to 20 runners\r\n\r\n<a title=\"cycling\" href=\"https://events.mec.ca/event/22251/mec-ottawa-century-ride\" target=\"_blank\">MEC Century Ride:</a> September 14. Distances are 55km or 100 km on paved road - or 80km on gravel road. Meet up at Alice\'s in Carp at the end of the ride!\r\n\r\n<a href=\"https://www.wqwheelers.com/2014/04/mufferaw-joe-2014/\" target=\"_blank\">Bring on the Bay 3 km swim</a>- July 12, 2014\r\n\r\n<a href=\"https://runguides.com/ottawa/event/sports-4-emilies-run?utm_source=runguides+race+updates&amp;utm_campaign=cd64315b11-ottawa_run_update_june_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-cd64315b11-82161981\">Emilies Run</a> - June 21, 2014; 5km and Half-Marathon Distance\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\">Perth Triathalon and Duathalon</a> - June 2, 2014\r\n\r\n<a href=\"https://www.runottawa.ca/\" target=\"_blank\">Ottawa Race Weekend</a> - May 25-25:  2, 5, 10 km; marathon, half-marathon\r\n\r\n<a href=\"https://www.runguides.com/Ottawa/event/Colonel-By-Classic?utm_source=RunGuides+Race+Updates&amp;utm_campaign=328908b5fe-Ottawa_Run_Update_May_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-328908b5fe-82161981\" target=\"_blank\">Colonel By Classic</a> on May 17 - 1, 3 and 8km\r\n\r\n<a href=\"https://events.mec.ca/event/13665/mec-ottawa-race-3-trail-tester-camp-fortune\" target=\"_blank\">MEC Ottawa Race 3 - TRAIL TESTER - Camp Fortune </a>- Sunday, May 4, 2014\r\n\r\n<a href=\"https://www.zone3sports.com/Perth%20triathlon.htm\" target=\"_blank\">Mufferaw Joe 2014</a>, 80 or 130km bike ride from Quyon - May 3, 2014\r\n\r\n<span style=\"color: #000000;\"><a href=\"https://www.wakefieldrun.com\">Wakefield Covered Bridge Run and Duathalon</a> - May 3 and 4, 2014</span>','RACES and EVENTS','','inherit','closed','closed','','93-revision-v1','','','2016-01-03 18:44:19','2016-01-03 23:44:19','',93,'https://sofits.ca/2016/01/03/93-revision-v1/',0,'revision','',0),(2364,7,'2016-01-04 10:28:17','2016-01-04 15:28:17','&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2355\" src=\"https://sofits.ca/wp-content/uploads/Sofits_Jan-16-2015-1.jpg\" alt=\"Sofits_Jan-16-2015\" width=\"800\" height=\"449\" />\r\n\r\nFRIDAY TRAINING:   This week is a little bit different, so please read it carefully!  Note that there is a choice of classic or skate, and that the classic has an earlier start option for those who can make it.  Please choose either classic or skate, but not both!   When you arrive at P2, park at the stadium area (free) , not in front of the Relais building ($).\r\n\r\n11:00 Classic Refresher, for one hour.   Especially recommended if it is your first ski of the year, or if you are new to the group.  If you can come at 11:00 and stay on for the next part, great!   If not, just come at 12:00.\r\n\r\n12:00 A classic session, with an assortment of useful and fun drills and tricks on the go, for an hour to two (options to leave after the first hour if it is your first ski of the year or your brain is tired)\r\n\r\n******************************************************************************\r\n\r\nSkate Option:  12:00 to 2:00.   Drills and introductory, short  intervals','ON SNOW TRAINING JANUARY 2016','','inherit','closed','closed','','2354-revision-v1','','','2016-01-04 10:28:17','2016-01-04 15:28:17','',2354,'https://sofits.ca/2016/01/04/2354-revision-v1/',0,'revision','',0),(2365,7,'2016-01-04 10:31:32','2016-01-04 15:31:32','&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2355\" src=\"https://sofits.ca/wp-content/uploads/Sofits_Jan-16-2015-1.jpg\" alt=\"Sofits_Jan-16-2015\" width=\"800\" height=\"449\" />\r\n\r\nFRIDAY TRAINING:   This week is a little bit different, so please read it carefully!  Note that there is a choice of classic or skate, and that the classic has an earlier start option for those who can make it.  Please choose either classic or skate, but not both!   When you arrive at P2, park at the stadium area (free) , not in front of the Relais building ($).\r\n\r\n<strong>11:00 Classic Refresher</strong>, for one hour and merging with the 12:00 classic session.   Especially recommended if it is your first ski of the year, or if you are new to the group.  If you can come at 11:00, great!   If not, just come at 12:00.\r\n\r\n<strong>12:00 Classic Continues</strong>, with an assortment of useful and fun drills and tricks on the go, for an hour to two (options to leave after the first hour if it is your first ski of the year or your brain is tired)\r\n\r\n******************************************************************************\r\n\r\n<strong>12:00 - 2:00 :  Skate Skiing:</strong>   Drills, optional videotaping and introductory, short  intervals','ON SNOW TRAINING JANUARY 2016','','inherit','closed','closed','','2354-revision-v1','','','2016-01-04 10:31:32','2016-01-04 15:31:32','',2354,'https://sofits.ca/2016/01/04/2354-revision-v1/',0,'revision','',0),(2366,7,'2016-01-04 10:31:54','2016-01-04 15:31:54','&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2355\" src=\"https://sofits.ca/wp-content/uploads/Sofits_Jan-16-2015-1.jpg\" alt=\"Sofits_Jan-16-2015\" width=\"800\" height=\"449\" />\r\n\r\nFRIDAY TRAINING:   This week is a little bit different, so please read it carefully!  Note that there is a choice of classic or skate, and that the classic has an earlier start option for those who can make it.  Please choose either classic or skate, but not both.   When you arrive at P2, park at the stadium area (free) , not in front of the Relais building ($).\r\n\r\n<strong>11:00 Classic Refresher</strong>, for one hour and merging with the 12:00 classic session.   Especially recommended if it is your first ski of the year, or if you are new to the group.  If you can come at 11:00, great!   If not, just come at 12:00.\r\n\r\n<strong>12:00 Classic Continues</strong>, with an assortment of useful and fun drills and tricks on the go, for an hour to two (options to leave after the first hour if it is your first ski of the year or your brain is tired)\r\n\r\n******************************************************************************\r\n\r\n<strong>12:00 - 2:00 :  Skate Skiing:</strong>   Drills, optional videotaping and introductory, short  intervals','ON SNOW TRAINING JANUARY 2016','','inherit','closed','closed','','2354-revision-v1','','','2016-01-04 10:31:54','2016-01-04 15:31:54','',2354,'https://sofits.ca/2016/01/04/2354-revision-v1/',0,'revision','',0),(2367,7,'2016-01-04 10:33:06','2016-01-04 15:33:06','&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2355\" src=\"https://sofits.ca/wp-content/uploads/Sofits_Jan-16-2015-1.jpg\" alt=\"Sofits_Jan-16-2015\" width=\"800\" height=\"449\" />\r\n\r\nFRIDAY TRAINING:   This week is a little bit different, so please read it carefully!  Note that there is a choice of classic or skate, and that the classic has an earlier start option for those who can make it.  Please choose either classic or skate, but not both.   When you arrive at P2, park at the stadium area (free) , not in front of the Relais building ($).\r\n\r\n<strong>11:00 Classic Refresher</strong>, for one hour and merging with the 12:00 classic session.   Especially recommended if it is your first ski of the year, or if you are new to the group.  If you can come at 11:00, great!   If not, just come at 12:00.\r\n\r\n<strong>12:00 Classic Continues</strong>, with an assortment of useful and fun drills and tricks on the go, for an hour to two (options to leave after the first hour if it is your first ski of the year or your brain is tired)\r\n\r\n******************************************************************************\r\n\r\n<strong>12:00 - 2:00 :  Skate Skiing:</strong>   Drills, optional videotaping and introductory, short  intervals','FRIDAY TRAINING JANUARY 8, 2016','','inherit','closed','closed','','2354-revision-v1','','','2016-01-04 10:33:06','2016-01-04 15:33:06','',2354,'https://sofits.ca/2016/01/04/2354-revision-v1/',0,'revision','',0),(2368,7,'2016-01-04 10:43:57','2016-01-04 15:43:57','&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2355\" src=\"https://sofits.ca/wp-content/uploads/Sofits_Jan-16-2015-1.jpg\" alt=\"Sofits_Jan-16-2015\" width=\"800\" height=\"449\" />\r\n\r\nFRIDAY TRAINING:   This week is a little bit different, so please read it carefully!  Note that there is a choice of classic or skate, and that the classic has an earlier start option for those who can make it.  Please choose either classic or skate, but not both.   When you arrive at P2, park at the stadium area (free) , not in front of the Relais building ($).\r\n\r\n<strong>11:00 Classic Refresher</strong>, for one hour and merging with the 12:00 classic session.   Especially recommended if it is your first ski of the year, or if you are new to the group.  If you can come at 11:00, great!   If not, just come at 12:00.\r\n\r\n<strong>12:00 Classic Continues</strong>, with an assortment of useful and fun drills and tricks on the go, for an hour to two (options to leave after the first hour if it is your first ski of the year or your brain is tired)\r\n\r\n******************************************************************************\r\n\r\n<strong>12:00 - 2:00 :  Skate Skiing:</strong>   Drills, optional videotaping and introductory, short  intervals\r\n\r\n*************************************************************************************\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"45\" tr_id=\"\"\" show_results=\"-1\"]','FRIDAY TRAINING JANUARY 8, 2016','','inherit','closed','closed','','2354-revision-v1','','','2016-01-04 10:43:57','2016-01-04 15:43:57','',2354,'https://sofits.ca/2016/01/04/2354-revision-v1/',0,'revision','',0),(2369,7,'2016-01-04 10:55:17','2016-01-04 15:55:17','&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2355\" src=\"https://sofits.ca/wp-content/uploads/Sofits_Jan-16-2015-1.jpg\" alt=\"Sofits_Jan-16-2015\" width=\"800\" height=\"449\" />\r\n\r\nFRIDAY TRAINING:   This week is a little bit different, so please read it carefully!  Note that there is a choice of classic or skate, and that the classic has an earlier start option for those who can make it.  Please choose either classic or skate, but not both.   When you arrive at P2, park at the stadium area (free) , not in front of the Relais building ($).\r\n\r\n<strong>11:00 Classic Refresher</strong>, for one hour and merging with the 12:00 classic session.   Especially recommended if it is your first ski of the year, or if you are new to the group.  If you can come at 11:00, great!   If not, just come at 12:00.\r\n\r\n<strong>12:00 Classic Continues</strong>, with an assortment of useful and fun drills and tricks on the go, for an hour to two (options to leave after the first hour if it is your first ski of the year or your brain is tired)\r\n\r\n******************************************************************************\r\n\r\n<strong>12:00 - 2:00 :  Skate Skiing:</strong>   Drills, optional videotaping and introductory, short  intervals\r\n\r\n*************************************************************************************\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"45\" tr_id=\"\"\" show_results=\"-1\"]\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"46\" tr_id=\"\"\" show_results=\"-1\"]\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"47\" tr_id=\"\"\" show_results=\"-1\"]\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"48\" tr_id=\"\"\" show_results=\"-1\"]','FRIDAY TRAINING JANUARY 8, 2016','','inherit','closed','closed','','2354-revision-v1','','','2016-01-04 10:55:17','2016-01-04 15:55:17','',2354,'https://sofits.ca/2016/01/04/2354-revision-v1/',0,'revision','',0),(2370,7,'2016-01-04 10:57:29','2016-01-04 15:57:29','&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2355\" src=\"https://sofits.ca/wp-content/uploads/Sofits_Jan-16-2015-1.jpg\" alt=\"Sofits_Jan-16-2015\" width=\"800\" height=\"449\" />\r\n\r\nFRIDAY TRAINING:   This week is a little bit different, so please read it carefully!  Note that there is a choice of classic or skate, and that the classic has an earlier start option for those who can make it.  Please choose either classic or skate, but not both.   When you arrive at P2, park at the stadium area (free) , not in front of the Relais building ($).\r\n\r\n<strong>11:00 Classic Refresher</strong>, for one hour and merging with the 12:00 classic session.   Especially recommended if it is your first ski of the year, or if you are new to the group.  If you can come at 11:00, great!   If not, just come at 12:00.\r\n\r\n<strong>12:00 Classic Continues</strong>, with an assortment of useful and fun drills and tricks on the go, for an hour to two (options to leave after the first hour if it is your first ski of the year or your brain is tired)\r\n\r\n******************************************************************************\r\n\r\n<strong>12:00 - 2:00 :  Skate Skiing:</strong>   Drills, optional videotaping and introductory, short  intervals\r\n\r\n*************************************************************************************\r\n\r\n&nbsp;\r\n\r\n[yop_poll id=\"45\" tr_id=\"\"\" show_results=\"-1\"]\r\n\r\n[yop_poll id=\"46\" tr_id=\"\"\" show_results=\"-1\"]\r\n\r\n[yop_poll id=\"47\" tr_id=\"\"\" show_results=\"-1\"]\r\n\r\n[yop_poll id=\"48\" tr_id=\"\"\" show_results=\"-1\"]','FRIDAY TRAINING JANUARY 8, 2016','','inherit','closed','closed','','2354-revision-v1','','','2016-01-04 10:57:29','2016-01-04 15:57:29','',2354,'https://sofits.ca/2016/01/04/2354-revision-v1/',0,'revision','',0),(2372,7,'2016-01-04 10:59:05','2016-01-04 15:59:05','&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-2355\" src=\"https://sofits.ca/wp-content/uploads/Sofits_Jan-16-2015-1.jpg\" alt=\"Sofits_Jan-16-2015\" width=\"800\" height=\"449\" />\r\n\r\nFRIDAY TRAINING:   This week is a little bit different, so please read it carefully!  Note that there is a choice of classic or skate, and that the classic has an earlier start option for those who can make it.  Please choose either classic or skate, but not both.   When you arrive at P2, park at the stadium area (free) , not in front of the Relais building ($).\r\n\r\n<strong>11:00 Classic Refresher</strong>, for one hour and merging with the 12:00 classic session.   Especially recommended if it is your first ski of the year, or if you are new to the group.  If you can come at 11:00, great!   If not, just come at 12:00.\r\n\r\n<strong>12:00 Classic Continues</strong>, with an assortment of useful and fun drills and tricks on the go, for an hour to two (options to leave after the first hour if it is your first ski of the year or your brain is tired)\r\n\r\n******************************************************************************\r\n\r\n<strong>12:00 - 2:00 :  Skate Skiing:</strong>   Drills, optional videotaping and introductory, short  intervals\r\n\r\n*************************************************************************************\r\n\r\n(EEK!  4 polls!  Go slowly, choose the correct one! )\r\n\r\n[yop_poll id=\"45\" tr_id=\"\"\" show_results=\"-1\"]\r\n\r\n[yop_poll id=\"46\" tr_id=\"\"\" show_results=\"-1\"]\r\n\r\n[yop_poll id=\"47\" tr_id=\"\"\" show_results=\"-1\"]\r\n\r\n[yop_poll id=\"48\" tr_id=\"\"\" show_results=\"-1\"]','FRIDAY TRAINING JANUARY 8, 2016','','inherit','closed','closed','','2354-revision-v1','','','2016-01-04 10:59:05','2016-01-04 15:59:05','',2354,'https://sofits.ca/2016/01/04/2354-revision-v1/',0,'revision','',0),(2395,7,'2016-01-19 16:19:26','2016-01-19 21:19:26','','151230_Sofits01','','inherit','closed','closed','','151230_sofits01','','','2016-01-19 16:19:26','2016-01-19 21:19:26','',0,'https://sofits.ca/wp-content/uploads/151230_Sofits01.jpg',0,'attachment','image/jpeg',0),(2420,7,'2016-01-26 15:47:30','2016-01-26 20:47:30','','Winter Trail-53','','inherit','closed','closed','','winter-trail-53','','','2016-01-26 15:47:30','2016-01-26 20:47:30','',0,'https://sofits.ca/wp-content/uploads/Winter-Trail-53.jpg',0,'attachment','image/jpeg',0),(2446,7,'2022-02-09 15:44:00','2022-02-09 20:44:00','<img class=\"alignnone size-full wp-image-1972\" src=\"https://sofits.ca/wp-content/uploads/150306_Sofits-Skate.jpg\" alt=\"150306_Sofits-Skate\" width=\"800\" height=\"542\">1. Sofits is a cooperative group of active women 50 years and over. All are comfortable on skis and enjoy training together.<br class=\"\">2.&nbsp; Sofits meet from September through March with the specific aim of improving their cross country skiing skills.\n\n3. Sofits is not a ski touring group, although we certainly hope that the training encourages Sofits to organize ski outings on other days of the week.&nbsp; Gatineau Park is open 24/7.\n\n4. We are a diverse group, each training at her own level.&nbsp; There are no speed requirements to join.\n5. Sofits&nbsp; support each other without criticism. This extends to our Facebook groups.&nbsp; Any rude, critical&nbsp; or hostile messages will be deleted immediately and the sender removed from the group.\n\n<strong>During our Friday Easy Ski Outings:\n</strong>\n<ul>\n 	<li>We ask that everyone be ready to start on time, NEITHER EARLY&nbsp; nor LATE.&nbsp; For group unity as well as a healthy warm up, we ask that everyone be willing to start together and ski slowly as a group for the first 20 minutes.&nbsp; After&nbsp; the group warm up, divide into your various groups and ski at your own pace.</li>\n</ul>\n<strong>During our Training&nbsp; Sessions:</strong>\n<ul>\n 	<li>You are encouraged to talk,&nbsp; sing and laugh except while a coach or helper is explaining the workout.</li>\n 	<li>You are encouraged to&nbsp; step quietly aside and watch the others\' antics if an exercise bothers your ankle/back/neck/shoulder/knee/hip/wrist/elbow/sense of decorum.</li>\n 	<li>Grunting and groaning is encouraged during difficult exercises.&nbsp;&nbsp; However, if you simply dislike or disapprove of an exercise, please refrain from saying so during our practice.&nbsp; &nbsp;&nbsp; &nbsp; Feel free to send our coaches an email about it, or talk to them when they are not coaching.</li>\n 	<li>The name \"Sofits\" refers to an inclusive&nbsp; group, not to individual people or activities by a few.&nbsp; All&nbsp; \"<i><b>Sofits</b></i>\" events should be open to the group at large.&nbsp; When a few&nbsp; decide to privately run/ski/swim/hike/bike together, they are called <i><b>friends</b></i>, not&nbsp; Sofits.</li>\n</ul>','MODUS OPERANDI','','future','closed','closed','','modus-operandi','','','2020-03-15 19:17:27','2020-03-15 23:17:27','',0,'https://sofits.ca/?page_id=2446',0,'page','',0),(2447,7,'2016-02-09 15:45:24','2016-02-09 20:45:24','1. Sofits is a cooperative group of active women 50 years and over. All are comfortable on skis and enjoy training together.<br class=\"\" /> 2.  Sofits meet from September through March with the specific aim of improving their cross country skiing skills.\r\n\r\n3. Sofits is not a ski touring group, although we certainly hope that the training encourages Sofits to organize ski outings on other days of the week.  Gatineau Park is open 24/7.\r\n\r\n4.  Sofits meet in fair, foul and bitter weather.  We cancel only if the driving is dangerous ( hurricanes, earthquakes, freezing rain)\r\n5. We are a diverse group, each training at her own level.  There are no speed requirements to join.\r\n6. Sofits  support each other without criticism. This extends to our Facebook groups.  Any rude, critical  or hostile messages will be deleted immediately and the sender removed from the group.\r\n\r\n<strong>During our Friday Sessions:</strong>\r\n<ul>\r\n	<li>You are encouraged to talk,  sing and laugh except while a coach or helper is explaining the workout.</li>\r\n	<li>You are encouraged to  step quietly aside and watch the others\' antics if an exercise bothers your ankle/back/neck/shoulder/knee/hip/wrist/elbow/sense of decorum.</li>\r\n	<li>Grunting and groaning is encouraged during difficult exercises.   However, if you simply dislike or disapprove of an exercise, please refrain from saying so during our practice.       Feel free to send our coaches an email about it, or talk to them when they are not coaching.  Negative comments can poison group dynamics.</li>\r\n	<li>The name \"Sofits\" refers to the group, not to individual people.  All  \"<i><b>Sofits</b></i>\" events should be open to the group at large.  When a few  decide to privately run/ski/swim/hike/bike together, they are called <i><b>friends</b></i>, not  Sofits.</li>\r\n</ul>','MODUS OPERANDI','','inherit','closed','closed','','2446-revision-v1','','','2016-02-09 15:45:24','2016-02-09 20:45:24','',2446,'https://sofits.ca/2016/02/09/2446-revision-v1/',0,'revision','',0),(2448,7,'2016-02-09 15:47:36','2016-02-09 20:47:36',' ','','','publish','closed','closed','','2448','','','2016-02-09 15:47:36','2016-02-09 20:47:36','',0,'https://sofits.ca/2016/02/09/2448/',26,'nav_menu_item','',0),(2451,7,'2016-02-09 15:51:26','2016-02-09 20:51:26','','160126_Sofits-Skate13','','inherit','closed','closed','','160126_sofits-skate13','','','2016-10-17 10:32:09','2016-10-17 14:32:09','',723,'https://sofits.ca/wp-content/uploads/160126_Sofits-Skate13.jpg',0,'attachment','image/jpeg',0),(2452,7,'2016-02-09 15:52:32','2016-02-09 20:52:32','','150208_Trail-36a','','inherit','closed','closed','','150208_trail-36a','','','2016-02-09 15:52:32','2016-02-09 20:52:32','',0,'https://sofits.ca/wp-content/uploads/150208_Trail-36a.jpg',0,'attachment','image/jpeg',0),(2459,7,'2016-02-09 16:09:26','2016-02-09 21:09:26','','160206_Fueling-for-Sport','','inherit','closed','closed','','160206_screen-shot-2016-02-06-at-2-58-34-pm','','','2016-02-09 16:09:50','2016-02-09 21:09:50','',0,'https://sofits.ca/wp-content/uploads/160206_Screen-Shot-2016-02-06-at-2.58.34-PM.png',0,'attachment','image/png',0),(2468,7,'2016-02-11 22:02:34','2016-02-12 03:02:34','','160206_Screen Shot updated','','inherit','closed','closed','','160206_screen-shot-updated','','','2016-02-11 22:02:34','2016-02-12 03:02:34','',0,'https://sofits.ca/wp-content/uploads/160206_Screen-Shot-updated.gif',0,'attachment','image/gif',0),(2481,7,'2016-02-17 19:34:49','2016-02-18 00:34:49','','160121_Asticou-Area01','','inherit','closed','closed','','160121_asticou-area01','','','2016-02-17 19:34:49','2016-02-18 00:34:49','',0,'https://sofits.ca/wp-content/uploads/160121_Asticou-Area01.jpg',0,'attachment','image/jpeg',0),(2612,7,'2016-09-24 10:53:21','2016-09-24 14:53:21','','Fall Leaves','','inherit','closed','closed','','cycle-orleans-57-1577-1578','','','2016-09-24 10:53:34','2016-09-24 14:53:34','',0,'https://sofits.ca/wp-content/uploads/Cycle-Orleans-57-1577-1578-.jpg',0,'attachment','image/jpeg',0),(2618,7,'2016-10-06 14:59:52','2016-10-06 18:59:52','','111011_weeds1','','inherit','closed','closed','','111011_weeds1','','','2016-10-06 14:59:52','2016-10-06 18:59:52','',0,'https://sofits.ca/wp-content/uploads/111011_weeds1.jpg',0,'attachment','image/jpeg',0),(2619,7,'2016-10-06 15:01:49','2016-10-06 19:01:49','','121005_sofits','','inherit','closed','closed','','121005_sofits','','','2016-10-06 15:01:49','2016-10-06 19:01:49','',0,'https://sofits.ca/wp-content/uploads/121005_Sofits.jpg',0,'attachment','image/jpeg',0),(2631,7,'2016-10-14 16:03:26','2016-10-14 20:03:26','','161014_sofits-mulvihill_001503','','inherit','closed','closed','','161014_sofits-mulvihill_001503','','','2016-10-14 16:03:26','2016-10-14 20:03:26','',0,'https://sofits.ca/wp-content/uploads/161014_Sofits-Mulvihill_001503.jpg',0,'attachment','image/jpeg',0),(2638,7,'2016-10-17 10:27:14','2016-10-17 14:27:14','<img class=\"alignnone size-full wp-image-1972\" src=\"https://sofits.ca/wp-content/uploads/150306_Sofits-Skate.jpg\" alt=\"150306_Sofits-Skate\" width=\"800\" height=\"542\" />1. Sofits is a cooperative group of active women 50 years and over. All are comfortable on skis and enjoy training together.<br class=\"\" /> 2.  Sofits meet from September through March with the specific aim of improving their cross country skiing skills.\r\n\r\n3. Sofits is not a ski touring group, although we certainly hope that the training encourages Sofits to organize ski outings on other days of the week.  Gatineau Park is open 24/7.\r\n\r\n4.  Sofits meet in fair, foul and bitter weather.  We cancel only if the driving is dangerous ( hurricanes, earthquakes, freezing rain)\r\n5. We are a diverse group, each training at her own level.  There are no speed requirements to join.\r\n6. Sofits  support each other without criticism. This extends to our Facebook groups.  Any rude, critical  or hostile messages will be deleted immediately and the sender removed from the group.\r\n\r\n<strong>During our Friday Sessions:</strong>\r\n<ul>\r\n 	<li>You are encouraged to talk,  sing and laugh except while a coach or helper is explaining the workout.</li>\r\n 	<li>You are encouraged to  step quietly aside and watch the others\' antics if an exercise bothers your ankle/back/neck/shoulder/knee/hip/wrist/elbow/sense of decorum.</li>\r\n 	<li>Grunting and groaning is encouraged during difficult exercises.   However, if you simply dislike or disapprove of an exercise, please refrain from saying so during our practice.       Feel free to send our coaches an email about it, or talk to them when they are not coaching.  Negative comments can poison group dynamics.</li>\r\n 	<li>The name \"Sofits\" refers to the group, not to individual people.  All  \"<i><b>Sofits</b></i>\" events should be open to the group at large.  When a few  decide to privately run/ski/swim/hike/bike together, they are called <i><b>friends</b></i>, not  Sofits.</li>\r\n</ul>','MODUS OPERANDI','','inherit','closed','closed','','2446-revision-v1','','','2016-10-17 10:27:14','2016-10-17 14:27:14','',2446,'https://sofits.ca/2016/10/17/2446-revision-v1/',0,'revision','',0),(2639,7,'2016-10-17 10:29:18','2016-10-17 14:29:18','<h2><img class=\"alignnone size-full wp-image-2104\" src=\"https://sofits.ca/wp-content/uploads/150925_Sofits10.jpg\" alt=\"150925_Sofits10\" width=\"800\" height=\"600\" />Please comment if you know of other links of general interest.</h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30 and wildly inaccurate.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n\r\n<a href=\"https://skitrails.xcottawa.ca/skitrails_gatineau_park.php\">XCOttawa Gatineau Park Ski Trail Reports </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n\r\n<a href=\"https://weatherspark.com/#!graphs;a=Canada/QC/Chelsea\">Weather Spark</a>\r\n\r\n<a href=\"https://www.theweathernetwork.com/weather/canada/quebec/chelsea\">The Weather Network - Chelsea</a>\r\n\r\n<a href=\"https://weather.gc.ca/radar/index_e.html?id=XFT\">Franktown Radar </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a href=\"https://www.precisionnutrition.com/working-out-when-sick\" target=\"_blank\">Should you exercise when you\'re sick?</a>:  a detailed discussion of pros and cons, including discussion of how to adapt your training when sick.\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2014/05/140530154109.htm\" target=\"_blank\">Quality, not quantity, counts most in exercise, diet</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2014/06/11/judging-badly-how-hard-we-exercise/?_php=true&amp;_type=blogs&amp;_php=true&amp;_type=blogs&amp;ref=health&amp;_r=2&amp;\" target=\"_blank\">Overestimating How Hard We Exercise</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/older-does-not-mean-slower-2/\" target=\"_blank\">Research Shows – Older Does NOT Mean Slower</a>\r\n\r\n<a href=\"https://running.competitor.com/2014/06/training/study-run-faster-to-ride-better_43375\" target=\"_blank\">Run Faster To Ride Better </a>\r\n\r\n<a href=\"https://www.220triathlon.com/training/long-distance/can-heavy-lifting-increase-your-endurance-performance/8724.html\" target=\"_blank\">Can heavy lifting increase your endurance performance?</a>\r\n\r\n<a href=\"https://home.trainingpeaks.com/blog/article/the-1-rule-of-endurance-training?utm_source=tpr&amp;utm_medium=email&amp;utm_content=utb11&amp;utm_campaign=utb\" target=\"_blank\">The #1 Rule of Endurance Training</a>\r\n<a href=\"https://www.sciencedaily.com/releases/2014/06/140605113510.htm\" target=\"_blank\">Molecular secret of short, intense workouts clarified</a>\r\n<p id=\"page-title\"><a href=\"https://www.runnersworld.com/injury-prevention-recovery/hip-weakness-and-knee-pain\" target=\"_blank\">Hip Weakness and Knee Pain</a></p>\r\n\r\n<h3><span style=\"text-decoration: underline; color: #ff0000;\">Some links about the importance of recovery:</span></h3>\r\n<ul>\r\n 	<li>Joe Friel\'s article \"<a href=\"https://thesportfactory.com/site/trainingnews/Fitness_Depends_on_Recovery_257.shtml\" target=\"_blank\">Fitness depends on Recovery</a>\"</li>\r\n 	<li>a cycling article \"<a href=\"https://www.climbbybike.com/cycling-training-and-supercompensation.asp\" target=\"_blank\">Training, resting and supercompensation</a>\"</li>\r\n</ul>\r\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\r\n\r\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;','LINKS','','inherit','closed','closed','','1054-revision-v1','','','2016-10-17 10:29:18','2016-10-17 14:29:18','',1054,'https://sofits.ca/2016/10/17/1054-revision-v1/',0,'revision','',0),(2640,7,'2016-10-17 10:30:27','2016-10-17 14:30:27','<img class=\"alignnone size-full wp-image-846\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg\" alt=\"Wax Bench\" width=\"700\" height=\"467\" />\r\n\r\n&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/Ski-Waxing-Updated-Dec-9-2013.pdf\">SKI WAXING  (thanks, Ila!)</a></strong>','SKI WAXING','','inherit','closed','closed','','2019-revision-v1','','','2016-10-17 10:30:27','2016-10-17 14:30:27','',2019,'https://sofits.ca/2016/10/17/2019-revision-v1/',0,'revision','',0),(2641,7,'2016-10-17 10:31:10','2016-10-17 14:31:10','&nbsp;\r\n\r\nSOME GREAT WOMEN\'S CLASSIC FOOTAGE: <strong> <a href=\"httpss://youtu.be/2pEIyDLh_P0\">httpss://youtu.be/2pEIyDLh_P0</a></strong>\r\n\r\nBEST SITE EVER for HOW-TO SKI VIDEOS of all techniques  <strong><a href=\"https://crosscountryskitechnique.com\">crosscountryskitechnique.com</a></strong>\r\n\r\nGREAT VIDEO of Ski walking and Ski Striding <strong><a href=\"httpss://www.youtube.com/watch?v=LzlGkpAL5ec\">httpss://www.youtube.com/watch?v=LzlGkpAL5ec</a></strong>\r\n\r\nALSO THIS ONE by Local XCOTTAWA  <strong><a href=\"httpss://www.youtube.com/watch?v=P5wvl50bE8Q\">httpss://www.youtube.com/watch?v=P5wvl50bE8Q</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','XCSKI TECHNIQUE','','inherit','closed','closed','','723-revision-v1','','','2016-10-17 10:31:10','2016-10-17 14:31:10','',723,'https://sofits.ca/2016/10/17/723-revision-v1/',0,'revision','',0),(2642,7,'2016-10-17 10:36:59','2016-10-17 14:36:59','','160126_sofits-skate14','','inherit','closed','closed','','160126_sofits-skate14','','','2016-10-17 10:36:59','2016-10-17 14:36:59','',723,'https://sofits.ca/wp-content/uploads/160126_Sofits-Skate14.jpg',0,'attachment','image/jpeg',0),(2643,7,'2016-10-17 10:38:39','2016-10-17 14:38:39','<img class=\"alignnone size-full wp-image-2451\" src=\"https://sofits.ca/wp-content/uploads/160126_Sofits-Skate13.jpg\" alt=\"160126_Sofits-Skate13\" width=\"800\" height=\"549\" />\r\n\r\nSOME GREAT WOMEN\'S CLASSIC FOOTAGE: <strong> <a href=\"httpss://youtu.be/2pEIyDLh_P0\">httpss://youtu.be/2pEIyDLh_P0</a></strong>\r\n\r\nBEST SITE EVER for HOW-TO SKI VIDEOS of all techniques  <strong><a href=\"https://crosscountryskitechnique.com\">crosscountryskitechnique.com</a></strong>\r\n\r\nGREAT VIDEO of Ski walking and Ski Striding <strong><a href=\"httpss://www.youtube.com/watch?v=LzlGkpAL5ec\">httpss://www.youtube.com/watch?v=LzlGkpAL5ec</a></strong>\r\n\r\nALSO THIS ONE by Local XCOTTAWA  <strong><a href=\"httpss://www.youtube.com/watch?v=P5wvl50bE8Q\">httpss://www.youtube.com/watch?v=P5wvl50bE8Q</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','XCSKI TECHNIQUE','','inherit','closed','closed','','723-revision-v1','','','2016-10-17 10:38:39','2016-10-17 14:38:39','',723,'https://sofits.ca/2016/10/17/723-revision-v1/',0,'revision','',0),(2649,7,'2016-10-22 21:13:10','2016-10-23 01:13:10','','OLYMPUS DIGITAL CAMERA','OLYMPUS DIGITAL CAMERA','inherit','closed','closed','','olympus-digital-camera-2','','','2016-10-22 21:13:10','2016-10-23 01:13:10','',0,'https://sofits.ca/wp-content/uploads/151106_Sofits04.jpg',0,'attachment','image/jpeg',0),(2660,7,'2016-10-29 13:53:24','2016-10-29 17:53:24','','161028_sofits02','','inherit','closed','closed','','161028_sofits02','','','2016-10-29 13:53:24','2016-10-29 17:53:24','',0,'https://sofits.ca/wp-content/uploads/161028_Sofits02.jpg',0,'attachment','image/jpeg',0),(2678,7,'2016-11-08 06:42:19','2016-11-08 11:42:19','<span style=\"font-size: large;\"><u><b>Things to know about Nakkertok Ski Club</b></u></span>\r\n\r\n<a href=\"https://www.nakkertok.ca\"><strong>www.nakkertok.ca</strong></a>\r\n\r\n1. Coming from Ottawa driving time is about the same as to Gatineau Park, and less time than some Gatineau Park locations.\r\n\r\n2. Nakkertok has the most reliable grooming in the Ottawa-Gatineau area. Dirk was the chief of grooming at the Olympics in Whistler. Trails are kept regularly groomed unlike Gatineau Park which may (or may not) have only parkways groomed after a weather event.\r\n\r\n3. Nakkertok makes snow as soon as the temperatures are reliably cold, usually early to mid November.   This will be welcome if snow comes late.\r\n\r\n4. The Nakkertok South trails are charming, delightful and some are quite challenging. Think Burma and Pink Lake trail. There are easier and more challenging loops and distances, but all are within a relatively short distance of the parking lot, compared to Gatineau Park.\r\n\r\n5. There is a large, well groomed practice grid (classic and skate) right by the parking lot.\r\n\r\n6. There is a beautiful, large building with picnic tables right near the parking lot. It can be used for picnic lunches, video-analysis, meetings, boot and coat changing, etc. There are cabins a short ski away, and two lit night trails.\r\n\r\n7. There is a wax room with irons and ski forms.\r\n\r\n8. There is snowshoeing on site (usually $7 day fee if you don\'t have a membership)\r\n\r\n9. Nakkertok North is a longer drive and the trails are much more challenging and include backcountry.  Spring skiing in particular, can be amazing there. Thea’s Race is held there in early March.','NAKKERTOK','','publish','closed','closed','','nakkertok','','','2019-09-14 10:50:49','2019-09-14 14:50:49','',0,'https://sofits.ca/?page_id=2678',0,'page','',0),(2679,7,'2016-11-08 06:42:19','2016-11-08 11:42:19',' ','','','publish','closed','closed','','2679','','','2016-11-08 06:42:19','2016-11-08 11:42:19','',0,'https://sofits.ca/2016/11/08/2679/',23,'nav_menu_item','',0),(2680,7,'2016-11-08 06:42:19','2016-11-08 11:42:19','<span style=\"font-size: large;\"><u><b>Nakker - Update: </b></u></span>\r\n\r\nJo-Ann is planning to buy an adult membership for Nakkertok this year.   She expects to ski there on Mondays and possibly Wednesday mornings to work on her stagnating  ski skills and enjoy a change of scenery. If anyone else is interested in joining her, she would welcome company, but Sofits will not be training there this year.  If anyone is wanting a private lesson, this would also be a perfect place for it.\r\n\r\n<span style=\"font-size: large;\"><u><b>Things to know about Nakkertok Ski Club</b></u></span>\r\n\r\n1. Driving time is generally the same as to Gatineau Park, and less time than some Gatineau Park locations.\r\n\r\n2. Nakkertok has the most reliable grooming in the Ottawa-Gatineau area. Dirk was the chief of grooming at the Olympics in Whistler. Trails are kept regularly groomed unlike Gatineau Park which may (or may not) have only parkways groomed after a weather event.\r\n\r\n3. New this year, Nakkertok will have snowmaking for one of the main loops.  This will be welcome if snow comes late as it did last year.\r\n\r\n4. The Nakkertok South trails are charming, delightful and some are quite challenging. Think Burma and Pink Lake trail. There are easier and more challenging loops and distances, but all are within a relatively short distance of the parking lot, compared to Gatineau Park.\r\n\r\n5. There is a large, well groomed practice grid (classic and skate) right by the parking lot.\r\n\r\n6. There is a beautiful, large building with picnic tables right near the parking lot. It can be used for picnic lunches, video-analysis, meetings, boot and coat changing, etc. There are cabins a short ski away, and two lit night trails.\r\n\r\n7. There is snowshoeing on site (usually $7 day fee)\r\n\r\n8. The regular annual membership for under 65 is $135 plus 2 days of volunteer effort. Those over 65 can buy a full membership for just $35.\r\n\r\n9. Nakkertok North is a longer drive and the trails are much more challenging and include backcountry.  Spring skiing in particular, can be amazing there. Thea’s Race is held there in early March.','Nakkertok','','inherit','closed','closed','','2678-revision-v1','','','2016-11-08 06:42:19','2016-11-08 11:42:19','',2678,'https://sofits.ca/2016/11/08/2678-revision-v1/',0,'revision','',0),(2681,7,'2016-11-08 06:42:52','2016-11-08 11:42:52','Jo-Ann is planning to buy an adult membership for Nakkertok this year.   She expects to ski there on Mondays and possibly Wednesday mornings to work on her stagnating  ski skills and enjoy a change of scenery. If anyone else is interested in joining her, she would welcome company, but Sofits will not be training there this year.  If anyone is wanting a private lesson, this would also be a perfect place for it.\r\n\r\n<span style=\"font-size: large;\"><u><b>Things to know about Nakkertok Ski Club</b></u></span>\r\n\r\n1. Driving time is generally the same as to Gatineau Park, and less time than some Gatineau Park locations.\r\n\r\n2. Nakkertok has the most reliable grooming in the Ottawa-Gatineau area. Dirk was the chief of grooming at the Olympics in Whistler. Trails are kept regularly groomed unlike Gatineau Park which may (or may not) have only parkways groomed after a weather event.\r\n\r\n3. New this year, Nakkertok will have snowmaking for one of the main loops.  This will be welcome if snow comes late as it did last year.\r\n\r\n4. The Nakkertok South trails are charming, delightful and some are quite challenging. Think Burma and Pink Lake trail. There are easier and more challenging loops and distances, but all are within a relatively short distance of the parking lot, compared to Gatineau Park.\r\n\r\n5. There is a large, well groomed practice grid (classic and skate) right by the parking lot.\r\n\r\n6. There is a beautiful, large building with picnic tables right near the parking lot. It can be used for picnic lunches, video-analysis, meetings, boot and coat changing, etc. There are cabins a short ski away, and two lit night trails.\r\n\r\n7. There is snowshoeing on site (usually $7 day fee)\r\n\r\n8. The regular annual membership for under 65 is $135 plus 2 days of volunteer effort. Those over 65 can buy a full membership for just $35.\r\n\r\n9. Nakkertok North is a longer drive and the trails are much more challenging and include backcountry.  Spring skiing in particular, can be amazing there. Thea’s Race is held there in early March.','NAKKERTOK','','inherit','closed','closed','','2678-revision-v1','','','2016-11-08 06:42:52','2016-11-08 11:42:52','',2678,'https://sofits.ca/2016/11/08/2678-revision-v1/',0,'revision','',0),(2682,7,'2016-11-08 06:43:18','2016-11-08 11:43:18','Jo-Ann is planning to buy an adult membership for Nakkertok this year.   She expects to ski there once or twice a week to work on her stagnating  ski skills and enjoy a change of scenery. If anyone else is interested in joining her, she would welcome company, but Sofits will not be training there this year.  If anyone is wanting a private lesson, this would also be a perfect place for it.\r\n\r\n<span style=\"font-size: large;\"><u><b>Things to know about Nakkertok Ski Club</b></u></span>\r\n\r\n1. Driving time is generally the same as to Gatineau Park, and less time than some Gatineau Park locations.\r\n\r\n2. Nakkertok has the most reliable grooming in the Ottawa-Gatineau area. Dirk was the chief of grooming at the Olympics in Whistler. Trails are kept regularly groomed unlike Gatineau Park which may (or may not) have only parkways groomed after a weather event.\r\n\r\n3. New this year, Nakkertok will have snowmaking for one of the main loops.  This will be welcome if snow comes late as it did last year.\r\n\r\n4. The Nakkertok South trails are charming, delightful and some are quite challenging. Think Burma and Pink Lake trail. There are easier and more challenging loops and distances, but all are within a relatively short distance of the parking lot, compared to Gatineau Park.\r\n\r\n5. There is a large, well groomed practice grid (classic and skate) right by the parking lot.\r\n\r\n6. There is a beautiful, large building with picnic tables right near the parking lot. It can be used for picnic lunches, video-analysis, meetings, boot and coat changing, etc. There are cabins a short ski away, and two lit night trails.\r\n\r\n7. There is snowshoeing on site (usually $7 day fee)\r\n\r\n8. The regular annual membership for under 65 is $135 plus 2 days of volunteer effort. Those over 65 can buy a full membership for just $35.\r\n\r\n9. Nakkertok North is a longer drive and the trails are much more challenging and include backcountry.  Spring skiing in particular, can be amazing there. Thea’s Race is held there in early March.','NAKKERTOK','','inherit','closed','closed','','2678-revision-v1','','','2016-11-08 06:43:18','2016-11-08 11:43:18','',2678,'https://sofits.ca/2016/11/08/2678-revision-v1/',0,'revision','',0),(2685,7,'2016-11-08 06:53:34','2016-11-08 11:53:34','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Cross Country  Ski Events:</span></span></h1>\r\n<strong><a href=\"https://bright-ideas-software.com/silverspoon/\">Silver Spoon: </a>   Saturday January 28, 2017\r\n</strong>\r\n\r\nOpeongo Loppet: Sunday January 29, 2017\r\n\r\n<strong><a href=\"https://www.winterludetriathlon.ca/\" target=\"_blank\">Winterlude Triathlon:</a></strong>   <strong>Saturday February 4, 2017\r\n</strong>\r\n\r\n<strong><a href=\"https://www.skiloppet.com/?lang=en\" target=\"_blank\">Viking Loppet:</a> Sunday February 26\r\n</strong>\r\n\r\n<strong><a href=\"https://csm-mcs.com/\" target=\"_blank\">Canadian Ski Marathon</a>:</strong>  <strong>February 19 - 21</strong>\r\n\r\n<strong><a href=\"https://www.gatineauloppet.com/?lang=en\" target=\"_blank\">Gatineau Loppet:</a></strong>  <strong>February 26 - 28</strong>\r\n\r\n<strong><a href=\"https://skitourcanada.com/en/2015/10/15/ski-tour-canadas-schedule/\" target=\"_blank\">SKi Tour Canada Schedule</a>:  March 1 (Gatineau), March  2 (Montreal) , March  4&amp;5 (Quebec City</strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES and EVENTS','','inherit','closed','closed','','93-revision-v1','','','2016-11-08 06:53:34','2016-11-08 11:53:34','',93,'https://sofits.ca/2016/11/08/93-revision-v1/',0,'revision','',0),(2686,7,'2016-11-08 06:59:26','2016-11-08 11:59:26','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Cross Country  Ski Events:</span></span></h1>\r\n<strong><a href=\"https://bright-ideas-software.com/silverspoon/\">Silver Spoon: </a>   Saturday January 28, 2017\r\n</strong>\r\n\r\n<a href=\"https://www.opeongonordic.com/annual-loppet/\"><strong>Opeongo Loppet:</strong></a> Sunday January 29, 2017\r\n\r\n<strong><a href=\"https://www.winterludetriathlon.ca/\" target=\"_blank\">Winterlude Triathlon:</a></strong>   <strong>Saturday February 4, 2017\r\n</strong>\r\n\r\n<strong><a href=\"https://www.skiloppet.com/?lang=en\" target=\"_blank\">Viking Loppet:</a> Sunday February 26\r\n</strong>\r\n\r\n<strong><a href=\"https://csm-mcs.com/\" target=\"_blank\">Canadian Ski Marathon</a>:</strong>  <strong>February 19 - 21</strong>\r\n\r\n<strong><a href=\"https://www.gatineauloppet.com/?lang=en\" target=\"_blank\">Gatineau Loppet:</a></strong>  <strong>February 18 - 19\r\n</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES and EVENTS','','inherit','closed','closed','','93-revision-v1','','','2016-11-08 06:59:26','2016-11-08 11:59:26','',93,'https://sofits.ca/2016/11/08/93-revision-v1/',0,'revision','',0),(2687,7,'2016-11-08 06:59:40','2016-11-08 11:59:40','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Cross Country  Ski Events:</span></span></h1>\r\n<strong><a href=\"https://bright-ideas-software.com/silverspoon/\">Silver Spoon: </a>   Saturday January 28, 2017\r\n</strong>\r\n\r\n<a href=\"https://www.opeongonordic.com/annual-loppet/\"><strong>Opeongo Loppet:</strong></a> <strong>Sunday January 29, 2017</strong>\r\n\r\n<strong><a href=\"https://www.winterludetriathlon.ca/\" target=\"_blank\">Winterlude Triathlon:</a></strong>   <strong>Saturday February 4, 2017\r\n</strong>\r\n\r\n<strong><a href=\"https://www.skiloppet.com/?lang=en\" target=\"_blank\">Viking Loppet:</a> Sunday February 26\r\n</strong>\r\n\r\n<strong><a href=\"https://csm-mcs.com/\" target=\"_blank\">Canadian Ski Marathon</a>:</strong>  <strong>February 19 - 21</strong>\r\n\r\n<strong><a href=\"https://www.gatineauloppet.com/?lang=en\" target=\"_blank\">Gatineau Loppet:</a></strong>  <strong>February 18 - 19\r\n</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES and EVENTS','','inherit','closed','closed','','93-revision-v1','','','2016-11-08 06:59:40','2016-11-08 11:59:40','',93,'https://sofits.ca/2016/11/08/93-revision-v1/',0,'revision','',0),(2688,7,'2016-11-08 07:13:14','2016-11-08 12:13:14','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Cross Country  Ski Events:</span></span></h1>\r\n<strong><a href=\"https://bright-ideas-software.com/silverspoon/\">Silver Spoon: </a>   Saturday January 28, 2017\r\n</strong>\r\n\r\n<a href=\"https://www.opeongonordic.com/annual-loppet/\"><strong>Opeongo Loppet:</strong></a> <strong>Sunday January 29, 2017</strong>\r\n\r\n<strong><a href=\"https://www.winterludetriathlon.ca/\" target=\"_blank\">Winterlude Triathlon:</a></strong>   <strong>Saturday February 4, 2017\r\n</strong>\r\n\r\n<strong><a href=\"https://www.skiloppet.com/?lang=en\" target=\"_blank\">Viking Loppet:</a> Sunday February 26\r\n</strong>\r\n\r\n<strong><a href=\"https://csm-mcs.com/\" target=\"_blank\">Canadian Ski Marathon</a>:</strong>  <strong>February 19 - 21</strong>\r\n\r\n<strong><a href=\"https://www.gatineauloppet.com/?lang=en\" target=\"_blank\">Gatineau Loppet:</a></strong>  <strong>February 18 - 19\r\n</strong>\r\n\r\n<strong>Jackrabbit Classic</strong> (Tremblant to Montebello, with choice of 4 distances)  March 11, 2017\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES and EVENTS','','inherit','closed','closed','','93-revision-v1','','','2016-11-08 07:13:14','2016-11-08 12:13:14','',93,'https://sofits.ca/2016/11/08/93-revision-v1/',0,'revision','',0),(2691,7,'2016-11-08 07:26:05','2016-11-08 12:26:05','<h2><img class=\"alignnone size-full wp-image-2104\" src=\"https://sofits.ca/wp-content/uploads/150925_Sofits10.jpg\" alt=\"150925_Sofits10\" width=\"800\" height=\"600\" />Please comment if you know of other links of general interest.</h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30 and wildly inaccurate.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n\r\n<a href=\"https://skitrails.xcottawa.ca/skitrails_gatineau_park.php\">XCOttawa Gatineau Park Ski Trail Reports </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n\r\n<a href=\"https://weatherspark.com/#!graphs;a=Canada/QC/Chelsea\">Weather Spark</a>\r\n\r\n<a href=\"https://www.theweathernetwork.com/weather/canada/quebec/chelsea\">The Weather Network - Chelsea</a>\r\n\r\n<a href=\"https://weather.gc.ca/radar/index_e.html?id=XFT\">Franktown Radar </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a href=\"https://www.precisionnutrition.com/working-out-when-sick\" target=\"_blank\">Should you exercise when you\'re sick?</a>:  a detailed discussion of pros and cons, including discussion of how to adapt your training when sick.\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2014/05/140530154109.htm\" target=\"_blank\">Quality, not quantity, counts most in exercise, diet</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2014/06/11/judging-badly-how-hard-we-exercise/?_php=true&amp;_type=blogs&amp;_php=true&amp;_type=blogs&amp;ref=health&amp;_r=2&amp;\" target=\"_blank\">Overestimating How Hard We Exercise</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/older-does-not-mean-slower-2/\" target=\"_blank\">Research Shows – Older Does NOT Mean Slower</a>\r\n\r\n<a href=\"https://running.competitor.com/2014/06/training/study-run-faster-to-ride-better_43375\" target=\"_blank\">Run Faster To Ride Better </a>\r\n\r\n<a href=\"https://www.220triathlon.com/training/long-distance/can-heavy-lifting-increase-your-endurance-performance/8724.html\" target=\"_blank\">Can heavy lifting increase your endurance performance?</a>\r\n\r\n<a href=\"https://home.trainingpeaks.com/blog/article/the-1-rule-of-endurance-training?utm_source=tpr&amp;utm_medium=email&amp;utm_content=utb11&amp;utm_campaign=utb\" target=\"_blank\">The #1 Rule of Endurance Training</a>\r\n<a href=\"https://www.sciencedaily.com/releases/2014/06/140605113510.htm\" target=\"_blank\">Molecular secret of short, intense workouts clarified</a>\r\n<p id=\"page-title\"><a href=\"https://www.runnersworld.com/injury-prevention-recovery/hip-weakness-and-knee-pain\" target=\"_blank\">Hip Weakness and Knee Pain</a></p>\r\n\r\n<h3><span style=\"text-decoration: underline; color: #ff0000;\">Some links about the importance of recovery:</span></h3>\r\n<ul>\r\n 	<li>Joe Friel\'s article \"<a href=\"https://thesportfactory.com/site/trainingnews/Fitness_Depends_on_Recovery_257.shtml\" target=\"_blank\">Fitness depends on Recovery</a>\"</li>\r\n 	<li>a cycling article \"<a href=\"https://www.climbbybike.com/cycling-training-and-supercompensation.asp\" target=\"_blank\">Training, resting and supercompensation</a>\"</li>\r\n</ul>\r\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\r\n\r\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>BOOKS</strong>\r\n\r\n<em><strong>Books About Running: (Do you need extra motivation to get out the door for that run?  )</strong></em>\r\n\r\nBorn to Run - McDougall  (loved this book, it kindled an urge to resume  running  after being injured)\r\n\r\nEat and Run - Jurek ( same characters, different author,  seemed like  a companion book to Born to Run)\r\n\r\nWhy I Run - Sutcliffe (local journalist, enthusiastic and self-styled -\"ordinary\" runner.)\r\n\r\nRunning with the Mind of Meditation - Mipham (interesting ideas about the different stages runners go through)\r\n\r\nThe Grace to Race - Sister Madonna Buder (not a literary masterpiece but an inspiring tale  of the octogenarian nun who competes in Ironmen.)\r\n\r\n<em><strong>Books About Training, Exercise, and Aging Well:</strong></em>\r\n\r\nCross Training - Fitzgerald (Thanks Pat - just spent the weekend reading this  - great book!  If you read only one training book, read this.)\r\n\r\nCycling Past 50 - Friel (all of his books are highly recommended, but perhaps this  is most relevant to our group)\r\n\r\nTriathlete\'s Training Bible - Friel\r\n\r\nCyclists\'s Training Bible - Friel\r\n\r\nTotal Heart Rate Training - Friel\r\n\r\nRun: Running by Feel - Fitzgerald (many AHA! moments in this book, but learn to train before you read it).\r\n\r\nYounger Next Year: Crowley (lots of sensible advice, easily read, thanks Susan!)\r\n\r\nWhich Came First Cardio or Weights - Hutchison (a myth buster)\r\n\r\nThe Cure for Everything - Caulfield (in the same vein as the previous book, but not just exercise)\r\n\r\n<em><strong>Food and Healthy Eating:</strong></em> Many of these books are from opposing corners of the kitchen, so to speak, but it was interesting to see what they actually agreed on!\r\n\r\nThe Omnivore\'s Dilemma - Pollan (the book that launched me on this journey - a must read!  I love his writing. Thank you Susan)\r\n\r\nThe China Study - Campbell\r\n\r\nWhat to Eat - Nestle ( a thorough  analysis - usually scathing -  of all the food you will encounter in a food store.)\r\n\r\nDiet For a Small Planet - Lappé ( not a new book - you either have read this or must read it)\r\n\r\nWhy We Get Fat ( you don\'t want to know what you are eating)\r\n\r\nEat and Run - Jurek\r\n\r\nPaleo Diet - Cordain/Friel\r\n\r\nFood Rules -  Pollan (a simple guide to eating healthily)\r\n\r\nWheat Belly - Davis\r\n\r\nCooked - Pollan (thanks again, Susan, an inspiring and entertaining book! ).\r\n\r\nWild Fermentation - Katz (how to bring healthy microbes back into our modern lives)\r\n\r\n<em><strong>Nature and Health</strong></em><em><strong>  </strong></em>We all know that exercise is more fun outdoors.  These two books confirm just HOW important it  is to our health.\r\n\r\nThe Nature Principle - Louv (\"why we need a botanical sense of place\", \"what if we take pride in our diverse and fascinating bioregion\", \"knowing who you are by where you are\" - \"the garden creates the gardener \". This book offers hope in the face of all the terrible things that are happening to our natural world.\r\n\r\nYour Brain on Nature - Selhub/Logan (scientific evidence for things you already know from experience).','LINKS','','inherit','closed','closed','','1054-revision-v1','','','2016-11-08 07:26:05','2016-11-08 12:26:05','',1054,'https://sofits.ca/2016/11/08/1054-revision-v1/',0,'revision','',0),(2692,7,'2016-11-08 07:26:23','2016-11-08 12:26:23','<h2><img class=\"alignnone size-full wp-image-2104\" src=\"https://sofits.ca/wp-content/uploads/150925_Sofits10.jpg\" alt=\"150925_Sofits10\" width=\"800\" height=\"600\" />Please comment if you know of other links of general interest.</h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30 and wildly inaccurate.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n\r\n<a href=\"https://skitrails.xcottawa.ca/skitrails_gatineau_park.php\">XCOttawa Gatineau Park Ski Trail Reports </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n\r\n<a href=\"https://weatherspark.com/#!graphs;a=Canada/QC/Chelsea\">Weather Spark</a>\r\n\r\n<a href=\"https://www.theweathernetwork.com/weather/canada/quebec/chelsea\">The Weather Network - Chelsea</a>\r\n\r\n<a href=\"https://weather.gc.ca/radar/index_e.html?id=XFT\">Franktown Radar </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a href=\"https://www.precisionnutrition.com/working-out-when-sick\" target=\"_blank\">Should you exercise when you\'re sick?</a>:  a detailed discussion of pros and cons, including discussion of how to adapt your training when sick.\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2014/05/140530154109.htm\" target=\"_blank\">Quality, not quantity, counts most in exercise, diet</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2014/06/11/judging-badly-how-hard-we-exercise/?_php=true&amp;_type=blogs&amp;_php=true&amp;_type=blogs&amp;ref=health&amp;_r=2&amp;\" target=\"_blank\">Overestimating How Hard We Exercise</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/older-does-not-mean-slower-2/\" target=\"_blank\">Research Shows – Older Does NOT Mean Slower</a>\r\n\r\n<a href=\"https://running.competitor.com/2014/06/training/study-run-faster-to-ride-better_43375\" target=\"_blank\">Run Faster To Ride Better </a>\r\n\r\n<a href=\"https://www.220triathlon.com/training/long-distance/can-heavy-lifting-increase-your-endurance-performance/8724.html\" target=\"_blank\">Can heavy lifting increase your endurance performance?</a>\r\n\r\n<a href=\"https://home.trainingpeaks.com/blog/article/the-1-rule-of-endurance-training?utm_source=tpr&amp;utm_medium=email&amp;utm_content=utb11&amp;utm_campaign=utb\" target=\"_blank\">The #1 Rule of Endurance Training</a>\r\n<a href=\"https://www.sciencedaily.com/releases/2014/06/140605113510.htm\" target=\"_blank\">Molecular secret of short, intense workouts clarified</a>\r\n<p id=\"page-title\"><a href=\"https://www.runnersworld.com/injury-prevention-recovery/hip-weakness-and-knee-pain\" target=\"_blank\">Hip Weakness and Knee Pain</a></p>\r\n\r\n<h3><span style=\"text-decoration: underline; color: #ff0000;\">Some links about the importance of recovery:</span></h3>\r\n<ul>\r\n 	<li>Joe Friel\'s article \"<a href=\"https://thesportfactory.com/site/trainingnews/Fitness_Depends_on_Recovery_257.shtml\" target=\"_blank\">Fitness depends on Recovery</a>\"</li>\r\n 	<li>a cycling article \"<a href=\"https://www.climbbybike.com/cycling-training-and-supercompensation.asp\" target=\"_blank\">Training, resting and supercompensation</a>\"</li>\r\n</ul>\r\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\r\n\r\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>BOOKS</strong>\r\n\r\n<em><strong>Books About Running: (Do you need extra motivation to get out the door for that run?  )</strong></em>\r\n\r\nBorn to Run - McDougall  (loved this book, it kindled an urge to resume  running  after being injured)\r\n\r\nEat and Run - Jurek ( same characters, different author,  seemed like  a companion book to Born to Run)\r\n\r\nWhy I Run - Sutcliffe (local journalist, enthusiastic and self-styled -\"ordinary\" runner.)\r\n\r\nRunning with the Mind of Meditation - Mipham (interesting ideas about the different stages runners go through)\r\n\r\nThe Grace to Race - Sister Madonna Buder (not a literary masterpiece but an inspiring tale  of the octogenarian nun who competes in Ironmen.)\r\n\r\n<em><strong>Books About Training, Exercise, and Aging Well:</strong></em>\r\n\r\nCross Training - Fitzgerald (Thanks Pat - just spent the weekend reading this  - great book!  If you read only one training book, read this.)\r\n\r\nCycling Past 50 - Friel (all of his books are highly recommended, but perhaps this  is most relevant to our group)\r\n\r\nTriathlete\'s Training Bible - Friel\r\n\r\nCyclists\'s Training Bible - Friel\r\n\r\nTotal Heart Rate Training - Friel\r\n\r\nRun: Running by Feel - Fitzgerald (many AHA! moments in this book, but learn to train before you read it).\r\n\r\nYounger Next Year: Crowley (lots of sensible advice, easily read, thanks Susan!)\r\n\r\nWhich Came First Cardio or Weights - Hutchison (a myth buster)\r\n\r\nThe Cure for Everything - Caulfield (in the same vein as the previous book, but not just exercise)\r\n\r\n<em><strong>Food and Healthy Eating:</strong></em> Many of these books are from opposing corners of the kitchen, so to speak, but it was interesting to see what they actually agreed on!\r\n\r\nThe Omnivore\'s Dilemma - Pollan (the book that launched me on this journey - a must read!  I love his writing. Thank you Susan)\r\n\r\nThe China Study - Campbell\r\n\r\nWhat to Eat - Nestle ( a thorough  analysis - usually scathing -  of all the food you will encounter in a food store.)\r\n\r\nDiet For a Small Planet - Lappé ( not a new book - you either have read this or must read it)\r\n\r\nWhy We Get Fat ( you don\'t want to know what you are eating)\r\n\r\nEat and Run - Jurek\r\n\r\nPaleo Diet - Cordain/Friel\r\n\r\nFood Rules -  Pollan (a simple guide to eating healthily)\r\n\r\nWheat Belly - Davis\r\n\r\nCooked - Pollan (thanks again, Susan, an inspiring and entertaining book! ).\r\n\r\nWild Fermentation - Katz (how to bring healthy microbes back into our modern lives)\r\n\r\n<em><strong>Nature and Health</strong></em><em><strong>  </strong></em>We all know that exercise is more fun outdoors.  These two books confirm just HOW important it  is to our health.\r\n\r\nThe Nature Principle - Louv (\"why we need a botanical sense of place\", \"what if we take pride in our diverse and fascinating bioregion\", \"knowing who you are by where you are\" - \"the garden creates the gardener \". This book offers hope in the face of all the terrible things that are happening to our natural world.\r\n\r\nYour Brain on Nature - Selhub/Logan (scientific evidence for things you already know from experience).','LINKS and BOOKS','','inherit','closed','closed','','1054-revision-v1','','','2016-11-08 07:26:23','2016-11-08 12:26:23','',1054,'https://sofits.ca/2016/11/08/1054-revision-v1/',0,'revision','',0),(2693,7,'2016-11-08 07:30:47','2016-11-08 12:30:47','<strong>(We have used this system for a few years, but may or may not use it in 2019. )</strong>\r\n\r\n<strong>WHICH SKI GROUP ARE YOU?</strong>\r\n\r\nWe welcome skiers of all levels providing you are comfortable on skis, and can ski in control on downhill sections.\r\n\r\nFor group skiing and for our workouts, it is important to ski with a compatible group.  Here are some guidelines to help you choose. You may fall somewhere between two groups, and it may even change from week to week. If you are unsure, start with an easier group and see how it works out. Although fitness requires consistency and working outside your comfort zone at times, if you are in too tough a group, you will be exhausted or discouraged.   If you regularly ski above your comfort level, your fitness may not im<span class=\"text_exposed_show\">prove and you have an excellent chance of getting injured or catching whatever bug is going around.\r\n</span>\r\n\r\n<span class=\"text_exposed_show\">. </span>\r\n<div class=\"text_exposed_show\">\r\n\r\n<strong>GREEN: (Mainly parkway skiing, trail 50 and Ridge Road, depending on snow conditions)</strong>\r\nGreen group is intended to build basic ski fitness and to acquire experience skiing on non technical trails. You may be green if one or more  of the following apply,\r\n\r\nA typical ski would be 13 K or less\r\n\r\nYou are a new runner, or a non-runner.\r\nYou cycle mostly on the flats, or very infrequently\r\nYour main love is swimming\r\nYou exercise around 5 or fewer hours each week.\r\nYou spent much of the summer on a deck chair\r\nYou ski 2 or fewer  times a week in the winter\r\nYou are feeling stressed or unusually tired\r\nYou are nursing an injury.\r\nYou were ill during the previous week(s).\r\n\r\n&nbsp;\r\n\r\n<strong>BLUE: (Will ski on any classic or skate trail in the park, depending on conditions.  May possibly go back country)</strong>\r\nYou may be blue if\r\n\r\nYou comfortably ski 15 - 20 K on an average dayYou are fit\r\nYou regularly run, or cycle, often on hilly terrain.\r\nYou train 5 -6 days a week, year round\r\nYou generally train around 5 – 10 hours each week (and occasionally more)\r\nYou have no health concerns about raising your heart rate during intensity training\r\nYou like to break a sweat and challenge yourself .\r\nYou ski 3 or more times each week.\r\nYou may or may not be interested in taking part in Ski Loppets or the Ski Marathon.\r\n\r\n<strong>RED: (Will ski on any classic or skate trail in the park, in a range of conditions. May possibly go back country )</strong>\r\nYou may be red if\r\n\r\nYou usually ski over 20K an an average ski dayYou are very fit\r\nYou are driven to compete, either in races or against yourself\r\nYou have a concrete and measurable goal (“to improve” is too vague!)\r\nYou are motivated to spend time working within your own intensity zones.\r\nYou are motivated to train alone when necessary.\r\nYou enjoy working on incremental technical improvements, and relish being videotaped\r\nYou are motivated to measure and keep track of your workouts\r\nYou enjoy working on speed, learning new skills and pushing the envelope\r\nYou ski 4 – 6 times a week and put other activities aside to get out on snow.\r\nYou generally train between 7 and 14 hours a week (and occasionally more).\r\n\r\n</div>','GREEN BLUE RED','','publish','closed','closed','','green-blue-red','','','2019-10-16 19:16:23','2019-10-16 23:16:23','',0,'https://sofits.ca/?page_id=2693',0,'page','',0),(2694,7,'2016-11-08 07:30:47','2016-11-08 12:30:47',' ','','','publish','closed','closed','','2694','','','2016-11-08 07:30:47','2016-11-08 12:30:47','',0,'https://sofits.ca/2016/11/08/2694/',24,'nav_menu_item','',0),(2695,7,'2016-11-08 07:30:47','2016-11-08 12:30:47','<strong>WHICH FRIDAY TRAINING GROUP ARE YOU?</strong>\r\n\r\nSome guidelines to help you choose. You may fall somewhere between two groups, and may occasionally need to move down a group on a tiring week. If you are unsure, start with an easier group and see how it works out. Although you need to work outside your comfort zone at times, if you are in too tough a group, you will be exhausted the following day, your fitness will not im<span class=\"text_exposed_show\">prove and you have a good chance of getting injured. </span>\r\n<div class=\"text_exposed_show\">\r\n\r\n<strong>GREEN:</strong>\r\nOn Fridays this group will finish the workout with a self-monitored, hilly ski walk focusing on technique &amp; effort. Green group is intended to build basic ski fitness. You may be green if,\r\n\r\nYou are a non-runner.\r\nYou cycle mostly on the flats.\r\nYou are unable to attend regularly\r\nYour main love is swimming\r\nYou exercise around 5 or fewer hours each week.\r\nYou spent much of the summer on a deck chair\r\nYou ski 1-3 times a week in the winter\r\nYou are feeling stressed or unusually tired\r\nYou are nursing an injury.\r\nYou were ill during the previous week(s).\r\n\r\n<strong>BLUE:</strong>\r\nOn Fridays this group will finish the workout with a structured set of hillwork. You may be blue if\r\n\r\nYou are fit\r\nYou regularly run, or cycle, sometimes on hilly terrain.\r\nYou train 5 -6 days a week, year round\r\nYou generally train around 5 – 10 hours each week (and occasionally more)\r\nYou have no health concerns about raising your heart rate during intensity training\r\nYou like to break a sweat and challenge yourself .\r\nYou ski 3 or more times a week.\r\nYou may or may not be interested in taking part in Ski Loppets or the Ski Marathon.\r\n\r\n<strong>RED:</strong>\r\nOn Fridays this group will finish the workout with a slightly more demanding set of hillwork. You may be red if\r\n\r\nYou are very fit\r\nYou are driven to compete, either in races or against yourself\r\nYou have a concrete and measurable goal (“to improve” is too vague!)\r\nYou are motivated to spend time working within your own intensity zones.\r\nYou are motivated to train alone when necessary.\r\nYou enjoy working on incremental technical improvements, and relish being videotaped\r\nYou are motivated to measure and keep track of your workouts\r\nYou enjoy working on speed, learning new skills and pushing the envelope\r\nYou ski 4 – 6 times a week and put other activities aside to get out on snow.\r\nYou generally train between 7 and 14 hours a week (and occasionally more).\r\n\r\n</div>','GREEN BLUE RED','','inherit','closed','closed','','2693-revision-v1','','','2016-11-08 07:30:47','2016-11-08 12:30:47','',2693,'https://sofits.ca/2016/11/08/2693-revision-v1/',0,'revision','',0),(2700,7,'2016-11-08 07:37:59','2016-11-08 12:37:59','<img class=\"alignnone size-full wp-image-1972\" src=\"https://sofits.ca/wp-content/uploads/150306_Sofits-Skate.jpg\" alt=\"150306_Sofits-Skate\" width=\"800\" height=\"542\" />1. Sofits is a cooperative group of active women 50 years and over. All are comfortable on skis and enjoy training together.<br class=\"\" /> 2.  Sofits meet from September through March with the specific aim of improving their cross country skiing skills.\r\n\r\n3. Sofits is not a ski touring group, although we certainly hope that the training encourages Sofits to organize ski outings on other days of the week.  Gatineau Park is open 24/7.\r\n\r\n4.  Sofits meet in fair, foul and bitter weather.  We cancel only if conditions are dangerous ( hurricanes, earthquakes, freezing rain)\r\n5. We are a diverse group, each training at her own level.  There are no speed requirements to join.\r\n6. Sofits  support each other without criticism. This extends to our Facebook groups.  Any rude, critical  or hostile messages will be deleted immediately and the sender removed from the group.\r\n\r\n<strong>During our Friday Sessions:</strong>\r\n<ul>\r\n 	<li>You are encouraged to talk,  sing and laugh except while a coach or helper is explaining the workout.</li>\r\n 	<li>You are encouraged to  step quietly aside and watch the others\' antics if an exercise bothers your ankle/back/neck/shoulder/knee/hip/wrist/elbow/sense of decorum.</li>\r\n 	<li>Grunting and groaning is encouraged during difficult exercises.   However, if you simply dislike or disapprove of an exercise, please refrain from saying so during our practice.       Feel free to send our coaches an email about it, or talk to them when they are not coaching.  Negative comments can poison group dynamics.</li>\r\n 	<li>The name \"Sofits\" refers to the group, not to individual people.  All  \"<i><b>Sofits</b></i>\" events should be open to the group at large.  When a few  decide to privately run/ski/swim/hike/bike together, they are called <i><b>friends</b></i>, not  Sofits.</li>\r\n</ul>','MODUS OPERANDI','','inherit','closed','closed','','2446-revision-v1','','','2016-11-08 07:37:59','2016-11-08 12:37:59','',2446,'https://sofits.ca/2016/11/08/2446-revision-v1/',0,'revision','',0),(2711,7,'2016-11-14 08:37:41','2016-11-14 13:37:41','','161029_favorite-beech-and-fog_0025','','inherit','closed','closed','','161029_favorite-beech-and-fog_0025','','','2016-11-14 08:37:41','2016-11-14 13:37:41','',0,'https://sofits.ca/wp-content/uploads/161029_Favorite-Beech-and-Fog_0025.jpg',0,'attachment','image/jpeg',0),(2717,7,'2016-11-18 17:42:52','2016-11-18 22:42:52','','151124_first-ski01','','inherit','closed','closed','','151124_first-ski01','','','2016-11-18 17:42:52','2016-11-18 22:42:52','',0,'https://sofits.ca/wp-content/uploads/151124_First-Ski01.jpg',0,'attachment','image/jpeg',0),(2723,7,'2016-11-19 08:27:10','2016-11-19 13:27:10','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2,  ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">Be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds. </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just walking or running with poles, it doesn’t count ! Here is what ski striding/ski-bounding looks like:\r\n</span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and an impressive variety of strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: skiers usually do not use pacing as runners do, as  snow conditions are highly variable )</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before folding yourself into your car for a long drive home. </span></span></span></span>','ABOUT SOFITS\' WORKOUTS','','inherit','closed','closed','','346-revision-v1','','','2016-11-19 08:27:10','2016-11-19 13:27:10','',346,'https://sofits.ca/2016/11/19/346-revision-v1/',0,'revision','',0),(2724,7,'2016-11-19 08:28:58','2016-11-19 13:28:58','<img class=\"alignnone size-full wp-image-846\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg\" alt=\"Wax Bench\" width=\"700\" height=\"467\" />\r\n\r\n&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/Ski-Waxing-Updated-Dec-9-2013.pdf\">PDF File  on SKI WAXING  (thanks, Ila!)</a></strong>','SKI WAXING','','inherit','closed','closed','','2019-revision-v1','','','2016-11-19 08:28:58','2016-11-19 13:28:58','',2019,'https://sofits.ca/2016/11/19/2019-revision-v1/',0,'revision','',0),(2728,7,'2016-11-19 09:58:46','2016-11-19 14:58:46','<img class=\"alignnone size-full wp-image-846\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg\" alt=\"Wax Bench\" width=\"700\" height=\"467\" />\n\n&nbsp;\n\n<span style=\"color: #ff00ff;\"><strong><a style=\"color: #ff00ff;\" href=\"https://sofits.ca/wp-content/uploads/Ski-Waxing-Updated-Dec-9-2013.pdf\">PDF File  on SKI WAXING  (thanks, Ila!)</a></strong></span>','SKI WAXING','','inherit','closed','closed','','2019-autosave-v1','','','2016-11-19 09:58:46','2016-11-19 14:58:46','',2019,'https://sofits.ca/2016/11/19/2019-autosave-v1/',0,'revision','',0),(2729,7,'2016-11-19 09:59:26','2016-11-19 14:59:26','<img class=\"alignnone size-full wp-image-846\" src=\"https://sofits.ca/wp-content/uploads/2013/11/Wax-Bench_0001.jpg\" alt=\"Wax Bench\" width=\"700\" height=\"467\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #0000ff;\"><strong><a style=\"color: #0000ff;\" href=\"https://sofits.ca/wp-content/uploads/Ski-Waxing-Updated-Dec-9-2013.pdf\">PDF File  on SKI WAXING  (thanks, Ila!)</a></strong></span>','SKI WAXING','','inherit','closed','closed','','2019-revision-v1','','','2016-11-19 09:59:26','2016-11-19 14:59:26','',2019,'https://sofits.ca/2016/11/19/2019-revision-v1/',0,'revision','',0),(2735,7,'2016-11-22 17:15:49','2016-11-22 22:15:49','','161121_ski10','','inherit','closed','closed','','161121_ski10','','','2016-11-22 17:15:49','2016-11-22 22:15:49','',0,'https://sofits.ca/wp-content/uploads/161121_Ski10.jpg',0,'attachment','image/jpeg',0),(2744,7,'2016-11-29 12:16:30','2016-11-29 17:16:30','','161127_snow-report05','','inherit','closed','closed','','161127_snow-report05','','','2016-11-29 12:16:30','2016-11-29 17:16:30','',0,'https://sofits.ca/wp-content/uploads/161127_Snow-Report05.jpg',0,'attachment','image/jpeg',0),(2758,7,'2016-12-03 09:11:06','2016-12-03 14:11:06','','150306_sofits-skate','','inherit','closed','closed','','150306_sofits-skate-2','','','2016-12-03 09:11:06','2016-12-03 14:11:06','',0,'https://sofits.ca/wp-content/uploads/150306_Sofits-Skate-1.jpg',0,'attachment','image/jpeg',0),(2766,7,'2016-12-08 10:38:16','2016-12-08 15:38:16','','161206_North-Loop10','','inherit','closed','closed','','161206_north-loop10','','','2016-12-08 10:38:16','2016-12-08 15:38:16','',0,'https://sofits.ca/wp-content/uploads/161206_North-Loop10.jpg',0,'attachment','image/jpeg',0),(2774,7,'2016-12-12 11:36:08','2016-12-12 16:36:08','','041207','','inherit','closed','closed','','041207','','','2016-12-12 11:36:08','2016-12-12 16:36:08','',0,'https://sofits.ca/wp-content/uploads/041207.jpg',0,'attachment','image/jpeg',0),(2775,7,'2016-12-12 11:37:08','2016-12-12 16:37:08','','060323a','','inherit','closed','closed','','060323a','','','2016-12-12 11:37:08','2016-12-12 16:37:08','',0,'https://sofits.ca/wp-content/uploads/060323a.jpg',0,'attachment','image/jpeg',0),(2776,7,'2016-12-12 11:37:40','2016-12-12 16:37:40','','060302-2','','inherit','closed','closed','','060302-2','','','2016-12-12 11:37:40','2016-12-12 16:37:40','',0,'https://sofits.ca/wp-content/uploads/060302-2.jpg',0,'attachment','image/jpeg',0),(2777,7,'2016-12-12 11:42:49','2016-12-12 16:42:49','','110119_EtienneBrule','','inherit','closed','closed','','110119_etiennebrule','','','2016-12-12 11:42:49','2016-12-12 16:42:49','',0,'https://sofits.ca/wp-content/uploads/110119_EtienneBrule.jpg',0,'attachment','image/jpeg',0),(2789,7,'2016-12-17 14:17:47','2016-12-17 19:17:47','','070203','','inherit','closed','closed','','070203','','','2016-12-17 14:17:47','2016-12-17 19:17:47','',0,'https://sofits.ca/wp-content/uploads/070203.jpg',0,'attachment','image/jpeg',0),(2811,7,'2017-01-18 07:40:53','2017-01-18 12:40:53','','170110_Gossip02_1','','inherit','closed','closed','','170110_gossip02_1','','','2017-01-18 07:40:53','2017-01-18 12:40:53','',0,'https://sofits.ca/wp-content/uploads/170110_Gossip02_1.jpg',0,'attachment','image/jpeg',0),(2814,7,'2017-01-22 19:15:57','2017-01-23 00:15:57','','160120_Pink-Lake04','','inherit','closed','closed','','160120_pink-lake04','','','2017-01-22 19:15:57','2017-01-23 00:15:57','',0,'https://sofits.ca/wp-content/uploads/160120_Pink-Lake04.jpg',0,'attachment','image/jpeg',0),(2822,7,'2017-02-02 09:36:35','2017-02-02 14:36:35','','170131_Yurt_0001','','inherit','closed','closed','','170131_yurt_0001','','','2017-02-02 09:36:35','2017-02-02 14:36:35','',0,'https://sofits.ca/wp-content/uploads/170131_Yurt_0001.jpg',0,'attachment','image/jpeg',0),(2825,7,'2017-02-06 15:12:33','2017-02-06 20:12:33','','170205_Snowy-Classic_0018','','inherit','closed','closed','','170205_snowy-classic_0018','','','2017-02-06 15:12:33','2017-02-06 20:12:33','',0,'https://sofits.ca/wp-content/uploads/170205_Snowy-Classic_0018.jpg',0,'attachment','image/jpeg',0),(2832,7,'2017-02-11 20:06:25','2017-02-12 01:06:25','','150228_Beautiful-Train-Bed-Ski','','inherit','closed','closed','','150228_beautiful-train-bed-ski','','','2017-02-11 20:06:25','2017-02-12 01:06:25','',0,'https://sofits.ca/wp-content/uploads/150228_Beautiful-Train-Bed-Ski.jpg',0,'attachment','image/jpeg',0),(2837,7,'2017-02-22 12:09:49','2017-02-22 17:09:49','','160315_Foggy-Skate06','','inherit','closed','closed','','160315_foggy-skate06','','','2017-02-22 12:09:49','2017-02-22 17:09:49','',0,'https://sofits.ca/wp-content/uploads/160315_Foggy-Skate06.jpg',0,'attachment','image/jpeg',0),(2844,7,'2017-03-01 11:24:06','2017-03-01 16:24:06','','170224_Sofits','','inherit','closed','closed','','170224_sofits','','','2017-03-01 11:24:06','2017-03-01 16:24:06','',0,'https://sofits.ca/wp-content/uploads/170224_Sofits.jpg',0,'attachment','image/jpeg',0),(2848,7,'2017-03-09 21:39:58','2017-03-10 02:39:58','','170305_Cold-Skate-P17_0007','','inherit','closed','closed','','170305_cold-skate-p17_0007','','','2017-03-09 21:39:58','2017-03-10 02:39:58','',0,'https://sofits.ca/wp-content/uploads/170305_Cold-Skate-P17_0007.jpg',0,'attachment','image/jpeg',0),(2852,7,'2017-03-13 15:55:37','2017-03-13 19:55:37','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2,  ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">Be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds.Ski Striding in the fall and classic or skate skiing when the snow arrives.\r\n</span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just walking or running with poles, it doesn’t count ! Here is what ski striding/ski-bounding looks like:\r\n</span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and an impressive variety of strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: skiers usually do not use pacing as runners do, as  snow conditions are highly variable )</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before folding yourself into your car for a long drive home. </span></span></span></span>','ABOUT SOFITS\' WORKOUTS','','inherit','closed','closed','','346-revision-v1','','','2017-03-13 15:55:37','2017-03-13 19:55:37','',346,'https://sofits.ca/2017/03/13/346-revision-v1/',0,'revision','',0),(2879,7,'2019-10-16 19:15:33','2019-10-16 23:15:33','<strong>(We have used this system for a few years, but may or may not use it in 2019. )</strong>\n\n<strong>WHICH SKI GROUP ARE YOU?</strong>\n\nWe welcome skiers of all levels providing you are comfortable on skis, and can ski in control on downhill sections.\n\nFor group skiing and for our workouts, it is important to ski with a compatible group.  Here are some guidelines to help you choose. You may fall somewhere between two groups, and it may even change from week to week. If you are unsure, start with an easier group and see how it works out. Although fitness requires consistency and working outside your comfort zone at times, if you are in too tough a group, you will be exhausted or discouraged.   If you regularly ski above your comfort level, your fitness may not im<span class=\"text_exposed_show\">prove and you have an excellent chance of getting injured or catching whatever bug is going around.\n</span>\n\n<span class=\"text_exposed_show\">. </span>\n<div class=\"text_exposed_show\">\n\n<strong>GREEN: (Mainly parkway skiing, trail 50 and Ridge Road, depending on snow conditions)</strong>\nGreen group is intended to build basic ski fitness and to acquire experience skiing on non technical trails. You may be green if one or more  of the following apply,\n\nA typical ski would be 13 K or less\n\nYou are a new runner, or a non-runner.\nYou cycle mostly on the flats, or very infrequently\nYour main love is swimming\nYou exercise around 5 or fewer hours each week.\nYou spent much of the summer on a deck chair\nYou ski 2 or fewer  times a week in the winter\nYou are feeling stressed or unusually tired\nYou are nursing an injury.\nYou were ill during the previous week(s).\n\n&nbsp;\n\n<strong>BLUE: (Will ski on any classic or skate trail in the park, depending on conditions.  May possibly go back country)</strong>\nYou may be blue if\n\nYou comfortably ski 15 - 20 K on an average day\n\nYou are fit\nYou regularly run, or cycle, often on hilly terrain.\nYou train 5 -6 days a week, year round\nYou generally train around 5 – 10 hours each week (and occasionally more)\nYou have no health concerns about raising your heart rate during intensity training\nYou like to break a sweat and challenge yourself .\nYou ski 3 or more times each week.\nYou may or may not be interested in taking part in Ski Loppets or the Ski Marathon.\n\n<strong>RED: (Will ski on any classic or skate trail in the park, in a range of conditions. May possibly go back country )</strong>\nYou may be red if\n\nYou usually ski over 20K an an average ski day\n\nYou are very fit\nYou are driven to compete, either in races or against yourself\nYou have a concrete and measurable goal (“to improve” is too vague!)\nYou are motivated to spend time working within your own intensity zones.\nYou are motivated to train alone when necessary.\nYou enjoy working on incremental technical improvements, and relish being videotaped\nYou are motivated to measure and keep track of your workouts\nYou enjoy working on speed, learning new skills and pushing the envelope\nYou ski 4 – 6 times a week and put other activities aside to get out on snow.\nYou generally train between 7 and 14 hours a week (and occasionally more).\n\n</div>','GREEN BLUE RED','','inherit','closed','closed','','2693-autosave-v1','','','2019-10-16 19:15:33','2019-10-16 23:15:33','',2693,'https://sofits.ca/2017/08/04/2693-autosave-v1/',0,'revision','',0),(2880,7,'2017-08-04 13:27:09','2017-08-04 17:27:09','<strong>WHICH FRIDAY TRAINING GROUP ARE YOU?</strong>\r\n\r\nSome guidelines to help you choose. You may fall somewhere between two groups, and it may even change from week to week. If you are unsure, start with an easier group and see how it works out. Although fitness requires consistency and working outside your comfort zone at times, if you are in too tough a group, you will be exhausted the following day, your fitness will not im<span class=\"text_exposed_show\">prove and you have an excellent chance of getting injured or catching whatever bug is going around.\r\n</span>\r\n\r\n<span class=\"text_exposed_show\">. </span>\r\n<div class=\"text_exposed_show\">\r\n\r\n<strong>GREEN:</strong>\r\nOn Fridays this group will finish the workout with a self-monitored, hilly ski walk focusing on technique &amp; effort. Green group is intended to build basic ski fitness. You may be green if,\r\n\r\nYou are a non-runner.\r\nYou cycle mostly on the flats, or very infrequently\r\nYour main love is swimming\r\nYou exercise around 5 or fewer hours each week.\r\nYou spent much of the summer on a deck chair\r\nYou ski 2 or fewer  times a week in the winter\r\nYou are feeling stressed or unusually tired\r\nYou are nursing an injury.\r\nYou were ill during the previous week(s).\r\n\r\n<strong>BLUE:</strong>\r\nOn Fridays this group will finish the workout with a structured set of hillwork. You may be blue if\r\n\r\nYou are fit\r\nYou regularly run, or cycle, sometimes on hilly terrain.\r\nYou train 5 -6 days a week, year round\r\nYou generally train around 5 – 10 hours each week (and occasionally more)\r\nYou have no health concerns about raising your heart rate during intensity training\r\nYou like to break a sweat and challenge yourself .\r\nYou ski 3 or more times a week.\r\nYou may or may not be interested in taking part in Ski Loppets or the Ski Marathon.\r\n\r\n<strong>RED:</strong>\r\nOn Fridays this group will finish the workout with a slightly more demanding set of hillwork. You may be red if\r\n\r\nYou are very fit\r\nYou are driven to compete, either in races or against yourself\r\nYou have a concrete and measurable goal (“to improve” is too vague!)\r\nYou are motivated to spend time working within your own intensity zones.\r\nYou are motivated to train alone when necessary.\r\nYou enjoy working on incremental technical improvements, and relish being videotaped\r\nYou are motivated to measure and keep track of your workouts\r\nYou enjoy working on speed, learning new skills and pushing the envelope\r\nYou ski 4 – 6 times a week and put other activities aside to get out on snow.\r\nYou generally train between 7 and 14 hours a week (and occasionally more).\r\n\r\n</div>','GREEN BLUE RED','','inherit','closed','closed','','2693-revision-v1','','','2017-08-04 13:27:09','2017-08-04 17:27:09','',2693,'https://sofits.ca/2017/08/04/2693-revision-v1/',0,'revision','',0),(2881,7,'2017-08-04 13:28:21','2017-08-04 17:28:21','<strong>WHICH FRIDAY TRAINING GROUP ARE YOU?</strong>\r\n\r\nSome guidelines to help you choose. You may fall somewhere between two groups, and it may even change from week to week. If you are unsure, start with an easier group and see how it works out. Although fitness requires consistency and working outside your comfort zone at times, if you are in too tough a group, you will be exhausted the following day, your fitness will not im<span class=\"text_exposed_show\">prove and you have an excellent chance of getting injured or catching whatever bug is going around.\r\n</span>\r\n\r\n<span class=\"text_exposed_show\">. </span>\r\n<div class=\"text_exposed_show\">\r\n\r\n<strong>GREEN:</strong>\r\nOn Fridays this group will finish the workout with a self-monitored, hilly ski walk focusing on technique &amp; effort. Green group is intended to build basic ski fitness. You may be green if one or more  of the following apply,\r\n\r\nYou are a non-runner.\r\nYou cycle mostly on the flats, or very infrequently\r\nYour main love is swimming\r\nYou exercise around 5 or fewer hours each week.\r\nYou spent much of the summer on a deck chair\r\nYou ski 2 or fewer  times a week in the winter\r\nYou are feeling stressed or unusually tired\r\nYou are nursing an injury.\r\nYou were ill during the previous week(s).\r\n\r\n<strong>BLUE:</strong>\r\nOn Fridays this group will finish the workout with a structured set of hillwork. You may be blue if\r\n\r\nYou are fit\r\nYou regularly run, or cycle, sometimes on hilly terrain.\r\nYou train 5 -6 days a week, year round\r\nYou generally train around 5 – 10 hours each week (and occasionally more)\r\nYou have no health concerns about raising your heart rate during intensity training\r\nYou like to break a sweat and challenge yourself .\r\nYou ski 3 or more times a week.\r\nYou may or may not be interested in taking part in Ski Loppets or the Ski Marathon.\r\n\r\n<strong>RED:</strong>\r\nOn Fridays this group will finish the workout with a slightly more demanding set of hillwork. You may be red if\r\n\r\nYou are very fit\r\nYou are driven to compete, either in races or against yourself\r\nYou have a concrete and measurable goal (“to improve” is too vague!)\r\nYou are motivated to spend time working within your own intensity zones.\r\nYou are motivated to train alone when necessary.\r\nYou enjoy working on incremental technical improvements, and relish being videotaped\r\nYou are motivated to measure and keep track of your workouts\r\nYou enjoy working on speed, learning new skills and pushing the envelope\r\nYou ski 4 – 6 times a week and put other activities aside to get out on snow.\r\nYou generally train between 7 and 14 hours a week (and occasionally more).\r\n\r\n</div>','GREEN BLUE RED','','inherit','closed','closed','','2693-revision-v1','','','2017-08-04 13:28:21','2017-08-04 17:28:21','',2693,'https://sofits.ca/2017/08/04/2693-revision-v1/',0,'revision','',0),(2892,7,'2017-08-05 19:43:18','2017-08-05 23:43:18','','161016_Sofits-Mulvihill_001106','','inherit','closed','closed','','161016_sofits-mulvihill_001106','','','2017-08-05 19:43:18','2017-08-05 23:43:18','',0,'https://sofits.ca/wp-content/uploads/161016_Sofits-Mulvihill_001106.jpg',0,'attachment','image/jpeg',0),(2928,7,'2017-08-14 19:30:37','2017-08-14 23:30:37','','160214_Cold-Kingsmere-Hike_0053','','inherit','closed','closed','','160214_cold-kingsmere-hike_0053','','','2017-08-14 19:30:37','2017-08-14 23:30:37','',0,'https://sofits.ca/wp-content/uploads/160214_Cold-Kingsmere-Hike_0053.jpg',0,'attachment','image/jpeg',0),(2929,7,'2017-08-14 19:31:50','2017-08-14 23:31:50','','170102_Late-Classic-Relais_0010','','inherit','closed','closed','','170102_late-classic-relais_0010','','','2017-08-14 19:31:50','2017-08-14 23:31:50','',0,'https://sofits.ca/wp-content/uploads/170102_Late-Classic-Relais_0010.jpg',0,'attachment','image/jpeg',0),(2950,7,'2017-08-14 21:45:05','2017-08-15 01:45:05','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2,  ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">Be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds.Ski Striding in the fall and classic or skate skiing when the snow arrives.\r\n</span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just walking or running with poles, it doesn’t count ! Here is what ski striding/ski-bounding looks like:\r\n</span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and an impressive variety of strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: skiers usually do not use pacing as runners do, as  snow conditions are highly variable )</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before heading to Les Saisons for coffee with the group or heading home.\r\n</span></span></span></span>','ABOUT SOFITS\' WORKOUTS','','inherit','closed','closed','','346-revision-v1','','','2017-08-14 21:45:05','2017-08-15 01:45:05','',346,'https://sofits.ca/2017/08/14/346-revision-v1/',0,'revision','',0),(2988,7,'2017-10-11 15:15:18','2017-10-11 19:15:18','','Green Blue RedOct 13','','inherit','closed','closed','','green-blue-redoct-13','','','2017-10-11 15:24:41','2017-10-11 19:24:41','',0,'https://sofits.ca/wp-content/uploads/Green-Blue-RedOct-13.pdf',0,'attachment','application/pdf',0),(2997,7,'2017-10-13 15:23:18','2017-10-13 19:23:18','','Ski-Goals-2017','','inherit','closed','closed','','ski-goals-2017','','','2017-10-13 15:23:18','2017-10-13 19:23:18','',0,'https://sofits.ca/wp-content/uploads/Ski-Goals-2017.pdf',0,'attachment','application/pdf',0),(3002,7,'2017-10-17 21:32:47','2017-10-18 01:32:47','','Green Blue Red5','','inherit','closed','closed','','green-blue-red5','','','2017-10-17 21:34:32','2017-10-18 01:34:32','',0,'https://sofits.ca/wp-content/uploads/Green-Blue-Red5.pdf',0,'attachment','application/pdf',0),(3006,7,'2017-10-25 15:51:41','2017-10-25 19:51:41','','22769770_10154706221106627_5942911290522149752_o','','inherit','closed','closed','','22769770_10154706221106627_5942911290522149752_o','','','2017-10-25 15:51:41','2017-10-25 19:51:41','',0,'https://sofits.ca/wp-content/uploads/22769770_10154706221106627_5942911290522149752_o.jpg',0,'attachment','image/jpeg',0),(3007,7,'2017-10-25 15:52:45','2017-10-25 19:52:45','','Green Blue Red6','','inherit','closed','closed','','green-blue-red6','','','2017-10-25 16:05:47','2017-10-25 20:05:47','',0,'https://sofits.ca/wp-content/uploads/Green-Blue-Red6.pdf',0,'attachment','application/pdf',0),(3013,7,'2017-11-01 16:37:30','2017-11-01 20:37:30','','Green Blue Red7-1','','inherit','closed','closed','','green-blue-red7-1','','','2017-11-01 16:37:30','2017-11-01 20:37:30','',0,'https://sofits.ca/wp-content/uploads/Green-Blue-Red7-1.pdf',0,'attachment','application/pdf',0),(3029,7,'2017-11-09 14:48:20','2017-11-09 19:48:20','','Green Blue Red8 ANYTHING IS POSSIBLE','','inherit','closed','closed','','green-blue-red8-anything-is-possible','','','2017-11-09 14:48:20','2017-11-09 19:48:20','',0,'https://sofits.ca/wp-content/uploads/Green-Blue-Red8-ANYTHING-IS-POSSIBLE-.pdf',0,'attachment','application/pdf',0),(3033,7,'2017-11-16 10:56:07','2017-11-16 15:56:07','','23519206_2065096266848884_3891200855174690853_n','','inherit','closed','closed','','23519206_2065096266848884_3891200855174690853_n','','','2017-11-16 10:56:07','2017-11-16 15:56:07','',0,'https://sofits.ca/wp-content/uploads/23519206_2065096266848884_3891200855174690853_n.jpg',0,'attachment','image/jpeg',0),(3034,7,'2017-11-16 10:56:41','2017-11-16 15:56:41','','Green Blue Red9','','inherit','closed','closed','','green-blue-red9','','','2017-11-16 10:56:41','2017-11-16 15:56:41','',0,'https://sofits.ca/wp-content/uploads/Green-Blue-Red9.pdf',0,'attachment','application/pdf',0),(3042,7,'2017-11-30 23:13:43','2017-12-01 04:13:43','','NakkerSofits_Dec1','','inherit','closed','closed','','nakkersofits_dec1','','','2017-11-30 23:13:43','2017-12-01 04:13:43','',0,'https://sofits.ca/wp-content/uploads/NakkerSofits_Dec1.pdf',0,'attachment','application/pdf',0),(3044,7,'2017-12-13 16:16:14','2017-12-13 21:16:14','','Green Blue Red12','','inherit','closed','closed','','green-blue-red12','','','2017-12-13 16:16:14','2017-12-13 21:16:14','',0,'https://sofits.ca/wp-content/uploads/Green-Blue-Red12.pdf',0,'attachment','application/pdf',0),(3050,7,'2017-12-14 16:31:28','2017-12-14 21:31:28','','30-20-10-Skis','','inherit','closed','closed','','30-20-10-skis','','','2017-12-14 16:31:28','2017-12-14 21:31:28','',0,'https://sofits.ca/wp-content/uploads/30-20-10-Skis.pdf',0,'attachment','application/pdf',0),(3053,7,'2017-12-20 15:43:59','2017-12-20 20:43:59','','Green Blue Red13 Dec 22','','inherit','closed','closed','','green-blue-red13-dec-22','','','2017-12-20 15:43:59','2017-12-20 20:43:59','',0,'https://sofits.ca/wp-content/uploads/Green-Blue-Red13-Dec-22.pdf',0,'attachment','application/pdf',0),(3060,7,'2018-01-11 10:05:28','2018-01-11 15:05:28','','Green Blue Red14 Jan12','','inherit','closed','closed','','green-blue-red14-jan12','','','2018-01-11 10:05:28','2018-01-11 15:05:28','',0,'https://sofits.ca/wp-content/uploads/Green-Blue-Red14-Jan12.pdf',0,'attachment','application/pdf',0),(3067,7,'2018-01-18 20:03:46','2018-01-19 01:03:46','','Green Blue Red15 Jan19','','inherit','closed','closed','','green-blue-red15-jan19','','','2018-01-18 20:03:46','2018-01-19 01:03:46','',0,'https://sofits.ca/wp-content/uploads/Green-Blue-Red15-Jan19.pdf',0,'attachment','application/pdf',0),(3075,7,'2018-04-16 08:38:47','2018-04-16 12:38:47','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Cross Country  Ski Events:</span></span></h1>\r\n<strong><a href=\"https://bright-ideas-software.com/silverspoon/\">Silver Spoon: </a>\r\n</strong>\r\n\r\n<a href=\"https://www.opeongonordic.com/annual-loppet/\"><strong>Opeongo Loppet:</strong></a>\r\n\r\n<strong><a href=\"https://www.winterludetriathlon.ca/\" target=\"_blank\" rel=\"noopener\">Winterlude Triathlon:</a></strong>   <strong>\r\n</strong>\r\n\r\n<strong><a href=\"https://www.skiloppet.com/?lang=en\" target=\"_blank\" rel=\"noopener\">Viking Loppet:</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://csm-mcs.com/\" target=\"_blank\" rel=\"noopener\">Canadian Ski Marathon</a>:</strong>\r\n\r\n<strong><a href=\"https://www.gatineauloppet.com/?lang=en\" target=\"_blank\" rel=\"noopener\">Gatineau Loppet:</a></strong>  <strong>\r\n</strong>\r\n\r\n<strong>Jackrabbit Classic</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\" rel=\"noopener\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES and EVENTS','','inherit','closed','closed','','93-revision-v1','','','2018-04-16 08:38:47','2018-04-16 12:38:47','',93,'https://sofits.ca/2018/04/16/93-revision-v1/',0,'revision','',0),(3079,7,'2018-04-16 08:51:11','2018-04-16 12:51:11','','Sofits Summer Activities','','inherit','closed','closed','','sofits-summer-activities','','','2018-04-16 08:51:11','2018-04-16 12:51:11','',0,'https://sofits.ca/wp-content/uploads/Sofits-Summer-Activities.pdf',0,'attachment','application/pdf',0),(3089,7,'2018-04-16 09:07:45','2018-04-16 13:07:45','<h2><img class=\"alignnone size-full wp-image-2104\" src=\"https://sofits.ca/wp-content/uploads/150925_Sofits10.jpg\" alt=\"150925_Sofits10\" width=\"800\" height=\"600\" />Please comment if you know of other links of general interest.</h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30 and wildly inaccurate.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n\r\n<a href=\"https://skitrails.xcottawa.ca/skitrails_gatineau_park.php\">XCOttawa Gatineau Park Ski Trail Reports </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n\r\n<a href=\"https://weatherspark.com/#!graphs;a=Canada/QC/Chelsea\">Weather Spark</a>\r\n\r\n<a href=\"https://www.theweathernetwork.com/weather/canada/quebec/chelsea\">The Weather Network - Chelsea</a>\r\n\r\n<a href=\"https://weather.gc.ca/radar/index_e.html?id=XFT\">Franktown Radar </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a href=\"https://www.precisionnutrition.com/working-out-when-sick\" target=\"_blank\" rel=\"noopener\">Should you exercise when you\'re sick?</a>:  a detailed discussion of pros and cons, including discussion of how to adapt your training when sick.\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2014/05/140530154109.htm\" target=\"_blank\" rel=\"noopener\">Quality, not quantity, counts most in exercise, diet</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2014/06/11/judging-badly-how-hard-we-exercise/?_php=true&amp;_type=blogs&amp;_php=true&amp;_type=blogs&amp;ref=health&amp;_r=2&amp;\" target=\"_blank\" rel=\"noopener\">Overestimating How Hard We Exercise</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/older-does-not-mean-slower-2/\" target=\"_blank\" rel=\"noopener\">Research Shows – Older Does NOT Mean Slower</a>\r\n\r\n<a href=\"https://running.competitor.com/2014/06/training/study-run-faster-to-ride-better_43375\" target=\"_blank\" rel=\"noopener\">Run Faster To Ride Better </a>\r\n\r\n<a href=\"https://www.220triathlon.com/training/long-distance/can-heavy-lifting-increase-your-endurance-performance/8724.html\" target=\"_blank\" rel=\"noopener\">Can heavy lifting increase your endurance performance?</a>\r\n\r\n<a href=\"https://home.trainingpeaks.com/blog/article/the-1-rule-of-endurance-training?utm_source=tpr&amp;utm_medium=email&amp;utm_content=utb11&amp;utm_campaign=utb\" target=\"_blank\" rel=\"noopener\">The #1 Rule of Endurance Training</a>\r\n<a href=\"https://www.sciencedaily.com/releases/2014/06/140605113510.htm\" target=\"_blank\" rel=\"noopener\">Molecular secret of short, intense workouts clarified</a>\r\n<p id=\"page-title\"><a href=\"https://www.runnersworld.com/injury-prevention-recovery/hip-weakness-and-knee-pain\" target=\"_blank\" rel=\"noopener\">Hip Weakness and Knee Pain</a></p>\r\n\r\n<h3><span style=\"text-decoration: underline; color: #ff0000;\">Some links about the importance of recovery:</span></h3>\r\n<ul>\r\n 	<li>Joe Friel\'s article \"<a href=\"https://thesportfactory.com/site/trainingnews/Fitness_Depends_on_Recovery_257.shtml\" target=\"_blank\" rel=\"noopener\">Fitness depends on Recovery</a>\"</li>\r\n 	<li>a cycling article \"<a href=\"https://www.climbbybike.com/cycling-training-and-supercompensation.asp\" target=\"_blank\" rel=\"noopener\">Training, resting and supercompensation</a>\"</li>\r\n</ul>\r\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\r\n\r\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\" rel=\"noopener\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\" rel=\"noopener\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\" rel=\"noopener\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\" rel=\"noopener\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\" rel=\"noopener\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>BOOKS</strong>\r\n\r\n<em><strong>Books About Running: (Do you need extra motivation to get out the door for that run?  )</strong></em>\r\n\r\nBorn to Run - McDougall  (loved this book, it kindled an urge to resume  running  after being injured)\r\n\r\nEat and Run - Jurek ( same characters, different author,  seemed like  a companion book to Born to Run)\r\n\r\nWhy I Run - Sutcliffe (local journalist, enthusiastic and self-styled -\"ordinary\" runner.)\r\n\r\nRunning with the Mind of Meditation - Mipham (interesting ideas about the different stages runners go through)\r\n\r\nThe Grace to Race - Sister Madonna Buder (not a literary masterpiece but an inspiring tale  of the octogenarian nun who competes in Ironmen.)\r\n\r\n<em><strong>Books About Training, Exercise, and Aging Well:</strong></em>\r\n\r\nCross Training - Fitzgerald (Thanks Pat - just spent the weekend reading this  - great book!  If you read only one training book, read this.)\r\n\r\nCycling Past 50 - Friel (all of his books are highly recommended, but perhaps this  is most relevant to our group)\r\n\r\nTriathlete\'s Training Bible - Friel\r\n\r\nCyclists\'s Training Bible - Friel\r\n\r\nTotal Heart Rate Training - Friel\r\n\r\nRun: Running by Feel - Fitzgerald (many AHA! moments in this book, but learn to train before you read it).\r\n\r\nYounger Next Year: Crowley (lots of sensible advice, easily read, thanks Susan!)\r\n\r\nWhich Came First Cardio or Weights - Hutchison (a myth buster)\r\n\r\nThe Cure for Everything - Caulfield (in the same vein as the previous book, but not just exercise)\r\n\r\n<em><strong>Food and Healthy Eating:</strong></em> Many of these books are from opposing corners of the kitchen, so to speak, but it was interesting to see what they actually agreed on!\r\n\r\nThe Omnivore\'s Dilemma - Pollan (the book that launched me on this journey - a must read!  I love his writing. Thank you Susan)\r\n\r\nThe China Study - Campbell\r\n\r\nWhat to Eat - Nestle ( a thorough  analysis - usually scathing -  of all the food you will encounter in a food store.)\r\n\r\nDiet For a Small Planet - Lappé ( not a new book - you either have read this or must read it)\r\n\r\nWhy We Get Fat ( you don\'t want to know what you are eating)\r\n\r\nEat and Run - Jurek\r\n\r\nPaleo Diet - Cordain/Friel\r\n\r\nFood Rules -  Pollan (a simple guide to eating healthily)\r\n\r\nWheat Belly - Davis\r\n\r\nCooked - Pollan (thanks again, Susan, an inspiring and entertaining book! ).\r\n\r\nWild Fermentation - Katz (how to bring healthy microbes back into our modern lives)\r\n\r\n<em><strong>Nature and Health</strong></em><em><strong>  </strong></em>We all know that exercise is more fun outdoors.  These two books confirm just HOW important it  is to our health.\r\n\r\nThe Nature Principle - Louv (\"why we need a botanical sense of place\", \"what if we take pride in our diverse and fascinating bioregion\", \"knowing who you are by where you are\" - \"the garden creates the gardener \". This book offers hope in the face of all the terrible things that are happening to our natural world.\r\n\r\nYour Brain on Nature - Selhub/Logan (scientific evidence for things you already know from experience).','LINKS & BOOKS','','inherit','closed','closed','','1054-revision-v1','','','2018-04-16 09:07:45','2018-04-16 13:07:45','',1054,'https://sofits.ca/2018/04/16/1054-revision-v1/',0,'revision','',0),(3090,7,'2018-04-16 09:09:03','2018-04-16 13:09:03','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2,  ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">Be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds.Ski Striding in the fall and classic or skate skiing when the snow arrives.\r\n</span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just walking or running with poles, it doesn’t count ! Here is what ski striding/ski-bounding looks like:\r\n</span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and an impressive variety of strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: skiers usually do not use pacing as runners do, as  snow conditions are highly variable )</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before heading to Les Saisons for coffee with the group or heading home.\r\n</span></span></span></span>','SOFITS\' DRYLAND WORKOUTS','','inherit','closed','closed','','346-revision-v1','','','2018-04-16 09:09:03','2018-04-16 13:09:03','',346,'https://sofits.ca/2018/04/16/346-revision-v1/',0,'revision','',0),(3091,7,'2018-04-16 09:09:28','2018-04-16 13:09:28','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2,  ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">Be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds.Ski Striding in the fall and classic or skate skiing when the snow arrives.\r\n</span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just walking or running with poles, it doesn’t count ! Here is what ski striding/ski-bounding looks like:\r\n</span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and an impressive variety of strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: skiers usually do not use pacing as runners do, as  snow conditions are highly variable )</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before heading to Les Saisons for coffee with the group or heading home.\r\n</span></span></span></span>','FALL WORKOUTS','','inherit','closed','closed','','346-revision-v1','','','2018-04-16 09:09:28','2018-04-16 13:09:28','',346,'https://sofits.ca/2018/04/16/346-revision-v1/',0,'revision','',0),(3092,7,'2018-04-16 09:09:57','2018-04-16 13:09:57','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Cross Country  Ski Events:</span></span></h1>\r\n<strong><a href=\"https://bright-ideas-software.com/silverspoon/\">Silver Spoon: </a>\r\n</strong>\r\n\r\n<a href=\"https://www.opeongonordic.com/annual-loppet/\"><strong>Opeongo Loppet:</strong></a>\r\n\r\n<strong><a href=\"https://www.winterludetriathlon.ca/\" target=\"_blank\" rel=\"noopener\">Winterlude Triathlon:</a></strong>   <strong>\r\n</strong>\r\n\r\n<strong><a href=\"https://www.skiloppet.com/?lang=en\" target=\"_blank\" rel=\"noopener\">Viking Loppet:</a>\r\n</strong>\r\n\r\n<strong><a href=\"https://csm-mcs.com/\" target=\"_blank\" rel=\"noopener\">Canadian Ski Marathon</a>:</strong>\r\n\r\n<strong><a href=\"https://www.gatineauloppet.com/?lang=en\" target=\"_blank\" rel=\"noopener\">Gatineau Loppet:</a></strong>  <strong>\r\n</strong>\r\n\r\n<strong>Jackrabbit Classic</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\" rel=\"noopener\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES & EVENTS','','inherit','closed','closed','','93-revision-v1','','','2018-04-16 09:09:57','2018-04-16 13:09:57','',93,'https://sofits.ca/2018/04/16/93-revision-v1/',0,'revision','',0),(3128,7,'2018-08-28 14:52:01','2018-08-28 18:52:01','<span style=\"font-size: x-large;\"><u><b>Goal Setting for Nordic Skiing 2019-2020</b></u></span>\r\n\r\n1. Find a goal that slightly stretches your envelope – something that, with consistent effort will be manageable. If you pick a failed goal from last year, think about what it was that kept you from achieving it. Take time to find a personal goal that isn’t the same as 20 other people! Make it meaningful to you. If you have achieved this same goal in the last several years, find something more \"stretchy\".  If you can achieve your goal early in the season, pick something more challenging.\r\n\r\n2. Your goal must be clear and measurable. <strong>It can not include vague words such as “better”, “more” or “improve”.  It cannot be a destination goal unless you quantify the location with other factors.  (for example \"ski to the fire tower\" is no longer allowed.  But ski there anyway!)\r\n</strong>\r\n\r\n3. Quantify your goal with dates, places, times, speeds, placings, etc.\r\n\r\n4. A goal can be an achievement goal, or <strong>a process goal</strong>.  Be careful of race goals.  Avoid aiming to win your age group unless you  are a full time skier, and know every single competitor\'s ability. Aiming for a specific time is also tricky as snow conditions are out of your control.  Instead aim  improve to your age group placing, or aim to simply participate in a race you have never before tried.  If you have participated in the same race for the last several years, perhaps it\'s time for a new goal.\r\n\r\n5. <strong>Map out exactly how, where or when you will work toward your goal.  This is more important than the final achievement and will ensure progress toward your goal.\r\n</strong>\r\n\r\n6. It might be a good idea to pick a second goal in case of poor snow conditions – but be sure to work towards both of them. Only one needs to count.\r\n\r\n<span style=\"font-size: x-large;\"><u><b>Some Random Examples: (but better to make up your own)</b></u></span>\r\n\r\na. To one-skate from _______ to _______ in a comfortable zone 2 without stopping by March 1 2019.\r\n\r\nb. To improve my age group placing in the 50K Classic Loppet\r\n\r\nc. To take part in 2 time trials\r\n\r\nd. To attend all weekly Friday sessions unless I am ill.\r\n\r\ne. To ski 4 (or 3 or 6) times every week, thus increasing my experience in varied snow conditions\r\n\r\nf. To grip wax my own skis before each classic ski and to arrive with waxed skis.\r\n\r\ng. To ski somewhere different each week. (Keep track !)\r\n\r\nh. To ski without poles for 10 (or 30) minutes of every ski in November and December.\r\n\r\nI. To be able to double pole from ____ to ____.\r\n\r\nJ. To take part in 15 Sunday (or Saturday, or Wednesday or whatever) trail runs and group skis.\r\n\r\nK. To join a weekly spin class (or run class, or strength class) to increase my general fitness.\r\n\r\nL. To eliminate sugary desserts allowing only one a week\r\n\r\nM. To ski alone at least once a week, so that I can focus on feel and technique without distractions.\r\n\r\nN. Ski ski at least once a week with slower skiers, to rest and savour zone 1\r\n\r\nO. To ski at least once a week with faster skiers, to push me out of my comfort zone.\r\n\r\nP. To ski further than I have skied before (you will need numbers for this goal. What is the furthest you have skied?)\r\n\r\nQ. To take part in the Canadian Ski Marathon as a Coureur de Bois (or tourer – how many sections?)\r\n\r\n<i>There are so many possibilities - use your imagination!</i>','SETTING SKI GOALS','','publish','closed','closed','','ski-goals','','','2019-10-10 14:44:41','2019-10-10 18:44:41','',0,'https://sofits.ca/?page_id=3128',0,'page','',0),(3129,7,'2018-08-28 14:52:02','2018-08-28 18:52:02',' ','','','publish','closed','closed','','3129','','','2018-08-28 14:52:02','2018-08-28 18:52:02','',0,'https://sofits.ca/2018/08/28/3129/',19,'nav_menu_item','',0),(3130,7,'2018-08-28 14:52:01','2018-08-28 18:52:01','<span style=\"font-size: large;\"><u><b>Goal Setting for Nordic Skiing 2018-2019</b></u></span>\r\n\r\n1. Find a goal that slightly stretches your “envelope” – something that, with consistent effort will be manageable. If you pick a failed goal from last year, think about what it was that kept you from achieving it. Take time to find a personal goal that isn’t the same as 20 other people! Make it meaningful to you. Please do not choose something you have already done unless you are coming back from an injury.\r\n\r\n5. Map out exactly how, where or when you will work toward your goal.\r\n\r\n6. It might be a good idea to pick a second goal in case of poor snow conditions – but be sure to work towards both of them. Only one needs to count.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-size: large;\"><b>Some Random Examples (but better to make up your own). </b></span>\r\n\r\na. To one-skate from _______ to _______ in a comfortable zone 2 without stopping by March 1 2019.\r\n\r\nb. To improve my time in the 50K Classic Loppet\r\n\r\nc. To take part in 2 time trials\r\n\r\nd. To attend all weekly Friday sessions unless I am ill.\r\n\r\ne. To ski 4 (or 3 or 6) times every week, thus increasing my experience in varied snow conditions\r\n\r\nf. To grip wax my own skis before each classic ski and to arrive with waxed skis.\r\n\r\ng. To ski somewhere different each week. (Keep track !)\r\n\r\nh. To ski without poles for 10 (or 30) minutes of every ski in November and December.\r\n\r\nI. To be able to double pole from ____ to ____.\r\n\r\nJ. To take part in 15 Sunday (or Saturday, or Wednesday or whatever) trail runs and group skis.\r\n\r\nK. To join a weekly spin class (or run class, or strength class) to increase my general fitness.\r\n\r\nL. To eliminate sugary desserts allowing only one a week\r\n\r\nM. To ski alone at least once a week, so that I can focus on feel and technique without distractions.\r\n\r\nN. Ski ski at least once a week with slower skiers, to rest and savour zone 1\r\n\r\nO. To ski at least once a week with faster skiers, to push me out of my comfort zone.\r\n\r\nP. To ski further than I have skied before (you will need numbers for this goal. What is the furthest you have skied?)\r\n\r\nQ. To take part in the Canadian Ski Marathon as a Coureur de Bois (or tourer – how many sections?).','Ski Goals','','inherit','closed','closed','','3128-revision-v1','','','2018-08-28 14:52:01','2018-08-28 18:52:01','',3128,'https://sofits.ca/2018/08/28/3128-revision-v1/',0,'revision','',0),(3131,7,'2018-08-28 15:03:39','2018-08-28 19:03:39','<span style=\"font-size: x-large;\"><u><b>Goal Setting for Nordic Skiing 2018-2019</b></u></span>\r\n\r\n1. Find a goal that slightly stretches your envelope – something that, with consistent effort will be manageable. If you pick a failed goal from last year, think about what it was that kept you from achieving it. Take time to find a personal goal that isn’t the same as 20 other people! Make it meaningful to you.\r\n\r\n2. Your goal must be clear and measurable. It can not include vague words such as “better”, “more” or “improve”.\r\n\r\n3. Quantify your goal with dates, places, times, speeds, placings, etc.\r\n\r\n4. A goal can be an achievement goal, or a process goal. If it is a race goal, avoid aiming to win the race unless you know every single competitor and how well they ski! Instead aim for a time (still somewhat risky with snow conditions) or a certain placing, etc.\r\n\r\n5. Map out exactly how, where or when you will work toward your goal.\r\n\r\n6. It might be a good idea to pick a second goal in case of poor snow conditions – but be sure to work towards both of them. Only one needs to count.\r\n\r\n<span style=\"font-size: x-large;\"><u><b>Some Random Examples: (but better to make up your own)</b></u></span>\r\n\r\na. To one-skate from _______ to _______ in a comfortable zone 2 without stopping by March 1 2019.\r\n\r\nb. To improve my time in the 50K Classic Loppet\r\n\r\nc. To take part in 2 time trials\r\n\r\nd. To attend all weekly Friday sessions unless I am ill.\r\n\r\ne. To ski 4 (or 3 or 6) times every week, thus increasing my experience in varied snow conditions\r\n\r\nf. To grip wax my own skis before each classic ski and to arrive with waxed skis.\r\n\r\ng. To ski somewhere different each week. (Keep track !)\r\n\r\nh. To ski without poles for 10 (or 30) minutes of every ski in November and December.\r\n\r\nI. To be able to double pole from ____ to ____.\r\n\r\nJ. To take part in 15 Sunday (or Saturday, or Wednesday or whatever) trail runs and group skis.\r\n\r\nK. To join a weekly spin class (or run class, or strength class) to increase my general fitness.\r\n\r\nL. To eliminate sugary desserts allowing only one a week\r\n\r\nM. To ski alone at least once a week, so that I can focus on feel and technique without distractions.\r\n\r\nN. Ski ski at least once a week with slower skiers, to rest and savour zone 1\r\n\r\nO. To ski at least once a week with faster skiers, to push me out of my comfort zone.\r\n\r\nP. To ski further than I have skied before (you will need numbers for this goal. What is the furthest you have skied?)\r\n\r\nQ. To take part in the Canadian Ski Marathon as a Coureur de Bois (or tourer – how many sections?)\r\n\r\n<i>There are so many possibilities - use your imagination!</i>','Ski Goals','','inherit','closed','closed','','3128-revision-v1','','','2018-08-28 15:03:39','2018-08-28 19:03:39','',3128,'https://sofits.ca/2018/08/28/3128-revision-v1/',0,'revision','',0),(3132,7,'2018-08-28 15:04:51','2018-08-28 19:04:51','<span style=\"font-size: x-large;\"><u><b>Goal Setting for Nordic Skiing 2018-2019</b></u></span>\r\n\r\n1. Find a goal that slightly stretches your envelope – something that, with consistent effort will be manageable. If you pick a failed goal from last year, think about what it was that kept you from achieving it. Take time to find a personal goal that isn’t the same as 20 other people! Make it meaningful to you.\r\n\r\n2. Your goal must be clear and measurable. It can not include vague words such as “better”, “more” or “improve”.\r\n\r\n3. Quantify your goal with dates, places, times, speeds, placings, etc.\r\n\r\n4. A goal can be an achievement goal, or a process goal. If it is a race goal, avoid aiming to win the race unless you know every single competitor and how well they ski! Instead aim for a time (still somewhat risky with snow conditions) or a certain placing, etc.\r\n\r\n5. Map out exactly how, where or when you will work toward your goal.\r\n\r\n6. It might be a good idea to pick a second goal in case of poor snow conditions – but be sure to work towards both of them. Only one needs to count.\r\n\r\n<span style=\"font-size: x-large;\"><u><b>Some Random Examples: (but better to make up your own)</b></u></span>\r\n\r\na. To one-skate from _______ to _______ in a comfortable zone 2 without stopping by March 1 2019.\r\n\r\nb. To improve my time in the 50K Classic Loppet\r\n\r\nc. To take part in 2 time trials\r\n\r\nd. To attend all weekly Friday sessions unless I am ill.\r\n\r\ne. To ski 4 (or 3 or 6) times every week, thus increasing my experience in varied snow conditions\r\n\r\nf. To grip wax my own skis before each classic ski and to arrive with waxed skis.\r\n\r\ng. To ski somewhere different each week. (Keep track !)\r\n\r\nh. To ski without poles for 10 (or 30) minutes of every ski in November and December.\r\n\r\nI. To be able to double pole from ____ to ____.\r\n\r\nJ. To take part in 15 Sunday (or Saturday, or Wednesday or whatever) trail runs and group skis.\r\n\r\nK. To join a weekly spin class (or run class, or strength class) to increase my general fitness.\r\n\r\nL. To eliminate sugary desserts allowing only one a week\r\n\r\nM. To ski alone at least once a week, so that I can focus on feel and technique without distractions.\r\n\r\nN. Ski ski at least once a week with slower skiers, to rest and savour zone 1\r\n\r\nO. To ski at least once a week with faster skiers, to push me out of my comfort zone.\r\n\r\nP. To ski further than I have skied before (you will need numbers for this goal. What is the furthest you have skied?)\r\n\r\nQ. To take part in the Canadian Ski Marathon as a Coureur de Bois (or tourer – how many sections?)\r\n\r\n<i>There are so many possibilities - use your imagination!</i>','SETTING SKI GOALS','','inherit','closed','closed','','3128-revision-v1','','','2018-08-28 15:04:51','2018-08-28 19:04:51','',3128,'https://sofits.ca/2018/08/28/3128-revision-v1/',0,'revision','',0),(3190,7,'2018-09-22 09:13:40','2018-09-22 13:13:40','<p align=\"center\"><span style=\"font-size: large;\"> </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">1. Ski more often (3 - 4X week is proven to be the sweet spot). Schedule and prioritize it as you would a dentist appointment. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">2. Once a week ski further than you have skied before - keep track of mileage! Other outings should be shorter and have a purpose other than simply going from point A to B. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">3. Ski (and wax your skis) in varied snow conditions and on varied trails.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">4. Improve your double poling!</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">5. Ski at different speeds – join in with both faster and slower groups. Faster groups help you push the envelope, while slower groups may give you a much needed recovery day.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">6. Work seriously with heart rates. First figure out what your own heart rate zones are (the generic formula can be WAY off). 80% of your week in zones 1 and 2, 20% going “hard” - above zone 3. Note that skiers use heart rate because varying snow conditions can make it difficult to use pacing as runners do.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">7. Each week include a long ski, some interval training, technical work and a short, easy ski.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">8. Take at least one rest day a week. Without time to absorb your training, fitness will not increase.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">9. “Sport Specificity” - If skiing is the thing you really want to improve, cut back on other sports during the winter. Do all your winter intensity on skis, and one strength session on skis. However, continue general strength with one indoor session a week. Yoga is also recommended.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">10. Spend some time skiing alone each week. Groups are a mixed blessing. Usually you will either be “dropped” or else find yourself in a pack of motivating, scintillating sheep, in zone 3, going neither easy nor hard enough to improve. </span></p>','TOP 10 WAYS to IMPROVE YOUR SKIING','','publish','closed','closed','','improve-your-skiing','','','2018-09-22 09:15:08','2018-09-22 13:15:08','',0,'https://sofits.ca/?page_id=3190',0,'page','',0),(3191,7,'2018-09-22 09:13:40','2018-09-22 13:13:40',' ','','','publish','closed','closed','','3191','','','2018-09-22 09:13:40','2018-09-22 13:13:40','',0,'https://sofits.ca/2018/09/22/3191/',22,'nav_menu_item','',0),(3192,7,'2018-09-22 09:13:40','2018-09-22 13:13:40','<p align=\"center\"><span style=\"font-size: large;\"><u><b>TOP 10 WAYS IMPROVE YOUR SKIING</b></u></span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">1. Ski more often (3 - 4X week is proven to be the sweet spot). Schedule and prioritize it as you would a dentist appointment. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">2. Once a week ski further than you have skied before - keep track of mileage! Other outings should be shorter and have a purpose other than simply going from point A to B. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">3. Ski (and wax your skis) in varied snow conditions and on varied trails.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">4. Improve your double poling!</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">5. Ski at different speeds – join in with both faster and slower groups. Faster groups help you push the envelope, while slower groups may give you a much needed recovery day.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">6. Work seriously with heart rates. First figure out what your own heart rate zones are (the generic formula can be WAY off). 80% of your week in zones 1 and 2, 20% going “hard” - above zone 3. Note that skiers use heart rate because varying snow conditions can make it difficult to use pacing as runners do.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">7. Each week include a long ski, some interval training, technical work and a short, easy ski.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">8. Take at least one rest day a week. Without time to absorb your training, fitness will not increase.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">9. “Sport Specificity” - If skiing is the thing you really want to improve, cut back on other sports during the winter. Do all your winter intensity on skis, and one strength session on skis. However, continue general strength with one indoor session a week. Yoga is also recommended.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">10. Spend some time skiing alone each week. Groups are a mixed blessing. Usually you will either be “dropped” or else find yourself in a pack of motivating, scintillating sheep, in zone 3, going neither easy nor hard enough to improve. </span></p>','IMPROVE YOUR SKIING','','inherit','closed','closed','','3190-revision-v1','','','2018-09-22 09:13:40','2018-09-22 13:13:40','',3190,'https://sofits.ca/2018/09/22/3190-revision-v1/',0,'revision','',0),(3193,7,'2018-09-22 09:14:22','2018-09-22 13:14:22','<p align=\"center\"><span style=\"font-size: large;\"> </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">1. Ski more often (3 - 4X week is proven to be the sweet spot). Schedule and prioritize it as you would a dentist appointment. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">2. Once a week ski further than you have skied before - keep track of mileage! Other outings should be shorter and have a purpose other than simply going from point A to B. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">3. Ski (and wax your skis) in varied snow conditions and on varied trails.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">4. Improve your double poling!</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">5. Ski at different speeds – join in with both faster and slower groups. Faster groups help you push the envelope, while slower groups may give you a much needed recovery day.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">6. Work seriously with heart rates. First figure out what your own heart rate zones are (the generic formula can be WAY off). 80% of your week in zones 1 and 2, 20% going “hard” - above zone 3. Note that skiers use heart rate because varying snow conditions can make it difficult to use pacing as runners do.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">7. Each week include a long ski, some interval training, technical work and a short, easy ski.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">8. Take at least one rest day a week. Without time to absorb your training, fitness will not increase.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">9. “Sport Specificity” - If skiing is the thing you really want to improve, cut back on other sports during the winter. Do all your winter intensity on skis, and one strength session on skis. However, continue general strength with one indoor session a week. Yoga is also recommended.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">10. Spend some time skiing alone each week. Groups are a mixed blessing. Usually you will either be “dropped” or else find yourself in a pack of motivating, scintillating sheep, in zone 3, going neither easy nor hard enough to improve. </span></p>','TOP 10 to IMPROVE YOUR SKIING','','inherit','closed','closed','','3190-revision-v1','','','2018-09-22 09:14:22','2018-09-22 13:14:22','',3190,'https://sofits.ca/2018/09/22/3190-revision-v1/',0,'revision','',0),(3194,7,'2018-09-22 09:15:08','2018-09-22 13:15:08','<p align=\"center\"><span style=\"font-size: large;\"> </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">1. Ski more often (3 - 4X week is proven to be the sweet spot). Schedule and prioritize it as you would a dentist appointment. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">2. Once a week ski further than you have skied before - keep track of mileage! Other outings should be shorter and have a purpose other than simply going from point A to B. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">3. Ski (and wax your skis) in varied snow conditions and on varied trails.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">4. Improve your double poling!</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">5. Ski at different speeds – join in with both faster and slower groups. Faster groups help you push the envelope, while slower groups may give you a much needed recovery day.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">6. Work seriously with heart rates. First figure out what your own heart rate zones are (the generic formula can be WAY off). 80% of your week in zones 1 and 2, 20% going “hard” - above zone 3. Note that skiers use heart rate because varying snow conditions can make it difficult to use pacing as runners do.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">7. Each week include a long ski, some interval training, technical work and a short, easy ski.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">8. Take at least one rest day a week. Without time to absorb your training, fitness will not increase.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">9. “Sport Specificity” - If skiing is the thing you really want to improve, cut back on other sports during the winter. Do all your winter intensity on skis, and one strength session on skis. However, continue general strength with one indoor session a week. Yoga is also recommended.</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">10. Spend some time skiing alone each week. Groups are a mixed blessing. Usually you will either be “dropped” or else find yourself in a pack of motivating, scintillating sheep, in zone 3, going neither easy nor hard enough to improve. </span></p>','TOP 10 WAYS to IMPROVE YOUR SKIING','','inherit','closed','closed','','3190-revision-v1','','','2018-09-22 09:15:08','2018-09-22 13:15:08','',3190,'https://sofits.ca/2018/09/22/3190-revision-v1/',0,'revision','',0),(3195,7,'2018-09-22 09:28:11','2018-09-22 13:28:11','<p align=\"justify\"><span style=\"font-size: large;\"><u><b><img class=\"alignnone size-full wp-image-1255\" src=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\" alt=\"\" width=\"750\" height=\"515\" />DO YOU LACK STRONG, GENERAL FITNESS? </b></u> </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Good fitness will carry you pretty far in skiing, even if your technique is not perfect. If you are lacking basic fitness, you are in the group that will see huge gains in a short time, simply by exercising consistently. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Our dryland session is not enough! Before the ski season begins: Aim for 3 - 4 aerobic sessions a week and 2 strength sessions. (Friday’s session includes both 1 aerobic and 1 strength as well as technique) Spin classes or new-runners’ groups are a fun way to increase your fitness. Or ski stride in the park once a week in addition to Friday’s workout. Add a weekly strength class to supplement our Friday strength. And don’t forget to stretch it out. Join a yoga class or find a class online. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Start where you are at, don’t worry about keeping up with others, and aim for consistently showing up. Don’t worry too much about interval training until you have a “base”. Aim for consistency rather than speed to prevent injury. Intervals can be added in later. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Note that activities such as dog walking or easy hiking, although good for general health, will do little to improve your skiing. These generally fall below zone 1. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\"><u><b>ALREADY FIT AND ACTIVE, BUT WANT TO IMPROVE YOUR PERFORMANCE ON SKIS?</b></u></span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">This is harder! It requires great motivation and patience, not to mention attention to detail and the willingness to ski on your own at times. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">First, dedicate portions of each ski to technical practice. For example, the first 15 minutes can be a warm up without poles, or a double pole session. Or find a hill on which to practice your climbs and descents a number of times. Skiing is similar to swimming in that technique is paramount. Pick one technical point and focus on that. Grab opportunities to be filmed, or take a private or semi-private or small group lesson. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Work daily at double poling. Many recreational skiers avoid using double poling, and this is particularly true for women. In the right conditions it is considerably easier than diagonal stride. If you are competent at it, it is one way to go faster with less effort and a lower heart rate. It is also fundamental to skate skiing. (Elite skiers use double pole for at least 1/3 of their mileage, and have been known to double pole entire races. )</span></p>\r\n<p align=\"justify\">                                                                                   *****************************************************************</p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Secondly, you will need to have a clear idea of your ski specific heart rate zones. And we are not talking about the generic formulas based on age or the fanciful numbers generated by watches and treadmill computers. Time trials or short races are perfect for capturing your own personal numbers. If you have been participating in running races and know your average heart rate for the race, you are in luck! Zones can be calculated from that number. Classic ski zones and running zones are usually about the same.Once you have verified your heart rates for a while you will probably have a good idea of how each zone feels, but recreational runners have been found to generally misjudge their effort levels, particularly when in groups.   Ask Jo-Ann for more details if you are interested in this.\r\n</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Focus on “polarizing” your training so that it is either super easy and slow (</span><span style=\"font-size: large;\">elite skiers spend 8o % of their training time in zones 1 and 2) or really hard (elite skiers spend above 20% of their training time in zones higher than zone 3). </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Each workout should have a specific focus (for examples, strength on skis, zone 1 recovery, long slow distance in zones 1-2, high-end intervals in zone 4 or 5, or speed work, and occasionally just a fun group ski without worrying about hard you are going). You will need an accurate HRM with a chest strap and the confidence and will power to adhere to limits. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">It also goes without saying that the focus should always be on good technique, whether skiing easy or hard. </span></p>','FITNESS OR PERFORMANCE?','','publish','closed','closed','','fitness-or-performance','','','2019-09-22 20:03:48','2019-09-23 00:03:48','',0,'https://sofits.ca/?page_id=3195',0,'page','',0),(3196,7,'2018-09-22 09:28:11','2018-09-22 13:28:11',' ','','','publish','closed','closed','','3196','','','2018-09-22 09:28:11','2018-09-22 13:28:11','',0,'https://sofits.ca/2018/09/22/3196/',23,'nav_menu_item','',0),(3197,7,'2018-09-22 09:28:11','2018-09-22 13:28:11','<p align=\"center\"><span style=\"font-size: large;\"> </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\"> </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\"><u><b>Do you lack strong, general fitness? </b></u></span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\"> Good fitness will carry you pretty far in skiing, even if your technique is not perfect. If you are lacking basic fitness, you are in the group that will see huge gains in a short time, simply by exercising consistently. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Before the ski season begins: Aim for 3 - 4 aerobic sessions a week and 2 strength sessions. (Friday’s session includes both 1 aerobic and 1 strength as well as technique) Spin classes or new-runners’ groups are a fun way to increase your fitness. Or ski stride in the park once a week in addition to Friday’s workout. Add a weekly strength class to supplement our Friday strength. And don’t forget to stretch it out. Join a yoga class or find a class online. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Start where you are at, don’t worry about keeping improve your with others, and aim for consistently showing up. Don’t worry too much about interval training until you have a “base”. Aim for consistency rather than speed to prevent injury. Intervals can be added in later. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Note that activities such as dog walking or easy hiking, although good for general health, will do little to improve your skiing. These generally fall below zone 1. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\"><u><b>Already fit and very active but want to improve your speed on skis? </b></u></span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">This is harder! It requires great motivation and patience, not to mention attention to detail and the willingness to ski on your own at times. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">First, dedicate portions of each ski to technical practice. For example, the first 15 minutes can be a warm up without poles, or a double pole session. Or find a hill on which to practice your climbs and descents a number of times. Skiing is similar to swimming in that technique is paramount. Pick one technical point and focus on that. Grab opportunities to be filmed, or take a private or semi-private or small group lesson. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Work daily at double poling. Many recreational skiers avoid using double poling, and this is particularly true for women. In the right conditions it is considerably easier than diagonal stride. If you are competent at it, it is one way to go faster with less effort and a lower heart rate. It is also fundamental to skate skiing. (Elite skiers use double pole for at least 1/3 of their mileage, and have been known to double pole entire races. )</span></p>\r\n<p align=\"center\">****************************************************************************************************************</p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Secondly, you will need to have a clear idea of your ski specific heart rate zones. And are not talking about the generic formulas based on age or the fanciful numbers generated by watches and treadmill computers. Time trials or short races are perfect for capturing your own personal numbers. If you have been participating in running races and know your average heart rate for the race, you are in luck! Zones can be calculated from that number. Classic ski zones and running zones are usually about the same. Ask Jo-Ann for more details if you are interested in this. Note that the Tuesday group will be doing this sort of thing regularly. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Focus on “polarizing” your training so that it is either super easy and slow (</span><span style=\"font-size: large;\">elite skiers spend 8o % of their training time in zones 1 and 2) or really hard (elite skiers spend above 20% of their training time in zones higher than zone 3). </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Each workout should have a specific focus (for examples, strength on skis, zone 1 recovery, long slow distance in zones 1-2, high-end intervals in zone 4 or 5, or speed work, and occasionally just a fun group ski without worrying about hard you are going). You will need an accurate HRM with a chest strap and the confidence and will power to adhere to limits. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">It also goes without saying that the focus should always be on good technique, whether skiing easy or hard. </span></p>\r\n&nbsp;','FITNESS OR PERFORMANCE?','','inherit','closed','closed','','3195-revision-v1','','','2018-09-22 09:28:11','2018-09-22 13:28:11','',3195,'https://sofits.ca/2018/09/22/3195-revision-v1/',0,'revision','',0),(3198,7,'2018-09-22 09:29:49','2018-09-22 13:29:49','<p align=\"center\"><span style=\"font-size: large;\"> </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\"> </span></p>\r\n<p align=\"center\"><span style=\"font-size: large; color: #0000ff;\"><u><strong>Do you lack strong, general fitness?</strong> </u></span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\"> Good fitness will carry you pretty far in skiing, even if your technique is not perfect. If you are lacking basic fitness, you are in the group that will see huge gains in a short time, simply by exercising consistently. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Before the ski season begins: Aim for 3 - 4 aerobic sessions a week and 2 strength sessions. (Friday’s session includes both 1 aerobic and 1 strength as well as technique) Spin classes or new-runners’ groups are a fun way to increase your fitness. Or ski stride in the park once a week in addition to Friday’s workout. Add a weekly strength class to supplement our Friday strength. And don’t forget to stretch it out. Join a yoga class or find a class online. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Start where you are at, don’t worry about keeping improve your with others, and aim for consistently showing up. Don’t worry too much about interval training until you have a “base”. Aim for consistency rather than speed to prevent injury. Intervals can be added in later. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Note that activities such as dog walking or easy hiking, although good for general health, will do little to improve your skiing. These generally fall below zone 1. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large; color: #0000ff;\"><u><strong>Already fit and very active but want to improve your speed on skis?</strong> </u></span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">This is harder! It requires great motivation and patience, not to mention attention to detail and the willingness to ski on your own at times. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">First, dedicate portions of each ski to technical practice. For example, the first 15 minutes can be a warm up without poles, or a double pole session. Or find a hill on which to practice your climbs and descents a number of times. Skiing is similar to swimming in that technique is paramount. Pick one technical point and focus on that. Grab opportunities to be filmed, or take a private or semi-private or small group lesson. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Work daily at double poling. Many recreational skiers avoid using double poling, and this is particularly true for women. In the right conditions it is considerably easier than diagonal stride. If you are competent at it, it is one way to go faster with less effort and a lower heart rate. It is also fundamental to skate skiing. (Elite skiers use double pole for at least 1/3 of their mileage, and have been known to double pole entire races. )</span></p>\r\n<p align=\"center\">****************************************************************************************************************</p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Secondly, you will need to have a clear idea of your ski specific heart rate zones. And are not talking about the generic formulas based on age or the fanciful numbers generated by watches and treadmill computers. Time trials or short races are perfect for capturing your own personal numbers. If you have been participating in running races and know your average heart rate for the race, you are in luck! Zones can be calculated from that number. Classic ski zones and running zones are usually about the same. Ask Jo-Ann for more details if you are interested in this. Note that the Tuesday group will be doing this sort of thing regularly. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Focus on “polarizing” your training so that it is either super easy and slow (</span><span style=\"font-size: large;\">elite skiers spend 8o % of their training time in zones 1 and 2) or really hard (elite skiers spend above 20% of their training time in zones higher than zone 3). </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">Each workout should have a specific focus (for examples, strength on skis, zone 1 recovery, long slow distance in zones 1-2, high-end intervals in zone 4 or 5, or speed work, and occasionally just a fun group ski without worrying about hard you are going). You will need an accurate HRM with a chest strap and the confidence and will power to adhere to limits. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\">It also goes without saying that the focus should always be on good technique, whether skiing easy or hard. </span></p>\r\n&nbsp;','FITNESS OR PERFORMANCE?','','inherit','closed','closed','','3195-revision-v1','','','2018-09-22 09:29:49','2018-09-22 13:29:49','',3195,'https://sofits.ca/2018/09/22/3195-revision-v1/',0,'revision','',0),(3199,7,'2018-09-22 09:39:47','2018-09-22 13:39:47','<p align=\"justify\"><span style=\"font-size: large;\"><u><b>DO YOU LACK STRONG, GENERAL FITNESS? </b></u> </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Good fitness will carry you pretty far in skiing, even if your technique is not perfect. If you are lacking basic fitness, you are in the group that will see huge gains in a short time, simply by exercising consistently. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Before the ski season begins: Aim for 3 - 4 aerobic sessions a week and 2 strength sessions. (Friday’s session includes both 1 aerobic and 1 strength as well as technique) Spin classes or new-runners’ groups are a fun way to increase your fitness. Or ski stride in the park once a week in addition to Friday’s workout. Add a weekly strength class to supplement our Friday strength. And don’t forget to stretch it out. Join a yoga class or find a class online. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Start where you are at, don’t worry about keeping improve your with others, and aim for consistently showing up. Don’t worry too much about interval training until you have a “base”. Aim for consistency rather than speed to prevent injury. Intervals can be added in later. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Note that activities such as dog walking or easy hiking, although good for general health, will do little to improve your skiing. These generally fall below zone 1. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\"><u><b>ALREADY FIT AND ACTIVE, BUT WANT TO IMPROVE YOUR PERFORMANCE ON SKIS?</b></u></span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">This is harder! It requires great motivation and patience, not to mention attention to detail and the willingness to ski on your own at times. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">First, dedicate portions of each ski to technical practice. For example, the first 15 minutes can be a warm up without poles, or a double pole session. Or find a hill on which to practice your climbs and descents a number of times. Skiing is similar to swimming in that technique is paramount. Pick one technical point and focus on that. Grab opportunities to be filmed, or take a private or semi-private or small group lesson. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Work daily at double poling. Many recreational skiers avoid using double poling, and this is particularly true for women. In the right conditions it is considerably easier than diagonal stride. If you are competent at it, it is one way to go faster with less effort and a lower heart rate. It is also fundamental to skate skiing. (Elite skiers use double pole for at least 1/3 of their mileage, and have been known to double pole entire races. )</span></p>\r\n<p align=\"justify\">                                                                                   *****************************************************************</p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Secondly, you will need to have a clear idea of your ski specific heart rate zones. And are not talking about the generic formulas based on age or the fanciful numbers generated by watches and treadmill computers. Time trials or short races are perfect for capturing your own personal numbers. If you have been participating in running races and know your average heart rate for the race, you are in luck! Zones can be calculated from that number. Classic ski zones and running zones are usually about the same. Ask Jo-Ann for more details if you are interested in this. Note that the Tuesday group will be doing this sort of thing regularly. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Focus on “polarizing” your training so that it is either super easy and slow (</span><span style=\"font-size: large;\">elite skiers spend 8o % of their training time in zones 1 and 2) or really hard (elite skiers spend above 20% of their training time in zones higher than zone 3). </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Each workout should have a specific focus (for examples, strength on skis, zone 1 recovery, long slow distance in zones 1-2, high-end intervals in zone 4 or 5, or speed work, and occasionally just a fun group ski without worrying about hard you are going). You will need an accurate HRM with a chest strap and the confidence and will power to adhere to limits. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">It also goes without saying that the focus should always be on good technique, whether skiing easy or hard. </span></p>','FITNESS OR PERFORMANCE?','','inherit','closed','closed','','3195-revision-v1','','','2018-09-22 09:39:47','2018-09-22 13:39:47','',3195,'https://sofits.ca/2018/09/22/3195-revision-v1/',0,'revision','',0),(3200,7,'2018-09-22 09:55:54','2018-09-22 13:55:54','&nbsp;\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SKI-FIRST-OR-ALSO-SKIS.pdf\">SKI FIRST THEN RUNS OR ALSO SKIS</a> </strong>(read this first, then open the appropriate BUILD document.)\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/BUILD-1-for-ALSO-SKIS-.pdf\">BUILD 1 for ALSO SKIS, weeks of Dec 9 - 30</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SOFITS-GENERIC-2013-BUILD-1.pdf\">BUILD 1 for SKIS FIRST</a> </strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>    </strong>Just one sample from Joe Friel (see Reading list in the next article)\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\r\n\r\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','CREATE A PLAN (ask if you would like the password)','','inherit','closed','closed','','319-revision-v1','','','2018-09-22 09:55:54','2018-09-22 13:55:54','',319,'https://sofits.ca/2018/09/22/319-revision-v1/',0,'revision','',0),(3203,7,'2018-09-28 20:07:40','2018-09-29 00:07:40','<strong>WHICH FRIDAY TRAINING GROUP ARE YOU?</strong>\r\n\r\nSome guidelines to help you choose. You may fall somewhere between two groups, and it may even change from week to week. If you are unsure, start with an easier group and see how it works out. Although fitness requires consistency and working outside your comfort zone at times, if you are in too tough a group, you will be exhausted the following day, your fitness will not im<span class=\"text_exposed_show\">prove and you have an excellent chance of getting injured or catching whatever bug is going around.\r\n</span>\r\n\r\n<span class=\"text_exposed_show\">. </span>\r\n<div class=\"text_exposed_show\">\r\n\r\n<strong>GREEN:</strong>\r\nOn Fridays this group will finish the workout with a self-monitored, hilly ski walk focusing on technique &amp; effort. Green group is intended to build basic ski fitness. You may be green if one or more  of the following apply,\r\n\r\nYou are a new runner, or a non-runner.\r\nYou cycle mostly on the flats, or very infrequently\r\nYour main love is swimming\r\nYou exercise around 5 or fewer hours each week.\r\nYou spent much of the summer on a deck chair\r\nYou ski 2 or fewer  times a week in the winter\r\nYou are feeling stressed or unusually tired\r\nYou are nursing an injury.\r\nYou were ill during the previous week(s).\r\n\r\n<strong>BLUE:</strong>\r\nOn Fridays this group will finish the workout with a structured set of hillwork. You may be blue if\r\n\r\nYou are fit\r\nYou regularly run, or cycle, often on hilly terrain.\r\nYou train 5 -6 days a week, year round\r\nYou generally train around 5 – 10 hours each week (and occasionally more)\r\nYou have no health concerns about raising your heart rate during intensity training\r\nYou like to break a sweat and challenge yourself .\r\nYou ski 3 or more times a week.\r\nYou may or may not be interested in taking part in Ski Loppets or the Ski Marathon.\r\n\r\n<strong>RED:</strong>\r\nOn Fridays this group will finish the workout with a slightly more demanding set of hill work. You may be red if\r\n\r\nYou are very fit\r\nYou are driven to compete, either in races or against yourself\r\nYou have a concrete and measurable goal (“to improve” is too vague!)\r\nYou are motivated to spend time working within your own intensity zones.\r\nYou are motivated to train alone when necessary.\r\nYou enjoy working on incremental technical improvements, and relish being videotaped\r\nYou are motivated to measure and keep track of your workouts\r\nYou enjoy working on speed, learning new skills and pushing the envelope\r\nYou ski 4 – 6 times a week and put other activities aside to get out on snow.\r\nYou generally train between 7 and 14 hours a week (and occasionally more).\r\n\r\n</div>','GREEN BLUE RED','','inherit','closed','closed','','2693-revision-v1','','','2018-09-28 20:07:40','2018-09-29 00:07:40','',2693,'https://sofits.ca/2018/09/28/2693-revision-v1/',0,'revision','',0),(3205,7,'2018-09-28 20:14:28','2018-09-29 00:14:28','<p align=\"center\"><u> </u></p>\r\n<p align=\"left\"><span style=\"font-size: large;\">Not to be confused with nordic walking, ski striding closely mimics the movements of classic skiing, including the downward, forceful and snappy setting of the wax pocket and the decisive propulsion of the poles. </span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\">It is surprisingly demanding and quite a bit slower than running, with accordingly higher heart rates, so if you are way ahead of the group, it is likely you are not ski striding! (stride rate can very from 80 to 120 strides a minutes unlike running which may go as high as 180). </span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\">There are three gears – we will cover these at practice: Ski walking, ski striding and ski bounding. Ski walking is the most difficult technically, and the one that is key to good classic technique. Ski bounding requires the greatest fitness but is needed less often (typically at the top of hills). Those who are very fit can use ski striding much of the time. Keep in mind, though that you need to be proficient in all three gears. </span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\">1. Ski walk or stride all uphills (it should feel as hard or harder than running with or without poles)</span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\">2. Ski walk or stride the flats. If you find your technique faltering on the flats (it is more challenging than on an uphill) you are allowed to hold your poles and switch into an easy jog. (If you don’t hold your poles, we may think you are ski striding and you might get called out for bad ski technique!) If you are not a runner, you should be ski walking or ski striding 100% of the time. </span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\">3. Bounding is saved for the last 10 -20 strides of an uphill, or for intensity workouts. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\"><u><b>Technical Points:</b></u></span></p>\r\n\r\n<ul>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Body lean should be constant at all times.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Back foot skims over the “snow” to land underneath your body. </span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Feet stay close to the ground, avoid bouncing. </span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Avoid knee bend “cycling”, allowing the back “ski” to come off the “snow”. </span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Feel the quick, downward snap as the ball of your foot “sets” the wax</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Arms bent</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">A</span><span style=\"font-size: large;\">s</span> <span style=\"font-size: large;\">hands</span><span style=\"font-size: large;\"> pass your body, allow your fingers to brush your hips </span><span style=\"font-size: large;\">(a drill)</span><span style=\"font-size: large;\">. </span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Eyes up! Looking down changes your body position. </span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">C</span><span style=\"font-size: large;\">ontinuous, gliding motion</span><span style=\"font-size: large;\">.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">S</span><span style=\"font-size: large;\">light hip alignment behind the forward foot, to extend the glide phase</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\"><b>SKI WALKING</b></span><span style=\"font-size: large;\"> has a decisive “kick” downwards into the ground but no lift off from the ground. Front heel lands as the back ball of the foot pushes off </span><span style=\"font-size: large;\">(2 points of contact with the ground)</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\"><b>SKI STRIDING</b></span><span style=\"font-size: large;\"> has</span> <span style=\"font-size: large;\">all the elements of ski walking but with an additional </span><span style=\"font-size: large;\">horizon</span><span style=\"font-size: large;\">t</span><span style=\"font-size: large;\">al </span><span style=\"font-size: large;\">liftoff. </span><span style=\"font-size: large;\">Y</span><span style=\"font-size: large;\">o</span><span style=\"font-size: large;\">u should feel as t</span><span style=\"font-size: large;\">hough your </span><span style=\"font-size: large;\">front foot</span> <span style=\"font-size: large;\">is pausing slightly before land</span><span style=\"font-size: large;\">ing. </span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\"><b>BOUNDING</b></span><span style=\"font-size: large;\"> needs as much ver</span><span style=\"font-size: large;\">tical height as you can manage! </span></p>\r\n</li>\r\n</ul>\r\n<p align=\"left\"><span style=\"font-size: large;\"><u><b>Ski walking – </b></u>zones 1-2 (depending on your fitness)</span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\"><u><b>Ski Striding – </b></u>zones 2 to 4 depending on your fitness </span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\"><u><b>Ski bounding</b></u> – zone 5 – briefly at the top of hills. Measure in seconds not minutes. </span></p>','SKI STRIDING 101','','publish','closed','closed','','ski-striding-101','','','2018-09-28 20:14:28','2018-09-29 00:14:28','',0,'https://sofits.ca/?page_id=3205',0,'page','',0),(3206,7,'2018-09-28 20:14:28','2018-09-29 00:14:28',' ','','','publish','closed','closed','','3206','','','2018-09-28 20:14:28','2018-09-29 00:14:28','',0,'https://sofits.ca/2018/09/28/3206/',24,'nav_menu_item','',0),(3207,7,'2018-09-28 20:14:28','2018-09-29 00:14:28','<p align=\"center\"><u> </u></p>\r\n<p align=\"left\"><span style=\"font-size: large;\">Not to be confused with nordic walking, ski striding closely mimics the movements of classic skiing, including the downward, forceful and snappy setting of the wax pocket and the decisive propulsion of the poles. </span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\">It is surprisingly demanding and quite a bit slower than running, with accordingly higher heart rates, so if you are way ahead of the group, it is likely you are not ski striding! (stride rate can very from 80 to 120 strides a minutes unlike running which may go as high as 180). </span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\">There are three gears – we will cover these at practice: Ski walking, ski striding and ski bounding. Ski walking is the most difficult technically, and the one that is key to good classic technique. Ski bounding requires the greatest fitness but is needed less often (typically at the top of hills). Those who are very fit can use ski striding much of the time. Keep in mind, though that you need to be proficient in all three gears. </span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\">1. Ski walk or stride all uphills (it should feel as hard or harder than running with or without poles)</span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\">2. Ski walk or stride the flats. If you find your technique faltering on the flats (it is more challenging than on an uphill) you are allowed to hold your poles and switch into an easy jog. (If you don’t hold your poles, we may think you are ski striding and you might get called out for bad ski technique!) If you are not a runner, you should be ski walking or ski striding 100% of the time. </span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\">3. Bounding is saved for the last 10 -20 strides of an uphill, or for intensity workouts. </span></p>\r\n<p align=\"center\"><span style=\"font-size: large;\"><u><b>Technical Points:</b></u></span></p>\r\n\r\n<ul>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Body lean should be constant at all times.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Back foot skims over the “snow” to land underneath your body. </span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Feet stay close to the ground, avoid bouncing. </span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Avoid knee bend “cycling”, allowing the back “ski” to come off the “snow”. </span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Feel the quick, downward snap as the ball of your foot “sets” the wax</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Arms bent</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">A</span><span style=\"font-size: large;\">s</span> <span style=\"font-size: large;\">hands</span><span style=\"font-size: large;\"> pass your body, allow your fingers to brush your hips </span><span style=\"font-size: large;\">(a drill)</span><span style=\"font-size: large;\">. </span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">Eyes up! Looking down changes your body position. </span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">C</span><span style=\"font-size: large;\">ontinuous, gliding motion</span><span style=\"font-size: large;\">.</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\">S</span><span style=\"font-size: large;\">light hip alignment behind the forward foot, to extend the glide phase</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\"><b>SKI WALKING</b></span><span style=\"font-size: large;\"> has a decisive “kick” downwards into the ground but no lift off from the ground. Front heel lands as the back ball of the foot pushes off </span><span style=\"font-size: large;\">(2 points of contact with the ground)</span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\"><b>SKI STRIDING</b></span><span style=\"font-size: large;\"> has</span> <span style=\"font-size: large;\">all the elements of ski walking but with an additional </span><span style=\"font-size: large;\">horizon</span><span style=\"font-size: large;\">t</span><span style=\"font-size: large;\">al </span><span style=\"font-size: large;\">liftoff. </span><span style=\"font-size: large;\">Y</span><span style=\"font-size: large;\">o</span><span style=\"font-size: large;\">u should feel as t</span><span style=\"font-size: large;\">hough your </span><span style=\"font-size: large;\">front foot</span> <span style=\"font-size: large;\">is pausing slightly before land</span><span style=\"font-size: large;\">ing. </span></p>\r\n</li>\r\n 	<li>\r\n<p align=\"left\"><span style=\"font-size: large;\"><b>BOUNDING</b></span><span style=\"font-size: large;\"> needs as much ver</span><span style=\"font-size: large;\">tical height as you can manage! </span></p>\r\n</li>\r\n</ul>\r\n<p align=\"left\"><span style=\"font-size: large;\"><u><b>Ski walking – </b></u>zones 1-2 (depending on your fitness)</span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\"><u><b>Ski Striding – </b></u>zones 2 to 4 depending on your fitness </span></p>\r\n<p align=\"left\"><span style=\"font-size: large;\"><u><b>Ski bounding</b></u> – zone 5 – briefly at the top of hills. Measure in seconds not minutes. </span></p>','SKI STRIDING 101','','inherit','closed','closed','','3205-revision-v1','','','2018-09-28 20:14:28','2018-09-29 00:14:28','',3205,'https://sofits.ca/2018/09/28/3205-revision-v1/',0,'revision','',0),(3213,7,'2018-10-14 12:34:48','2018-10-14 16:34:48','','01 Tuesday Oct 16','','inherit','open','closed','','01-tuesday-oct-16','','','2018-10-14 12:34:48','2018-10-14 16:34:48','',0,'https://sofits.ca/wp-content/uploads/01-Tuesday-Oct-16.pdf',0,'attachment','application/pdf',0),(3219,7,'2018-10-20 19:32:46','2018-10-20 23:32:46','','02 Tuesday Oct 23','','inherit','open','closed','','02-tuesday-oct-23','','','2018-10-20 19:32:46','2018-10-20 23:32:46','',0,'https://sofits.ca/wp-content/uploads/02-Tuesday-Oct-23.pdf',0,'attachment','application/pdf',0),(3221,7,'2018-10-21 14:22:11','2018-10-21 18:22:11','','02 Tuesday Oct 23A','','inherit','open','closed','','02-tuesday-oct-23a','','','2018-10-21 14:22:11','2018-10-21 18:22:11','',0,'https://sofits.ca/wp-content/uploads/02-Tuesday-Oct-23A.pdf',0,'attachment','application/pdf',0),(3222,7,'2018-10-21 14:22:14','2018-10-21 18:22:14','','02 Tuesday Oct 23B','','inherit','open','closed','','02-tuesday-oct-23b','','','2018-10-21 14:22:14','2018-10-21 18:22:14','',0,'https://sofits.ca/wp-content/uploads/02-Tuesday-Oct-23B.pdf',0,'attachment','application/pdf',0),(3224,7,'2018-10-23 14:52:29','2018-10-23 18:52:29','','04 Friday Oct 26','','inherit','open','closed','','04-friday-oct-26','','','2018-10-23 14:52:29','2018-10-23 18:52:29','',0,'https://sofits.ca/wp-content/uploads/04-Friday-Oct-26.pdf',0,'attachment','application/pdf',0),(3231,7,'2018-10-26 14:20:28','2018-10-26 18:20:28','','Sofits GOALs 2018-2019','','inherit','open','closed','','sofits-goals-2018-2019','','','2018-10-26 14:20:28','2018-10-26 18:20:28','',0,'https://sofits.ca/wp-content/uploads/Sofits-GOALs-2018-2019.pdf',0,'attachment','application/pdf',0),(3233,7,'2018-10-29 18:45:18','2018-10-29 22:45:18','','03 Tuesday Oct 30A','','inherit','open','closed','','03-tuesday-oct-30a','','','2018-10-29 18:45:18','2018-10-29 22:45:18','',0,'https://sofits.ca/wp-content/uploads/03-Tuesday-Oct-30A.pdf',0,'attachment','application/pdf',0),(3234,7,'2018-10-29 18:45:20','2018-10-29 22:45:20','','03 Tuesday Oct 30B','','inherit','open','closed','','03-tuesday-oct-30b','','','2018-10-29 18:45:20','2018-10-29 22:45:20','',0,'https://sofits.ca/wp-content/uploads/03-Tuesday-Oct-30B.pdf',0,'attachment','application/pdf',0),(3235,7,'2018-10-29 18:45:22','2018-10-29 22:45:22','','03 Tuesday Oct 30C','','inherit','open','closed','','03-tuesday-oct-30c','','','2018-10-29 18:45:22','2018-10-29 22:45:22','',0,'https://sofits.ca/wp-content/uploads/03-Tuesday-Oct-30C.pdf',0,'attachment','application/pdf',0),(3238,7,'2018-10-31 18:24:03','2018-10-31 22:24:03','','05 Friday Nov 2','','inherit','open','closed','','05-friday-nov-2','','','2018-10-31 18:24:03','2018-10-31 22:24:03','',0,'https://sofits.ca/wp-content/uploads/05-Friday-Nov-2.pdf',0,'attachment','application/pdf',0),(3243,7,'2018-11-05 17:37:57','2018-11-05 22:37:57','','04 Tuesday Nov 6','','inherit','open','closed','','04-tuesday-nov-6','','','2018-11-05 17:37:57','2018-11-05 22:37:57','',0,'https://sofits.ca/wp-content/uploads/04-Tuesday-Nov-6.pdf',0,'attachment','application/pdf',0),(3245,7,'2018-11-05 17:41:00','2018-11-05 22:41:00','','04 Tuesday Nov 6','','inherit','open','closed','','04-tuesday-nov-6-2','','','2018-11-05 17:41:00','2018-11-05 22:41:00','',0,'https://sofits.ca/wp-content/uploads/04-Tuesday-Nov-6-1.pdf',0,'attachment','application/pdf',0),(3247,7,'2018-11-06 21:54:52','2018-11-07 02:54:52','','06 Friday Nov 9','','inherit','open','closed','','06-friday-nov-9','','','2018-11-06 21:54:52','2018-11-07 02:54:52','',0,'https://sofits.ca/wp-content/uploads/06-Friday-Nov-9.pdf',0,'attachment','application/pdf',0),(3251,7,'2018-11-20 19:31:53','2018-11-21 00:31:53','','08 Friday Nov 23','','inherit','open','closed','','08-friday-nov-23','','','2018-11-20 19:31:53','2018-11-21 00:31:53','',0,'https://sofits.ca/wp-content/uploads/08-Friday-Nov-23-.pdf',0,'attachment','application/pdf',0),(3254,7,'2018-12-03 18:11:40','2018-12-03 23:11:40','','09 Tuesday Dec 4','','inherit','open','closed','','09-tuesday-dec-4','','','2018-12-03 18:11:40','2018-12-03 23:11:40','',0,'https://sofits.ca/wp-content/uploads/09-Tuesday-Dec-4.pdf',0,'attachment','application/pdf',0),(3256,7,'2018-12-06 13:36:05','2018-12-06 18:36:05','','10 Friday Dec 7 5K','','inherit','open','closed','','10-friday-dec-7-5k','','','2018-12-06 13:36:05','2018-12-06 18:36:05','',0,'https://sofits.ca/wp-content/uploads/10-Friday-Dec-7-5K.pdf',0,'attachment','application/pdf',0),(3261,7,'2018-12-17 19:16:04','2018-12-18 00:16:04','<a href=\"https://sofits.ca/wp-content/uploads/DEC-7-RESULTS.pdf\">DEC 7 RESULTS</a>\n\nHere are the updated \"results\" from the 5 K ski on December 3. Based on the notes I received they are a fascinating mix of exact times, extrapolations and approximations. In any case, this is just a snapshot of how you skied on a given day. The results can be affected by so many variables including your fitness, your technique, the snow conditions, your grip wax, the quality of your skis, your glide wax, how many years you have skied, how many times you skied this year, if you were well rested, , whether you were trying to go fast or simply have a moderate and steady ski because you weren\'t feeling well, your mood, how many hours since you ate, how many years since menopause and whether you are on performance enhancing hormones or drugs (yes, even caffeine! ). It\'s a complicated sport. Bravo everyone!','RESULTS','','private','closed','closed','','results','','','2019-09-08 18:12:39','2019-09-08 22:12:39','',0,'https://sofits.ca/?page_id=3261',0,'page','',0),(3262,7,'2018-12-17 19:14:51','2018-12-18 00:14:51','','DEC 7 RESULTS','','inherit','open','closed','','dec-7-results','','','2018-12-17 19:14:51','2018-12-18 00:14:51','',3261,'https://sofits.ca/wp-content/uploads/DEC-7-RESULTS.pdf',0,'attachment','application/pdf',0),(3263,7,'2018-12-17 19:16:04','2018-12-18 00:16:04',' ','','','publish','closed','closed','','3263','','','2018-12-17 19:16:04','2018-12-18 00:16:04','',0,'https://sofits.ca/2018/12/17/3263/',26,'nav_menu_item','',0),(3264,7,'2018-12-17 19:16:04','2018-12-18 00:16:04','<a href=\"https://sofits.ca/wp-content/uploads/DEC-7-RESULTS.pdf\">DEC 7 RESULTS</a>\r\n\r\nHere are the updated \"results\" from the 5 K ski on December 3. Based on the notes I received they are a fascinating mix of exact times, extrapolations and approximations. In any case, this is just a snapshot of how you skied on a given day. The results can be affected by so many variables including your fitness, your technique, the snow conditions, your grip wax, the quality of your skis, your glide wax, how many years you have skied, how many times you skied this year, if you were well rested, , whether you were trying to go fast or simply have a moderate and steady ski because you weren\'t feeling well, your mood, how many hours since you ate, how many years since menopause and whether you are on performance enhancing hormones or drugs (yes, even caffeine! ). It\'s a complicated sport. Bravo everyone!','Results','','inherit','closed','closed','','3261-revision-v1','','','2018-12-17 19:16:04','2018-12-18 00:16:04','',3261,'https://sofits.ca/2018/12/17/3261-revision-v1/',0,'revision','',0),(3265,7,'2018-12-17 19:17:00','2018-12-18 00:17:00','<a href=\"https://sofits.ca/wp-content/uploads/DEC-7-RESULTS.pdf\">DEC 7 RESULTS</a>\r\n\r\nHere are the updated \"results\" from the 5 K ski on December 3. Based on the notes I received they are a fascinating mix of exact times, extrapolations and approximations. In any case, this is just a snapshot of how you skied on a given day. The results can be affected by so many variables including your fitness, your technique, the snow conditions, your grip wax, the quality of your skis, your glide wax, how many years you have skied, how many times you skied this year, if you were well rested, , whether you were trying to go fast or simply have a moderate and steady ski because you weren\'t feeling well, your mood, how many hours since you ate, how many years since menopause and whether you are on performance enhancing hormones or drugs (yes, even caffeine! ). It\'s a complicated sport. Bravo everyone!','RESULTS','','inherit','closed','closed','','3261-revision-v1','','','2018-12-17 19:17:00','2018-12-18 00:17:00','',3261,'https://sofits.ca/2018/12/17/3261-revision-v1/',0,'revision','',0),(3267,7,'2019-01-07 23:03:32','2019-01-08 04:03:32','','12 Tuesday Jan 8','','inherit','open','closed','','12-tuesday-jan-8','','','2019-01-07 23:03:32','2019-01-08 04:03:32','',0,'https://sofits.ca/wp-content/uploads/12-Tuesday-Jan-8.pdf',0,'attachment','application/pdf',0),(3269,7,'2019-01-14 19:18:18','2019-01-15 00:18:18','','13 Tuesday Jan 15','','inherit','open','closed','','13-tuesday-jan-15','','','2019-01-14 19:18:18','2019-01-15 00:18:18','',0,'https://sofits.ca/wp-content/uploads/13-Tuesday-Jan-15.pdf',0,'attachment','application/pdf',0),(3271,7,'2019-01-15 14:31:06','2019-01-15 19:31:06','<strong>WHICH SKI GROUP ARE YOU?</strong>\r\n\r\nWe welcome skiers of all levels providing you are comfortable on skis, and can ski in control on downhill sections.\r\n\r\nFor group skiing and for our workouts, it is helpful to be able to find a compatible group.  Here are some guidelines to help you choose. You may fall somewhere between two groups, and it may even change from week to week. If you are unsure, start with an easier group and see how it works out. Although fitness requires consistency and working outside your comfort zone at times, if you are in too tough a group, you will be exhausted the following day, or discouraged If you ski above your comfort level, your fitness may not im<span class=\"text_exposed_show\">prove and you have an excellent chance of getting injured or catching whatever bug is going around.\r\n</span>\r\n\r\n<span class=\"text_exposed_show\">. </span>\r\n<div class=\"text_exposed_show\">\r\n\r\n<strong>GREEN: (Mainly parkway skiing, trail 50 and Ridge Road, depending on snow conditions )</strong>\r\nGreen group is intended to build basic ski fitness and to acquire experience skiing on non technical trails. You may be green if one or more  of the following apply,\r\n\r\nYou are a new runner, or a non-runner.\r\nYou cycle mostly on the flats, or very infrequently\r\nYour main love is swimming\r\nYou exercise around 5 or fewer hours each week.\r\nYou spent much of the summer on a deck chair\r\nYou ski 2 or fewer  times a week in the winter\r\nYou are feeling stressed or unusually tired\r\nYou are nursing an injury.\r\nYou were ill during the previous week(s).\r\n\r\n<strong>BLUE: (Will ski on any classic or skate trail in the park, depending on conditions.  May possibly go back country)</strong>\r\nYou may be blue if\r\n\r\nYou are fit\r\nYou regularly run, or cycle, often on hilly terrain.\r\nYou train 5 -6 days a week, year round\r\nYou generally train around 5 – 10 hours each week (and occasionally more)\r\nYou have no health concerns about raising your heart rate during intensity training\r\nYou like to break a sweat and challenge yourself .\r\nYou ski 3 or more times each week.\r\nYou may or may not be interested in taking part in Ski Loppets or the Ski Marathon.\r\n\r\n<strong>RED: (Will ski on any classic or skate trail in the park, in a range of conditions. May possibly go back country )</strong>\r\nYou may be red if\r\n\r\nYou are very fit\r\nYou are driven to compete, either in races or against yourself\r\nYou have a concrete and measurable goal (“to improve” is too vague!)\r\nYou are motivated to spend time working within your own intensity zones.\r\nYou are motivated to train alone when necessary.\r\nYou enjoy working on incremental technical improvements, and relish being videotaped\r\nYou are motivated to measure and keep track of your workouts\r\nYou enjoy working on speed, learning new skills and pushing the envelope\r\nYou ski 4 – 6 times a week and put other activities aside to get out on snow.\r\nYou generally train between 7 and 14 hours a week (and occasionally more).\r\n\r\n</div>','GREEN BLUE RED','','inherit','closed','closed','','2693-revision-v1','','','2019-01-15 14:31:06','2019-01-15 19:31:06','',2693,'https://sofits.ca/2019/01/15/2693-revision-v1/',0,'revision','',0),(3272,7,'2019-01-15 14:32:48','2019-01-15 19:32:48','<strong>WHICH SKI GROUP ARE YOU?</strong>\r\n\r\nWe welcome skiers of all levels providing you are comfortable on skis, and can ski in control on downhill sections.\r\n\r\nFor group skiing and for our workouts, it is important ski with a compatible group.  Here are some guidelines to help you choose. You may fall somewhere between two groups, and it may even change from week to week. If you are unsure, start with an easier group and see how it works out. Although fitness requires consistency and working outside your comfort zone at times, if you are in too tough a group, you will be exhausted or discouraged.   If you regularly ski above your comfort level, your fitness may not im<span class=\"text_exposed_show\">prove and you have an excellent chance of getting injured or catching whatever bug is going around.\r\n</span>\r\n\r\n<span class=\"text_exposed_show\">. </span>\r\n<div class=\"text_exposed_show\">\r\n\r\n<strong>GREEN: (Mainly parkway skiing, trail 50 and Ridge Road, depending on snow conditions )</strong>\r\nGreen group is intended to build basic ski fitness and to acquire experience skiing on non technical trails. You may be green if one or more  of the following apply,\r\n\r\nYou are a new runner, or a non-runner.\r\nYou cycle mostly on the flats, or very infrequently\r\nYour main love is swimming\r\nYou exercise around 5 or fewer hours each week.\r\nYou spent much of the summer on a deck chair\r\nYou ski 2 or fewer  times a week in the winter\r\nYou are feeling stressed or unusually tired\r\nYou are nursing an injury.\r\nYou were ill during the previous week(s).\r\n\r\n<strong>BLUE: (Will ski on any classic or skate trail in the park, depending on conditions.  May possibly go back country)</strong>\r\nYou may be blue if\r\n\r\nYou are fit\r\nYou regularly run, or cycle, often on hilly terrain.\r\nYou train 5 -6 days a week, year round\r\nYou generally train around 5 – 10 hours each week (and occasionally more)\r\nYou have no health concerns about raising your heart rate during intensity training\r\nYou like to break a sweat and challenge yourself .\r\nYou ski 3 or more times each week.\r\nYou may or may not be interested in taking part in Ski Loppets or the Ski Marathon.\r\n\r\n<strong>RED: (Will ski on any classic or skate trail in the park, in a range of conditions. May possibly go back country )</strong>\r\nYou may be red if\r\n\r\nYou are very fit\r\nYou are driven to compete, either in races or against yourself\r\nYou have a concrete and measurable goal (“to improve” is too vague!)\r\nYou are motivated to spend time working within your own intensity zones.\r\nYou are motivated to train alone when necessary.\r\nYou enjoy working on incremental technical improvements, and relish being videotaped\r\nYou are motivated to measure and keep track of your workouts\r\nYou enjoy working on speed, learning new skills and pushing the envelope\r\nYou ski 4 – 6 times a week and put other activities aside to get out on snow.\r\nYou generally train between 7 and 14 hours a week (and occasionally more).\r\n\r\n</div>','GREEN BLUE RED','','inherit','closed','closed','','2693-revision-v1','','','2019-01-15 14:32:48','2019-01-15 19:32:48','',2693,'https://sofits.ca/2019/01/15/2693-revision-v1/',0,'revision','',0),(3273,7,'2019-01-15 14:33:25','2019-01-15 19:33:25','<strong>WHICH SKI GROUP ARE YOU?</strong>\r\n\r\nWe welcome skiers of all levels providing you are comfortable on skis, and can ski in control on downhill sections.\r\n\r\nFor group skiing and for our workouts, it is important to ski with a compatible group.  Here are some guidelines to help you choose. You may fall somewhere between two groups, and it may even change from week to week. If you are unsure, start with an easier group and see how it works out. Although fitness requires consistency and working outside your comfort zone at times, if you are in too tough a group, you will be exhausted or discouraged.   If you regularly ski above your comfort level, your fitness may not im<span class=\"text_exposed_show\">prove and you have an excellent chance of getting injured or catching whatever bug is going around.\r\n</span>\r\n\r\n<span class=\"text_exposed_show\">. </span>\r\n<div class=\"text_exposed_show\">\r\n\r\n<strong>GREEN: (Mainly parkway skiing, trail 50 and Ridge Road, depending on snow conditions )</strong>\r\nGreen group is intended to build basic ski fitness and to acquire experience skiing on non technical trails. You may be green if one or more  of the following apply,\r\n\r\nYou are a new runner, or a non-runner.\r\nYou cycle mostly on the flats, or very infrequently\r\nYour main love is swimming\r\nYou exercise around 5 or fewer hours each week.\r\nYou spent much of the summer on a deck chair\r\nYou ski 2 or fewer  times a week in the winter\r\nYou are feeling stressed or unusually tired\r\nYou are nursing an injury.\r\nYou were ill during the previous week(s).\r\n\r\n<strong>BLUE: (Will ski on any classic or skate trail in the park, depending on conditions.  May possibly go back country)</strong>\r\nYou may be blue if\r\n\r\nYou are fit\r\nYou regularly run, or cycle, often on hilly terrain.\r\nYou train 5 -6 days a week, year round\r\nYou generally train around 5 – 10 hours each week (and occasionally more)\r\nYou have no health concerns about raising your heart rate during intensity training\r\nYou like to break a sweat and challenge yourself .\r\nYou ski 3 or more times each week.\r\nYou may or may not be interested in taking part in Ski Loppets or the Ski Marathon.\r\n\r\n<strong>RED: (Will ski on any classic or skate trail in the park, in a range of conditions. May possibly go back country )</strong>\r\nYou may be red if\r\n\r\nYou are very fit\r\nYou are driven to compete, either in races or against yourself\r\nYou have a concrete and measurable goal (“to improve” is too vague!)\r\nYou are motivated to spend time working within your own intensity zones.\r\nYou are motivated to train alone when necessary.\r\nYou enjoy working on incremental technical improvements, and relish being videotaped\r\nYou are motivated to measure and keep track of your workouts\r\nYou enjoy working on speed, learning new skills and pushing the envelope\r\nYou ski 4 – 6 times a week and put other activities aside to get out on snow.\r\nYou generally train between 7 and 14 hours a week (and occasionally more).\r\n\r\n</div>','GREEN BLUE RED','','inherit','closed','closed','','2693-revision-v1','','','2019-01-15 14:33:25','2019-01-15 19:33:25','',2693,'https://sofits.ca/2019/01/15/2693-revision-v1/',0,'revision','',0),(3275,7,'2019-01-18 22:07:52','2019-01-19 03:07:52','<strong>WHICH SKI GROUP ARE YOU?</strong>\r\n\r\nWe welcome skiers of all levels providing you are comfortable on skis, and can ski in control on downhill sections.\r\n\r\nFor group skiing and for our workouts, it is important to ski with a compatible group.  Here are some guidelines to help you choose. You may fall somewhere between two groups, and it may even change from week to week. If you are unsure, start with an easier group and see how it works out. Although fitness requires consistency and working outside your comfort zone at times, if you are in too tough a group, you will be exhausted or discouraged.   If you regularly ski above your comfort level, your fitness may not im<span class=\"text_exposed_show\">prove and you have an excellent chance of getting injured or catching whatever bug is going around.\r\n</span>\r\n\r\n<span class=\"text_exposed_show\">. </span>\r\n<div class=\"text_exposed_show\">\r\n\r\n<strong>GREEN: (Mainly parkway skiing, trail 50 and Ridge Road, depending on snow conditions )</strong>\r\nGreen group is intended to build basic ski fitness and to acquire experience skiing on non technical trails. You may be green if one or more  of the following apply,\r\n\r\nA typical ski would be 13 K and under on an average day\r\n\r\nYou are a new runner, or a non-runner.\r\nYou cycle mostly on the flats, or very infrequently\r\nYour main love is swimming\r\nYou exercise around 5 or fewer hours each week.\r\nYou spent much of the summer on a deck chair\r\nYou ski 2 or fewer  times a week in the winter\r\nYou are feeling stressed or unusually tired\r\nYou are nursing an injury.\r\nYou were ill during the previous week(s).\r\n\r\n&nbsp;\r\n\r\n<strong>BLUE: (Will ski on any classic or skate trail in the park, depending on conditions.  May possibly go back country)</strong>\r\nYou may be blue if\r\n\r\nYou comfortably ski 15 - 20 K on an average day\r\n\r\nYou are fit\r\nYou regularly run, or cycle, often on hilly terrain.\r\nYou train 5 -6 days a week, year round\r\nYou generally train around 5 – 10 hours each week (and occasionally more)\r\nYou have no health concerns about raising your heart rate during intensity training\r\nYou like to break a sweat and challenge yourself .\r\nYou ski 3 or more times each week.\r\nYou may or may not be interested in taking part in Ski Loppets or the Ski Marathon.\r\n\r\n<strong>RED: (Will ski on any classic or skate trail in the park, in a range of conditions. May possibly go back country )</strong>\r\nYou may be red if\r\n\r\nYou comfortably ski more than 25 K on an average day.\r\n\r\nYou are very fit\r\nYou are driven to compete, either in races or against yourself\r\nYou have a concrete and measurable goal (“to improve” is too vague!)\r\nYou are motivated to spend time working within your own intensity zones.\r\nYou are motivated to train alone when necessary.\r\nYou enjoy working on incremental technical improvements, and relish being videotaped\r\nYou are motivated to measure and keep track of your workouts\r\nYou enjoy working on speed, learning new skills and pushing the envelope\r\nYou ski 4 – 6 times a week and put other activities aside to get out on snow.\r\nYou generally train between 7 and 14 hours a week (and occasionally more).\r\n\r\n</div>','GREEN BLUE RED','','inherit','closed','closed','','2693-revision-v1','','','2019-01-18 22:07:52','2019-01-19 03:07:52','',2693,'https://sofits.ca/2019/01/18/2693-revision-v1/',0,'revision','',0),(3276,7,'2019-01-18 22:11:53','2019-01-19 03:11:53','<strong>WHICH SKI GROUP ARE YOU?</strong>\r\n\r\nWe welcome skiers of all levels providing you are comfortable on skis, and can ski in control on downhill sections.\r\n\r\nFor group skiing and for our workouts, it is important to ski with a compatible group.  Here are some guidelines to help you choose. You may fall somewhere between two groups, and it may even change from week to week. If you are unsure, start with an easier group and see how it works out. Although fitness requires consistency and working outside your comfort zone at times, if you are in too tough a group, you will be exhausted or discouraged.   If you regularly ski above your comfort level, your fitness may not im<span class=\"text_exposed_show\">prove and you have an excellent chance of getting injured or catching whatever bug is going around.\r\n</span>\r\n\r\n<span class=\"text_exposed_show\">. </span>\r\n<div class=\"text_exposed_show\">\r\n\r\n<strong>GREEN: (Mainly parkway skiing, trail 50 and Ridge Road, depending on snow conditions )</strong>\r\nGreen group is intended to build basic ski fitness and to acquire experience skiing on non technical trails. You may be green if one or more  of the following apply,\r\n\r\nA typical ski would be 13 K or less\r\n\r\nYou are a new runner, or a non-runner.\r\nYou cycle mostly on the flats, or very infrequently\r\nYour main love is swimming\r\nYou exercise around 5 or fewer hours each week.\r\nYou spent much of the summer on a deck chair\r\nYou ski 2 or fewer  times a week in the winter\r\nYou are feeling stressed or unusually tired\r\nYou are nursing an injury.\r\nYou were ill during the previous week(s).\r\n\r\n&nbsp;\r\n\r\n<strong>BLUE: (Will ski on any classic or skate trail in the park, depending on conditions.  May possibly go back country)</strong>\r\nYou may be blue if\r\n\r\nYou comfortably ski 15 - 20 K on an average day\r\n\r\nYou are fit\r\nYou regularly run, or cycle, often on hilly terrain.\r\nYou train 5 -6 days a week, year round\r\nYou generally train around 5 – 10 hours each week (and occasionally more)\r\nYou have no health concerns about raising your heart rate during intensity training\r\nYou like to break a sweat and challenge yourself .\r\nYou ski 3 or more times each week.\r\nYou may or may not be interested in taking part in Ski Loppets or the Ski Marathon.\r\n\r\n<strong>RED: (Will ski on any classic or skate trail in the park, in a range of conditions. May possibly go back country )</strong>\r\nYou may be red if\r\n\r\nYou usually ski over 20K an an average ski day\r\n\r\nYou are very fit\r\nYou are driven to compete, either in races or against yourself\r\nYou have a concrete and measurable goal (“to improve” is too vague!)\r\nYou are motivated to spend time working within your own intensity zones.\r\nYou are motivated to train alone when necessary.\r\nYou enjoy working on incremental technical improvements, and relish being videotaped\r\nYou are motivated to measure and keep track of your workouts\r\nYou enjoy working on speed, learning new skills and pushing the envelope\r\nYou ski 4 – 6 times a week and put other activities aside to get out on snow.\r\nYou generally train between 7 and 14 hours a week (and occasionally more).\r\n\r\n</div>','GREEN BLUE RED','','inherit','closed','closed','','2693-revision-v1','','','2019-01-18 22:11:53','2019-01-19 03:11:53','',2693,'https://sofits.ca/2019/01/18/2693-revision-v1/',0,'revision','',0),(3277,7,'2019-01-24 11:18:05','2019-01-24 16:18:05','','Jan 25 Workout Continuous Ski','','inherit','open','closed','','jan-25-workout-continuous-ski','','','2019-01-24 11:18:05','2019-01-24 16:18:05','',0,'https://sofits.ca/wp-content/uploads/Jan-25-Workout-Continuous-Ski.pdf',0,'attachment','application/pdf',0),(3282,7,'2019-04-14 08:46:28','2019-04-14 12:46:28','','Keogan','','publish','closed','closed','','keogan','','','2019-04-14 08:46:28','2019-04-14 12:46:28','',0,'https://sofits.ca/venue/keogan/',0,'tribe_venue','',0),(3283,7,'2019-04-14 08:46:32','2019-04-14 12:46:32','','Jo-Ann','','publish','closed','closed','','jo-ann','','','2019-04-14 08:53:46','2019-04-14 12:53:46','',0,'https://sofits.ca/organizer/jo-ann/',0,'tribe_organizer','',0),(3288,7,'2019-04-14 09:02:33','2019-04-14 13:02:33','','080429','','inherit','open','closed','','080429','','','2019-04-14 09:02:33','2019-04-14 13:02:33','',0,'https://sofits.ca/wp-content/uploads/080429.jpg',0,'attachment','image/jpeg',0),(3301,7,'2019-04-14 12:40:07','2019-04-14 16:40:07','','My First Calendar','','publish','closed','closed','','my-first-calendar','','','2019-04-14 12:40:07','2019-04-14 16:40:07','',0,'https://sofits.ca/calendar/my-first-calendar/',0,'gd_calendar','',0),(3302,7,'2019-04-14 12:40:07','2019-04-14 16:40:07','','My First Event','','publish','closed','closed','','my-first-event','','','2019-04-14 12:40:07','2019-04-14 16:40:07','',0,'https://sofits.ca/events/my-first-event/',0,'gd_events','',0),(3303,7,'2019-04-14 12:40:08','2019-04-14 16:40:08','','My First Venue','','publish','closed','closed','','my-first-venue','','','2019-04-14 12:40:08','2019-04-14 16:40:08','',0,'https://sofits.ca/venue/my-first-venue/',0,'gd_venues','',0),(3304,7,'2019-04-14 12:40:09','2019-04-14 16:40:09','','My First Organizer','','publish','closed','closed','','my-first-organizer','','','2019-04-14 12:40:09','2019-04-14 16:40:09','',0,'https://sofits.ca/organizer/my-first-organizer/',0,'gd_organizers','',0),(3305,7,'2019-04-14 12:42:37','2019-04-14 16:42:37','[gd_calendar id=\"3301\"]','My First Event','','inherit','closed','closed','','3302-autosave-v1','','','2019-04-14 12:42:37','2019-04-14 16:42:37','',3302,'https://sofits.ca/2019/04/14/3302-autosave-v1/',0,'revision','',0),(3306,7,'2019-04-14 12:43:54','2019-04-14 16:43:54','[ecwd id=\"3306\" type=\"full\" page_items=\"5\" event_search=\"yes\" display=\"full\" displays=\"full,list,week,day\" filters=\"\"]','Calendar','','publish','closed','closed','','events','','','2019-04-14 12:59:52','2019-04-14 16:59:52','',0,'https://sofits.ca/2019/04/14/calendar/',0,'ecwd_calendar','',0),(3308,7,'2019-04-14 12:57:46','2019-04-14 16:57:46','<img class=\"alignnone size-full wp-image-3296\" src=\"https://sofits.ca/wp-content/uploads/170425_Fortune-and-Burma_0099.jpg\" alt=\"\" width=\"1000\" height=\"738\" />','Hike Potluck and Awards','','publish','open','closed','','hike-potluck-and-awards','','','2019-04-14 12:57:46','2019-04-14 16:57:46','',0,'https://sofits.ca/?post_type=ecwd_event&#038;p=3308',0,'ecwd_event','',0),(3309,7,'2019-04-14 12:56:54','2019-04-14 16:56:54','','Jo-Ann','','publish','closed','closed','','jo-ann','','','2019-04-14 12:56:54','2019-04-14 16:56:54','',0,'https://sofits.ca/organizer/jo-ann/',0,'ecwd_organizer','',0),(3310,7,'2019-04-14 12:57:17','2019-04-14 16:57:17','Meet at P10 and hike to Keogan (3.5 k). Bring a very simple potluck item of finger food, and a garbage bag. We will collect litter as we hike.','P10 to Keogan','','publish','closed','closed','','p10-to-keogan','','','2019-04-14 12:57:17','2019-04-14 16:57:17','',0,'https://sofits.ca/venue/p10-to-keogan/',0,'ecwd_venue','',0),(3311,7,'2019-04-15 16:20:13','2019-04-15 20:20:13','','170425_Fortune-and-Burma_0099','','inherit','open','closed','','170425_fortune-and-burma_0099','','','2019-04-15 16:20:13','2019-04-15 20:20:13','',0,'https://sofits.ca/wp-content/uploads/170425_Fortune-and-Burma_0099.jpg',0,'attachment','image/jpeg',0),(3317,7,'2019-04-15 17:00:03','2019-04-15 21:00:03','<img class=\"alignnone size-full wp-image-3547\" src=\"https://sofits.ca/wp-content/uploads/191213_Sofits-Ruins_21.jpg\" alt=\"\" width=\"1000\" height=\"648\" /><img class=\"alignnone size-full wp-image-3544\" src=\"https://sofits.ca/wp-content/uploads/191129_Sofits-Nakkertok1.jpg\" alt=\"\" width=\"1000\" height=\"587\" /><img class=\"alignnone size-full wp-image-3542\" src=\"https://sofits.ca/wp-content/uploads/191122_Sofits-Post-Rain-Nakkertok181130.jpg\" alt=\"\" width=\"1000\" height=\"630\" /><img class=\"alignnone size-full wp-image-3532\" src=\"https://sofits.ca/wp-content/uploads/191025_Sofits-Penguin_1.jpg\" alt=\"\" width=\"1000\" height=\"750\" /><img class=\"alignnone size-full wp-image-3426\" src=\"https://sofits.ca/wp-content/uploads/190920_Sofits-Send-Off_02.jpg\" alt=\"\" width=\"1000\" height=\"552\" />\r\n\r\n[Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','SOFITS','','publish','closed','closed','','dryland','','','2020-03-15 15:11:14','2020-03-15 19:11:14','',0,'https://sofits.ca/?page_id=3317',0,'page','',0),(3318,7,'2019-04-15 17:00:03','2019-04-15 21:00:03',' ','','','publish','closed','closed','','3318','','','2019-04-15 17:00:03','2019-04-15 21:00:03','',0,'https://sofits.ca/2019/04/15/3318/',28,'nav_menu_item','',0),(3319,7,'2019-04-15 17:00:03','2019-04-15 21:00:03','','EVENTS','','inherit','closed','closed','','3317-revision-v1','','','2019-04-15 17:00:03','2019-04-15 21:00:03','',3317,'https://sofits.ca/2019/04/15/3317-revision-v1/',0,'revision','',0),(3320,7,'2019-04-15 17:00:52','2019-04-15 21:00:52','[Spider_Calendar id=\"1\" theme=\"13\" default=\"month\" select=\"month,list,week,day,\"]','EVENTS','','inherit','closed','closed','','3317-revision-v1','','','2019-04-15 17:00:52','2019-04-15 21:00:52','',3317,'https://sofits.ca/2019/04/15/3317-revision-v1/',0,'revision','',0),(3331,7,'2019-05-19 12:35:31','2019-05-19 16:35:31','','160831_-Gats-Bike-Ride-13-2','','inherit','open','closed','','160831_-gats-bike-ride-13-2','','','2019-05-19 12:35:31','2019-05-19 16:35:31','',0,'https://sofits.ca/wp-content/uploads/160831_-Gats-Bike-Ride-13-2.jpg',0,'attachment','image/jpeg',0),(3341,7,'2019-08-31 21:49:57','2019-09-01 01:49:57','[Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','EVENTS','','inherit','closed','closed','','3317-revision-v1','','','2019-08-31 21:49:57','2019-09-01 01:49:57','',3317,'https://sofits.ca/2019/08/31/3317-revision-v1/',0,'revision','',0),(3352,7,'2019-09-01 15:46:31','2019-09-01 19:46:31','This page is used by Events Made Easy. Don\'t change it, don\'t use it in your menu\'s, don\'t delete it. Just make sure the EME setting called \'Events page\' points to this page. EME uses this page to render any and all events, locations, bookings, maps, ... anything. If you do want to delete this page, create a new one EME can use and update the EME setting \'Events page\' accordingly.','Events','','private','closed','closed','','events-3','','','2019-09-01 17:40:34','2019-09-01 21:40:34','',0,'https://sofits.ca/events-3/',0,'page','',0),(3355,7,'2019-09-01 15:46:31','2019-09-01 19:46:31',' ','','','publish','closed','closed','','3355','','','2019-09-01 15:46:31','2019-09-01 19:46:31','',0,'https://sofits.ca/2019/09/01/3355/',29,'nav_menu_item','',0),(3365,7,'2019-09-01 17:40:34','2019-09-01 21:40:34','This page is used by Events Made Easy. Don\'t change it, don\'t use it in your menu\'s, don\'t delete it. Just make sure the EME setting called \'Events page\' points to this page. EME uses this page to render any and all events, locations, bookings, maps, ... anything. If you do want to delete this page, create a new one EME can use and update the EME setting \'Events page\' accordingly.','Events','','inherit','closed','closed','','3352-revision-v1','','','2019-09-01 17:40:34','2019-09-01 21:40:34','',3352,'https://sofits.ca/2019/09/01/3352-revision-v1/',0,'revision','',0),(3367,7,'2019-12-13 14:54:32','2019-12-13 19:54:32','<img class=\"alignnone size-full wp-image-3547\" src=\"https://sofits.ca/wp-content/uploads/191213_Sofits-Ruins_21.jpg\" alt=\"\" width=\"1000\" height=\"648\" /><img class=\"alignnone size-full wp-image-3544\" src=\"https://sofits.ca/wp-content/uploads/191129_Sofits-Nakkertok1.jpg\" alt=\"\" width=\"1000\" height=\"587\" /><img class=\"alignnone size-full wp-image-3542\" src=\"https://sofits.ca/wp-content/uploads/191122_Sofits-Post-Rain-Nakkertok181130.jpg\" alt=\"\" width=\"1000\" height=\"630\" /><img class=\"alignnone size-full wp-image-3532\" src=\"https://sofits.ca/wp-content/uploads/191025_Sofits-Penguin_1.jpg\" alt=\"\" width=\"1000\" height=\"750\" /><img class=\"alignnone size-full wp-image-3426\" src=\"https://sofits.ca/wp-content/uploads/190920_Sofits-Send-Off_02.jpg\" alt=\"\" width=\"1000\" height=\"552\" />\n\n[Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','SOFITS  2019-2020  CALENDAR','','inherit','closed','closed','','3317-autosave-v1','','','2019-12-13 14:54:32','2019-12-13 19:54:32','',3317,'https://sofits.ca/2019/09/01/3317-autosave-v1/',0,'revision','',0),(3368,7,'2019-09-01 17:44:22','2019-09-01 21:44:22','<img class=\"alignnone size-full wp-image-1252\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\" alt=\"\" width=\"750\" height=\"413\" />\r\n\r\nRaise a glass to the end of another great summer.  Dryland is around the corner.  [Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','EVENTS','','inherit','closed','closed','','3317-revision-v1','','','2019-09-01 17:44:22','2019-09-01 21:44:22','',3317,'https://sofits.ca/2019/09/01/3317-revision-v1/',0,'revision','',0),(3369,7,'2019-09-01 17:46:49','2019-09-01 21:46:49','<img class=\"alignnone size-full wp-image-1252\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\" alt=\"\" width=\"750\" height=\"413\" />\r\n\r\nRaise a glass to the end of another great summer!   Dryland is around the corner.    [Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','EVENTS','','inherit','closed','closed','','3317-revision-v1','','','2019-09-01 17:46:49','2019-09-01 21:46:49','',3317,'https://sofits.ca/2019/09/01/3317-revision-v1/',0,'revision','',0),(3371,7,'2019-09-01 17:49:11','2019-09-01 21:49:11','<img class=\"alignnone size-full wp-image-1252\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\" alt=\"\" width=\"750\" height=\"413\" />\r\n\r\nRaise a glass to the end of another great summer!   Dryland is around the corner.    [Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','DRYLAND','','inherit','closed','closed','','3317-revision-v1','','','2019-09-01 17:49:11','2019-09-01 21:49:11','',3317,'https://sofits.ca/2019/09/01/3317-revision-v1/',0,'revision','',0),(3379,7,'2019-09-14 10:49:56','2019-09-14 14:49:56','<span style=\"font-size: large;\"><u><b>Things to know about Nakkertok Ski Club</b></u></span>\n\n1. Coming from Ottawa driving time is about the same as to Gatineau Park, and less time than some Gatineau Park locations.\n\n2. Nakkertok has the most reliable grooming in the Ottawa-Gatineau area. Dirk was the chief of grooming at the Olympics in Whistler. Trails are kept regularly groomed unlike Gatineau Park which may (or may not) have only parkways groomed after a weather event.\n\n3. Nakkertok makes snow as soon as the temperatures are reliably cold, usually early to mid November.   This will be welcome if snow comes late.\n\n4. The Nakkertok South trails are charming, delightful and some are quite challenging. Think Burma and Pink Lake trail. There are easier and more challenging loops and distances, but all are within a relatively short distance of the parking lot, compared to Gatineau Park.\n\n5. There is a large, well groomed practice grid (classic and skate) right by the parking lot.\n\n6. There is a beautiful, large building with picnic tables right near the parking lot. It can be used for picnic lunches, video-analysis, meetings, boot and coat changing, etc. There are cabins a short ski away, and two lit night trails.\n\n7. There is a wax room with irons and ski forms.\n\n8. There is snowshoeing on site (usually $7 day fee if you don\'t have a membership)\n\n9. Nakkertok North is a longer drive and the trails are much more challenging and include backcountry.  Spring skiing in particular, can be amazing there. Thea’s Race is held there in early March.','NAKKERTOK','','inherit','closed','closed','','2678-autosave-v1','','','2019-09-14 10:49:56','2019-09-14 14:49:56','',2678,'https://sofits.ca/2019/09/08/2678-autosave-v1/',0,'revision','',0),(3380,7,'2019-09-08 18:00:50','2019-09-08 22:00:50','<span style=\"font-size: large;\"><u><b>Things to know about Nakkertok Ski Club</b></u></span>\r\n\r\n1. Driving time is generally the same as to Gatineau Park, and less time than some Gatineau Park locations.\r\n\r\n2. Nakkertok has the most reliable grooming in the Ottawa-Gatineau area. Dirk was the chief of grooming at the Olympics in Whistler. Trails are kept regularly groomed unlike Gatineau Park which may (or may not) have only parkways groomed after a weather event.\r\n\r\n3. New this year, Nakkertok will have snowmaking for one of the main loops.  This will be welcome if snow comes late as it did last year.\r\n\r\n4. The Nakkertok South trails are charming, delightful and some are quite challenging. Think Burma and Pink Lake trail. There are easier and more challenging loops and distances, but all are within a relatively short distance of the parking lot, compared to Gatineau Park.\r\n\r\n5. There is a large, well groomed practice grid (classic and skate) right by the parking lot.\r\n\r\n6. There is a beautiful, large building with picnic tables right near the parking lot. It can be used for picnic lunches, video-analysis, meetings, boot and coat changing, etc. There are cabins a short ski away, and two lit night trails.\r\n\r\n7. There is snowshoeing on site (usually $7 day fee)\r\n\r\n8. Nakkertok North is a longer drive and the trails are much more challenging and include backcountry.  Spring skiing in particular, can be amazing there. Thea’s Race is held there in early March.','NAKKERTOK','','inherit','closed','closed','','2678-revision-v1','','','2019-09-08 18:00:50','2019-09-08 22:00:50','',2678,'https://sofits.ca/2019/09/08/2678-revision-v1/',0,'revision','',0),(3383,7,'2019-09-08 18:12:00','2019-09-08 22:12:00','&nbsp;\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SKI-FIRST-OR-ALSO-SKIS.pdf\">SKI FIRST THEN RUNS OR ALSO SKIS</a>&nbsp;</strong>(read this first, then open the appropriate BUILD document.)\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/BUILD-1-for-ALSO-SKIS-.pdf\">BUILD 1 for ALSO SKIS, weeks of Dec 9 - 30</a></strong>\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/SOFITS-GENERIC-2013-BUILD-1.pdf\">BUILD 1 for SKIS FIRST</a>&nbsp;</strong>\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE3-Weeks-of-Nov-18-to-Dec-9.pdf\">BASE3 Weeks of Nov 18 to Dec 9</a></strong>\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/BASE2-Weeks-of-Oct-21-to-Nov-11.pdf\">BASE2 Weeks of Oct 21 to Nov 11</a></strong>\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/training-hours.pdf\">Training Hours</a>&nbsp; &nbsp; </strong>Just one sample from Joe Friel (see Reading list in the next article)\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Create-Your-Own-Training-Plan.pdf\">Create Your Own Training Plan, part 1</a></strong>\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Addtional-Notes-Nov-2nd-Personal-Training-Workshop.pdf\">Additional Notes for Creating Training Plans, part 2</a></strong>\n\n<strong><a href=\"https://sofits.ca/wp-content/uploads/2013/09/Background-Questions.pdf\">Background Questions</a></strong>\n\n&nbsp;\n\n&nbsp;','CREATE A PLAN (ask if you would like the password)','','inherit','closed','closed','','319-revision-v1','','','2019-09-08 18:12:00','2019-09-08 22:12:00','',319,'https://sofits.ca/2019/09/08/319-revision-v1/',0,'revision','',0),(3385,7,'2019-09-14 08:52:39','2019-09-14 12:52:39','<img class=\"alignnone size-full wp-image-1252\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\" alt=\"\" width=\"750\" height=\"413\" />\r\n\r\nRaise a glass to the end of another great summer!   Dryland is here!    [Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','DRYLAND','','inherit','closed','closed','','3317-revision-v1','','','2019-09-14 08:52:39','2019-09-14 12:52:39','',3317,'https://sofits.ca/2019/09/14/3317-revision-v1/',0,'revision','',0),(3387,7,'2019-09-14 09:52:59','2019-09-14 13:52:59','<span style=\"font-size: x-large;\"><u><b>Goal Setting for Nordic Skiing 2019-2020</b></u></span>\n\n1. Find a goal that slightly stretches your envelope – something that, with consistent effort will be manageable. If you pick a failed goal from last year, think about what it was that kept you from achieving it. Take time to find a personal goal that isn’t the same as 20 other people! Make it meaningful to you. If you have achieved this same goal in the last several years, find something more \"stretchy\".\n\n2. Your goal must be clear and measurable. <strong>It can not include vague words such as “better”, “more” or “improve”.  It cannot be a destination goal unless you quantify the location with other factors.  (for example \"ski to the fire tower\" is no longer allowed.  But ski there anyway!)\n</strong>\n\n3. Quantify your goal with dates, places, times, speeds, placings, etc.\n\n4. A goal can be an achievement goal, or <strong>a process goal</strong>.  Be careful of race goals.  Avoid aiming to win your age group unless you  are a full time skier, and know every single competitor\'s ability. Aiming for a specific time is also tricky as snow conditions are out of your control.  Instead aim  improve to your age group placing, or aim to simply participate in a race you have never before tried.  If you have participated in the same race for the last several years, perhaps it\'s time for a new goal.\n\n5. <strong>Map out exactly how, where or when you will work toward your goal.  This is more important than the final acheievement and will ensure progress toward your goal\n</strong>\n\n6. It might be a good idea to pick a second goal in case of poor snow conditions – but be sure to work towards both of them. Only one needs to count.\n\n<span style=\"font-size: x-large;\"><u><b>Some Random Examples: (but better to make up your own)</b></u></span>\n\na. To one-skate from _______ to _______ in a comfortable zone 2 without stopping by March 1 2019.\n\nb. To improve my time in the 50K Classic Loppet\n\nc. To take part in 2 time trials\n\nd. To attend all weekly Friday sessions unless I am ill.\n\ne. To ski 4 (or 3 or 6) times every week, thus increasing my experience in varied snow conditions\n\nf. To grip wax my own skis before each classic ski and to arrive with waxed skis.\n\ng. To ski somewhere different each week. (Keep track !)\n\nh. To ski without poles for 10 (or 30) minutes of every ski in November and December.\n\nI. To be able to double pole from ____ to ____.\n\nJ. To take part in 15 Sunday (or Saturday, or Wednesday or whatever) trail runs and group skis.\n\nK. To join a weekly spin class (or run class, or strength class) to increase my general fitness.\n\nL. To eliminate sugary desserts allowing only one a week\n\nM. To ski alone at least once a week, so that I can focus on feel and technique without distractions.\n\nN. Ski ski at least once a week with slower skiers, to rest and savour zone 1\n\nO. To ski at least once a week with faster skiers, to push me out of my comfort zone.\n\nP. To ski further than I have skied before (you will need numbers for this goal. What is the furthest you have skied?)\n\nQ. To take part in the Canadian Ski Marathon as a Coureur de Bois (or tourer – how many sections?)\n\n<i>There are so many possibilities - use your imagination!</i>','SETTING SKI GOALS','','inherit','closed','closed','','3128-autosave-v1','','','2019-09-14 09:52:59','2019-09-14 13:52:59','',3128,'https://sofits.ca/2019/09/14/3128-autosave-v1/',0,'revision','',0),(3388,7,'2019-09-14 09:54:07','2019-09-14 13:54:07','<span style=\"font-size: x-large;\"><u><b>Goal Setting for Nordic Skiing 2019-2020</b></u></span>\r\n\r\n1. Find a goal that slightly stretches your envelope – something that, with consistent effort will be manageable. If you pick a failed goal from last year, think about what it was that kept you from achieving it. Take time to find a personal goal that isn’t the same as 20 other people! Make it meaningful to you. If you have achieved this same goal in the last several years, find something more \"stretchy\".  If you can achieve your goal early in the season, pick something more challenging.\r\n\r\n2. Your goal must be clear and measurable. <strong>It can not include vague words such as “better”, “more” or “improve”.  It cannot be a destination goal unless you quantify the location with other factors.  (for example \"ski to the fire tower\" is no longer allowed.  But ski there anyway!)\r\n</strong>\r\n\r\n3. Quantify your goal with dates, places, times, speeds, placings, etc.\r\n\r\n4. A goal can be an achievement goal, or <strong>a process goal</strong>.  Be careful of race goals.  Avoid aiming to win your age group unless you  are a full time skier, and know every single competitor\'s ability. Aiming for a specific time is also tricky as snow conditions are out of your control.  Instead aim  improve to your age group placing, or aim to simply participate in a race you have never before tried.  If you have participated in the same race for the last several years, perhaps it\'s time for a new goal.\r\n\r\n5. <strong>Map out exactly how, where or when you will work toward your goal.  This is more important than the final achievement and will ensure progress toward your goal.\r\n</strong>\r\n\r\n6. It might be a good idea to pick a second goal in case of poor snow conditions – but be sure to work towards both of them. Only one needs to count.\r\n\r\n<span style=\"font-size: x-large;\"><u><b>Some Random Examples: (but better to make up your own)</b></u></span>\r\n\r\na. To one-skate from _______ to _______ in a comfortable zone 2 without stopping by March 1 2019.\r\n\r\nb. To improve my time in the 50K Classic Loppet\r\n\r\nc. To take part in 2 time trials\r\n\r\nd. To attend all weekly Friday sessions unless I am ill.\r\n\r\ne. To ski 4 (or 3 or 6) times every week, thus increasing my experience in varied snow conditions\r\n\r\nf. To grip wax my own skis before each classic ski and to arrive with waxed skis.\r\n\r\ng. To ski somewhere different each week. (Keep track !)\r\n\r\nh. To ski without poles for 10 (or 30) minutes of every ski in November and December.\r\n\r\nI. To be able to double pole from ____ to ____.\r\n\r\nJ. To take part in 15 Sunday (or Saturday, or Wednesday or whatever) trail runs and group skis.\r\n\r\nK. To join a weekly spin class (or run class, or strength class) to increase my general fitness.\r\n\r\nL. To eliminate sugary desserts allowing only one a week\r\n\r\nM. To ski alone at least once a week, so that I can focus on feel and technique without distractions.\r\n\r\nN. Ski ski at least once a week with slower skiers, to rest and savour zone 1\r\n\r\nO. To ski at least once a week with faster skiers, to push me out of my comfort zone.\r\n\r\nP. To ski further than I have skied before (you will need numbers for this goal. What is the furthest you have skied?)\r\n\r\nQ. To take part in the Canadian Ski Marathon as a Coureur de Bois (or tourer – how many sections?)\r\n\r\n<i>There are so many possibilities - use your imagination!</i>','SETTING SKI GOALS','','inherit','closed','closed','','3128-revision-v1','','','2019-09-14 09:54:07','2019-09-14 13:54:07','',3128,'https://sofits.ca/2019/09/14/3128-revision-v1/',0,'revision','',0),(3391,7,'2019-09-14 10:32:36','2019-09-14 14:32:36','<h2></h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30 and wildly inaccurate.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n\r\n<a href=\"https://skitrails.xcottawa.ca/skitrails_gatineau_park.php\">XCOttawa Gatineau Park Ski Trail Reports </a>\r\n<h2></h2>\r\n<h2>For a more up to date and extensive collection of training articles, check out (or ask to join - it\'s not a public group) the Sofits training articles Facebook page.</h2>\r\n<h2>httpss://www.facebook.com/groups/331593340665743/</h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n\r\n<a href=\"https://www.theweathernetwork.com/weather/canada/quebec/chelsea\">The Weather Network - Chelsea</a>\r\n\r\n<a href=\"https://weather.gc.ca/radar/index_e.html?id=XFT\">Franktown Radar </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a href=\"https://www.precisionnutrition.com/working-out-when-sick\" target=\"_blank\" rel=\"noopener noreferrer\">Should you exercise when you\'re sick?</a>:  a detailed discussion of pros and cons, including discussion of how to adapt your training when sick.\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2014/05/140530154109.htm\" target=\"_blank\" rel=\"noopener noreferrer\">Quality, not quantity, counts most in exercise, diet</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2014/06/11/judging-badly-how-hard-we-exercise/?_php=true&amp;_type=blogs&amp;_php=true&amp;_type=blogs&amp;ref=health&amp;_r=2&amp;\" target=\"_blank\" rel=\"noopener noreferrer\">Overestimating How Hard We Exercise</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/older-does-not-mean-slower-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Research Shows – Older Does NOT Mean Slower</a>\r\n\r\n<a href=\"https://running.competitor.com/2014/06/training/study-run-faster-to-ride-better_43375\" target=\"_blank\" rel=\"noopener noreferrer\">Run Faster To Ride Better </a>\r\n\r\n<a href=\"https://www.220triathlon.com/training/long-distance/can-heavy-lifting-increase-your-endurance-performance/8724.html\" target=\"_blank\" rel=\"noopener noreferrer\">Can heavy lifting increase your endurance performance?</a>\r\n\r\n<a href=\"https://home.trainingpeaks.com/blog/article/the-1-rule-of-endurance-training?utm_source=tpr&amp;utm_medium=email&amp;utm_content=utb11&amp;utm_campaign=utb\" target=\"_blank\" rel=\"noopener noreferrer\">The #1 Rule of Endurance Training</a>\r\n<a href=\"https://www.sciencedaily.com/releases/2014/06/140605113510.htm\" target=\"_blank\" rel=\"noopener noreferrer\">Molecular secret of short, intense workouts clarified</a>\r\n<p id=\"page-title\"><a href=\"https://www.runnersworld.com/injury-prevention-recovery/hip-weakness-and-knee-pain\" target=\"_blank\" rel=\"noopener noreferrer\">Hip Weakness and Knee Pain</a></p>\r\n\r\n<h3><span style=\"text-decoration: underline; color: #ff0000;\">Some links about the importance of recovery:</span></h3>\r\n<ul>\r\n 	<li>Joe Friel\'s article \"<a href=\"https://thesportfactory.com/site/trainingnews/Fitness_Depends_on_Recovery_257.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Fitness depends on Recovery</a>\"</li>\r\n 	<li>a cycling article \"<a href=\"https://www.climbbybike.com/cycling-training-and-supercompensation.asp\" target=\"_blank\" rel=\"noopener noreferrer\">Training, resting and supercompensation</a>\"</li>\r\n</ul>\r\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\r\n\r\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\" rel=\"noopener noreferrer\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\" rel=\"noopener noreferrer\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\" rel=\"noopener noreferrer\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\" rel=\"noopener noreferrer\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\" rel=\"noopener noreferrer\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>BOOKS</strong>\r\n\r\n<em><strong>Books About Running: (Do you need extra motivation to get out the door for that run?  )</strong></em>\r\n\r\nBorn to Run - McDougall  (loved this book, it kindled an urge to resume  running  after being injured)\r\n\r\nEat and Run - Jurek ( same characters, different author,  seemed like  a companion book to Born to Run)\r\n\r\nWhy I Run - Sutcliffe (local journalist, enthusiastic and self-styled -\"ordinary\" runner.)\r\n\r\nRunning with the Mind of Meditation - Mipham (interesting ideas about the different stages runners go through)\r\n\r\nThe Grace to Race - Sister Madonna Buder (not a literary masterpiece but an inspiring tale  of the octogenarian nun who competes in Ironmen.)\r\n\r\n<em><strong>Books About Training, Exercise, and Aging Well:</strong></em>\r\n\r\nCross Training - Fitzgerald (Thanks Pat - just spent the weekend reading this  - great book!  If you read only one training book, read this.)\r\n\r\nCycling Past 50 - Friel (all of his books are highly recommended, but perhaps this  is most relevant to our group)\r\n\r\nTriathlete\'s Training Bible - Friel\r\n\r\nCyclists\'s Training Bible - Friel\r\n\r\nTotal Heart Rate Training - Friel\r\n\r\nRun: Running by Feel - Fitzgerald (many AHA! moments in this book, but learn to train before you read it).\r\n\r\nYounger Next Year: Crowley (lots of sensible advice, easily read, thanks Susan!)\r\n\r\nWhich Came First Cardio or Weights - Hutchison (a myth buster)\r\n\r\nThe Cure for Everything - Caulfield (in the same vein as the previous book, but not just exercise)\r\n\r\n<em><strong>Food and Healthy Eating:</strong></em> Many of these books are from opposing corners of the kitchen, so to speak, but it was interesting to see what they actually agreed on!\r\n\r\nThe Omnivore\'s Dilemma - Pollan (the book that launched me on this journey - a must read!  I love his writing. Thank you Susan)\r\n\r\nThe China Study - Campbell\r\n\r\nWhat to Eat - Nestle ( a thorough  analysis - usually scathing -  of all the food you will encounter in a food store.)\r\n\r\nDiet For a Small Planet - Lappé ( not a new book - you either have read this or must read it)\r\n\r\nWhy We Get Fat ( you don\'t want to know what you are eating)\r\n\r\nEat and Run - Jurek\r\n\r\nPaleo Diet - Cordain/Friel\r\n\r\nFood Rules -  Pollan (a simple guide to eating healthily)\r\n\r\nWheat Belly - Davis\r\n\r\nCooked - Pollan (thanks again, Susan, an inspiring and entertaining book! ).\r\n\r\nWild Fermentation - Katz (how to bring healthy microbes back into our modern lives)\r\n\r\n<em><strong>Nature and Health</strong></em><em><strong>  </strong></em>We all know that exercise is more fun outdoors.  These two books confirm just HOW important it  is to our health.\r\n\r\nThe Nature Principle - Louv (\"why we need a botanical sense of place\", \"what if we take pride in our diverse and fascinating bioregion\", \"knowing who you are by where you are\" - \"the garden creates the gardener \". This book offers hope in the face of all the terrible things that are happening to our natural world.\r\n\r\nYour Brain on Nature - Selhub/Logan (scientific evidence for things you already know from experience).','LINKS & BOOKS','','inherit','closed','closed','','1054-revision-v1','','','2019-09-14 10:32:36','2019-09-14 14:32:36','',1054,'https://sofits.ca/2019/09/14/1054-revision-v1/',0,'revision','',0),(3392,7,'2019-09-14 10:35:16','2019-09-14 14:35:16','<h2>For a more up to date and extensive collection of training articles, check out (or ask to join - it\'s not a public group) the Sofits training articles Facebook page.</h2>\r\n<h2><a href=\"httpss://www.facebook.com/groups/331593340665743/\">httpss://www.facebook.com/groups/331593340665743/</a></h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Skiing:</span></span></h2>\r\n<a title=\"Musician on Skis photoblog\" href=\"https://musicianonskis.ca/blog\">Jo-Ann\'s photoblog</a>\r\n\r\n<a title=\"XC Ottawa\" href=\"https://www.xcottawa.ca\">XC Ottawa website</a>\r\n\r\n<a title=\"ski conditions\" href=\"https://www.ncc-ccn.gc.ca/places-to-visit/gatineau-park/ski-conditions\">Gatineau Park Ski Conditions</a>, updated daily at 8:30 and 13:30 and wildly inaccurate.\r\n\r\n<a title=\"binder\" href=\"https://www.xcottawa.ca/articles.php?id=2697\"> XC Ottawa video on applying binder wax</a>\r\n\r\n<a href=\"https://skitrails.xcottawa.ca/skitrails_gatineau_park.php\">XCOttawa Gatineau Park Ski Trail Reports </a>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">Weather:</span></span></h2>\r\n<a title=\"Chelsea weather\" href=\"https://www.weatheroffice.gc.ca/city/pages/qc-59_metric_e.html#detailsf\">Environment Canada Chelsea Weather</a>\r\n\r\n<a href=\"https://www.theweathernetwork.com/weather/canada/quebec/chelsea\">The Weather Network - Chelsea</a>\r\n\r\n<a href=\"https://weather.gc.ca/radar/index_e.html?id=XFT\">Franktown Radar </a>\r\n<h2><span style=\"text-decoration: underline;\"><span style=\"color: #008000; text-decoration: underline;\">General Fitness: </span></span><span style=\"text-decoration: underline;\"><span style=\"color: #000000;\">\r\n</span></span></h2>\r\n<a href=\"https://www.precisionnutrition.com/working-out-when-sick\" target=\"_blank\" rel=\"noopener noreferrer\">Should you exercise when you\'re sick?</a>:  a detailed discussion of pros and cons, including discussion of how to adapt your training when sick.\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2014/05/140530154109.htm\" target=\"_blank\" rel=\"noopener noreferrer\">Quality, not quantity, counts most in exercise, diet</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2014/06/11/judging-badly-how-hard-we-exercise/?_php=true&amp;_type=blogs&amp;_php=true&amp;_type=blogs&amp;ref=health&amp;_r=2&amp;\" target=\"_blank\" rel=\"noopener noreferrer\">Overestimating How Hard We Exercise</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/older-does-not-mean-slower-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Research Shows – Older Does NOT Mean Slower</a>\r\n\r\n<a href=\"https://running.competitor.com/2014/06/training/study-run-faster-to-ride-better_43375\" target=\"_blank\" rel=\"noopener noreferrer\">Run Faster To Ride Better </a>\r\n\r\n<a href=\"https://www.220triathlon.com/training/long-distance/can-heavy-lifting-increase-your-endurance-performance/8724.html\" target=\"_blank\" rel=\"noopener noreferrer\">Can heavy lifting increase your endurance performance?</a>\r\n\r\n<a href=\"https://home.trainingpeaks.com/blog/article/the-1-rule-of-endurance-training?utm_source=tpr&amp;utm_medium=email&amp;utm_content=utb11&amp;utm_campaign=utb\" target=\"_blank\" rel=\"noopener noreferrer\">The #1 Rule of Endurance Training</a>\r\n<a href=\"https://www.sciencedaily.com/releases/2014/06/140605113510.htm\" target=\"_blank\" rel=\"noopener noreferrer\">Molecular secret of short, intense workouts clarified</a>\r\n<p id=\"page-title\"><a href=\"https://www.runnersworld.com/injury-prevention-recovery/hip-weakness-and-knee-pain\" target=\"_blank\" rel=\"noopener noreferrer\">Hip Weakness and Knee Pain</a></p>\r\n\r\n<h3><span style=\"text-decoration: underline; color: #ff0000;\">Some links about the importance of recovery:</span></h3>\r\n<ul>\r\n 	<li>Joe Friel\'s article \"<a href=\"https://thesportfactory.com/site/trainingnews/Fitness_Depends_on_Recovery_257.shtml\" target=\"_blank\" rel=\"noopener noreferrer\">Fitness depends on Recovery</a>\"</li>\r\n 	<li>a cycling article \"<a href=\"https://www.climbbybike.com/cycling-training-and-supercompensation.asp\" target=\"_blank\" rel=\"noopener noreferrer\">Training, resting and supercompensation</a>\"</li>\r\n</ul>\r\n<a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\">Train Slow, Run (and Ski) Fast</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/what-age-too-old-running-racing/\">What Age is Too Old for Running and Racing?</a>\r\n\r\n<a title=\"binder\" href=\"https://running.competitor.com/2013/12/training/understanding-your-natural-running-pace_68271\">understanding-your-natural-running-pace</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/the-3-best-core-exercises-for-runners_2310\">3 best core exercises for runners</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/speed-development-for-distance-runners_2314 \">speedwork for distance runners - especially aging ones</a>\r\n\r\n<a href=\" https://www.iawr-connect.com/training/great-news-runners-over-40/\">Great news for athletes over age 40!</a>\r\n\r\n<a href=\"https://www.drmirkin.com/fitness/interval-training-for-sports.html\">intervals - going slowly will not increase your speed</a>\r\n\r\n<a href=\" https://thesportfactory.com/site/trainingnews/But_I_m_Not_Running_Marathons.shtml\">extra distance for non-marathoners</a>\r\n\r\n<a href=\"https://run-fit.com/chin-ups-push-ups-and-hills/\">increase strength without doing weights</a>\r\n\r\n<a href=\" https://www.running4women.com/ive-got-a-cold-should-i-run-today?utm_source=Sign-Up.to&amp;utm_medium=email&amp;utm_campaign=19663-204083-Newsletter+December+23rd+2013\">I\'ve got a cold should I run today?</a>\r\n\r\n<a href=\"https://run-fit.com/busting-through-plateaus\" target=\"_blank\" rel=\"noopener noreferrer\">A nice, short article for those creating their own training plans</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/12/16/ask-well-benefits-of-swimming/?_r=1\" target=\"_blank\" rel=\"noopener noreferrer\">Swimming compared to other aerobic activities</a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/mental-training-run-race-your-best/\" target=\"_blank\" rel=\"noopener noreferrer\">Combat Negative Self-Talk</a>\r\n\r\n<a href=\"https://runnow.eu/2013/12/training/learn-from-common-training-mistakes_2241\" target=\"_blank\" rel=\"noopener noreferrer\">Common Training Mistakes - for all of us!</a>\r\n\r\n<a title=\"HIT?\" href=\"https://www.theguardian.com/lifeandstyle/2013/dec/15/fitness-tabata-high-intensity-regime\" target=\"_blank\" rel=\"noopener noreferrer\">Concerns about Tabata Training (for those who don\'t know, it\'s 20 s all out-10 easy for a total of 4 minutes) </a>\r\n\r\n<a href=\"https://www.iawr-connect.com/training/ripping-up-roads-over-40/\">Older women are getting faster!</a>\r\n\r\n<a href=\"https://wellfesto.com/2013/11/19/10-things-i-want-my-daughter-to-know-about-working-out/\">10 Things I want my daughter to know about working out.</a>\r\n\r\n<a href=\"https://www.crosscountryskier.com/magazine/09_jan/cxc.htm\">Good article on how to use your training time</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/10/22/how-long-and-far-should-you-run\">How long and far should you run?</a>\r\n\r\n<a href=\"https://www.runnersworld.com/race-training/how-to-build-mental-muscle?page=1\">Very interesting article on mental fatigue</a>\r\n\r\n<a href=\"https://www.youtube.com/watch?feature=player_embedded&amp;v=_-rRldLHKNc\">Video of Bad Ski Striding</a> (aka just running with poles).\r\n\r\n<a href=\"https://www.google.ca/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;ved=0CC4QtwIwAA&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DLzlGkpAL5ec&amp;ei=C4VpUo6nGaPo2AWS5YDoDg&amp;usg=AFQjCNHBfgbIAU2WCWUcCysDR0CH0Pxcrg&amp;bvm=bv.55123115,d.b2I&amp;cad=rja\">Beautiful Video of  Ski Walking and Ski Striding  </a>- with slow motion - watch this over and over!\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/10/02/how-intense-study-may-harm-our-workouts/?ref=nutrition&amp;_r=1\">How Intense Study may affect your Energy Levels   (</a>train to   limit mental fatigue and  improve physical performance?)\r\n\r\n<a href=\"https://www.sciencedaily.com/releases/2013/09/130927092350.htm\">Benefits of Strength Training for 90 year olds (!)</a>\r\n\r\n<a href=\"https://triathlete-europe.competitor.com/2013/09/30/the-essentials-of-building-your-run-base\">Essentials of building your running base</a>\r\n\r\n<a href=\"https://well.blogs.nytimes.com/2013/09/25/why-runners-dont-get-knee-arthritis/?_r=0\">Why Runners Don\'t Get Knee Arthritis</a>\r\n\r\n<a href=\"https://www.outsideonline.com/fitness/outside-fitness-center/Is-Too-Much-Exercise-Deadly.html\">Can you get too much exercise? </a>\r\n\r\n<a href=\"https://runnow.eu/2013/09/training/do-you-need-the-marathon-long-run_1389\">Do you need the marathon long run</a>   (or a long run over 90 minutes?)\r\n\r\n<a href=\"https://www.xcottawa.ca/articles.php?id=2618\">Ski Striding:  A Lost Art?</a>\r\n\r\n<a href=\"https://triathlon.competitor.com/2013/07/training/top-myths-about-recovery_57395/5\">Myths: The Older you are the longer it takes to recover?</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>BOOKS</strong>\r\n\r\n<em><strong>Books About Running: (Do you need extra motivation to get out the door for that run?  )</strong></em>\r\n\r\nBorn to Run - McDougall  (loved this book, it kindled an urge to resume  running  after being injured)\r\n\r\nEat and Run - Jurek ( same characters, different author,  seemed like  a companion book to Born to Run)\r\n\r\nWhy I Run - Sutcliffe (local journalist, enthusiastic and self-styled -\"ordinary\" runner.)\r\n\r\nRunning with the Mind of Meditation - Mipham (interesting ideas about the different stages runners go through)\r\n\r\nThe Grace to Race - Sister Madonna Buder (not a literary masterpiece but an inspiring tale  of the octogenarian nun who competes in Ironmen.)\r\n\r\n<em><strong>Books About Training, Exercise, and Aging Well:</strong></em>\r\n\r\nCross Training - Fitzgerald (Thanks Pat - just spent the weekend reading this  - great book!  If you read only one training book, read this.)\r\n\r\nCycling Past 50 - Friel (all of his books are highly recommended, but perhaps this  is most relevant to our group)\r\n\r\nTriathlete\'s Training Bible - Friel\r\n\r\nCyclists\'s Training Bible - Friel\r\n\r\nTotal Heart Rate Training - Friel\r\n\r\nRun: Running by Feel - Fitzgerald (many AHA! moments in this book, but learn to train before you read it).\r\n\r\nYounger Next Year: Crowley (lots of sensible advice, easily read, thanks Susan!)\r\n\r\nWhich Came First Cardio or Weights - Hutchison (a myth buster)\r\n\r\nThe Cure for Everything - Caulfield (in the same vein as the previous book, but not just exercise)\r\n\r\n<em><strong>Food and Healthy Eating:</strong></em> Many of these books are from opposing corners of the kitchen, so to speak, but it was interesting to see what they actually agreed on!\r\n\r\nThe Omnivore\'s Dilemma - Pollan (the book that launched me on this journey - a must read!  I love his writing. Thank you Susan)\r\n\r\nThe China Study - Campbell\r\n\r\nWhat to Eat - Nestle ( a thorough  analysis - usually scathing -  of all the food you will encounter in a food store.)\r\n\r\nDiet For a Small Planet - Lappé ( not a new book - you either have read this or must read it)\r\n\r\nWhy We Get Fat ( you don\'t want to know what you are eating)\r\n\r\nEat and Run - Jurek\r\n\r\nPaleo Diet - Cordain/Friel\r\n\r\nFood Rules -  Pollan (a simple guide to eating healthily)\r\n\r\nWheat Belly - Davis\r\n\r\nCooked - Pollan (thanks again, Susan, an inspiring and entertaining book! ).\r\n\r\nWild Fermentation - Katz (how to bring healthy microbes back into our modern lives)\r\n\r\n<em><strong>Nature and Health</strong></em><em><strong>  </strong></em>We all know that exercise is more fun outdoors.  These two books confirm just HOW important it  is to our health.\r\n\r\nThe Nature Principle - Louv (\"why we need a botanical sense of place\", \"what if we take pride in our diverse and fascinating bioregion\", \"knowing who you are by where you are\" - \"the garden creates the gardener \". This book offers hope in the face of all the terrible things that are happening to our natural world.\r\n\r\nYour Brain on Nature - Selhub/Logan (scientific evidence for things you already know from experience).','LINKS & BOOKS','','inherit','closed','closed','','1054-revision-v1','','','2019-09-14 10:35:16','2019-09-14 14:35:16','',1054,'https://sofits.ca/2019/09/14/1054-revision-v1/',0,'revision','',0),(3393,7,'2019-09-14 10:41:08','2019-09-14 14:41:08','<p align=\"justify\"><span style=\"font-size: large;\"><u><b>DO YOU LACK STRONG, GENERAL FITNESS? </b></u> </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Good fitness will carry you pretty far in skiing, even if your technique is not perfect. If you are lacking basic fitness, you are in the group that will see huge gains in a short time, simply by exercising consistently. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Our dryland session is not enough! Before the ski season begins: Aim for 3 - 4 aerobic sessions a week and 2 strength sessions. (Friday’s session includes both 1 aerobic and 1 strength as well as technique) Spin classes or new-runners’ groups are a fun way to increase your fitness. Or ski stride in the park once a week in addition to Friday’s workout. Add a weekly strength class to supplement our Friday strength. And don’t forget to stretch it out. Join a yoga class or find a class online. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Start where you are at, don’t worry about keeping improve your with others, and aim for consistently showing up. Don’t worry too much about interval training until you have a “base”. Aim for consistency rather than speed to prevent injury. Intervals can be added in later. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Note that activities such as dog walking or easy hiking, although good for general health, will do little to improve your skiing. These generally fall below zone 1. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\"><u><b>ALREADY FIT AND ACTIVE, BUT WANT TO IMPROVE YOUR PERFORMANCE ON SKIS?</b></u></span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">This is harder! It requires great motivation and patience, not to mention attention to detail and the willingness to ski on your own at times. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">First, dedicate portions of each ski to technical practice. For example, the first 15 minutes can be a warm up without poles, or a double pole session. Or find a hill on which to practice your climbs and descents a number of times. Skiing is similar to swimming in that technique is paramount. Pick one technical point and focus on that. Grab opportunities to be filmed, or take a private or semi-private or small group lesson. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Work daily at double poling. Many recreational skiers avoid using double poling, and this is particularly true for women. In the right conditions it is considerably easier than diagonal stride. If you are competent at it, it is one way to go faster with less effort and a lower heart rate. It is also fundamental to skate skiing. (Elite skiers use double pole for at least 1/3 of their mileage, and have been known to double pole entire races. )</span></p>\r\n<p align=\"justify\">                                                                                   *****************************************************************</p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Secondly, you will need to have a clear idea of your ski specific heart rate zones. And are not talking about the generic formulas based on age or the fanciful numbers generated by watches and treadmill computers. Time trials or short races are perfect for capturing your own personal numbers. If you have been participating in running races and know your average heart rate for the race, you are in luck! Zones can be calculated from that number. Classic ski zones and running zones are usually about the same. Ask Jo-Ann for more details if you are interested in this. Note that the Tuesday group will be doing this sort of thing regularly. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Focus on “polarizing” your training so that it is either super easy and slow (</span><span style=\"font-size: large;\">elite skiers spend 8o % of their training time in zones 1 and 2) or really hard (elite skiers spend above 20% of their training time in zones higher than zone 3). </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Each workout should have a specific focus (for examples, strength on skis, zone 1 recovery, long slow distance in zones 1-2, high-end intervals in zone 4 or 5, or speed work, and occasionally just a fun group ski without worrying about hard you are going). You will need an accurate HRM with a chest strap and the confidence and will power to adhere to limits. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">It also goes without saying that the focus should always be on good technique, whether skiing easy or hard. </span></p>','FITNESS OR PERFORMANCE?','','inherit','closed','closed','','3195-revision-v1','','','2019-09-14 10:41:08','2019-09-14 14:41:08','',3195,'https://sofits.ca/2019/09/14/3195-revision-v1/',0,'revision','',0),(3394,7,'2019-09-14 10:42:05','2019-09-14 14:42:05','<p align=\"justify\"><span style=\"font-size: large;\"><u><b><img class=\"alignnone size-full wp-image-1255\" src=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\" alt=\"\" width=\"750\" height=\"515\" />DO YOU LACK STRONG, GENERAL FITNESS? </b></u> </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Good fitness will carry you pretty far in skiing, even if your technique is not perfect. If you are lacking basic fitness, you are in the group that will see huge gains in a short time, simply by exercising consistently. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Our dryland session is not enough! Before the ski season begins: Aim for 3 - 4 aerobic sessions a week and 2 strength sessions. (Friday’s session includes both 1 aerobic and 1 strength as well as technique) Spin classes or new-runners’ groups are a fun way to increase your fitness. Or ski stride in the park once a week in addition to Friday’s workout. Add a weekly strength class to supplement our Friday strength. And don’t forget to stretch it out. Join a yoga class or find a class online. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Start where you are at, don’t worry about keeping improve your with others, and aim for consistently showing up. Don’t worry too much about interval training until you have a “base”. Aim for consistency rather than speed to prevent injury. Intervals can be added in later. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Note that activities such as dog walking or easy hiking, although good for general health, will do little to improve your skiing. These generally fall below zone 1. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\"><u><b>ALREADY FIT AND ACTIVE, BUT WANT TO IMPROVE YOUR PERFORMANCE ON SKIS?</b></u></span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">This is harder! It requires great motivation and patience, not to mention attention to detail and the willingness to ski on your own at times. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">First, dedicate portions of each ski to technical practice. For example, the first 15 minutes can be a warm up without poles, or a double pole session. Or find a hill on which to practice your climbs and descents a number of times. Skiing is similar to swimming in that technique is paramount. Pick one technical point and focus on that. Grab opportunities to be filmed, or take a private or semi-private or small group lesson. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Work daily at double poling. Many recreational skiers avoid using double poling, and this is particularly true for women. In the right conditions it is considerably easier than diagonal stride. If you are competent at it, it is one way to go faster with less effort and a lower heart rate. It is also fundamental to skate skiing. (Elite skiers use double pole for at least 1/3 of their mileage, and have been known to double pole entire races. )</span></p>\r\n<p align=\"justify\">                                                                                   *****************************************************************</p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Secondly, you will need to have a clear idea of your ski specific heart rate zones. And are not talking about the generic formulas based on age or the fanciful numbers generated by watches and treadmill computers. Time trials or short races are perfect for capturing your own personal numbers. If you have been participating in running races and know your average heart rate for the race, you are in luck! Zones can be calculated from that number. Classic ski zones and running zones are usually about the same. Ask Jo-Ann for more details if you are interested in this. Note that the Tuesday group will be doing this sort of thing regularly. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Focus on “polarizing” your training so that it is either super easy and slow (</span><span style=\"font-size: large;\">elite skiers spend 8o % of their training time in zones 1 and 2) or really hard (elite skiers spend above 20% of their training time in zones higher than zone 3). </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Each workout should have a specific focus (for examples, strength on skis, zone 1 recovery, long slow distance in zones 1-2, high-end intervals in zone 4 or 5, or speed work, and occasionally just a fun group ski without worrying about hard you are going). You will need an accurate HRM with a chest strap and the confidence and will power to adhere to limits. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">It also goes without saying that the focus should always be on good technique, whether skiing easy or hard. </span></p>','FITNESS OR PERFORMANCE?','','inherit','closed','closed','','3195-revision-v1','','','2019-09-14 10:42:05','2019-09-14 14:42:05','',3195,'https://sofits.ca/2019/09/14/3195-revision-v1/',0,'revision','',0),(3395,7,'2019-09-14 10:50:49','2019-09-14 14:50:49','<span style=\"font-size: large;\"><u><b>Things to know about Nakkertok Ski Club</b></u></span>\r\n\r\n<a href=\"https://www.nakkertok.ca\"><strong>www.nakkertok.ca</strong></a>\r\n\r\n1. Coming from Ottawa driving time is about the same as to Gatineau Park, and less time than some Gatineau Park locations.\r\n\r\n2. Nakkertok has the most reliable grooming in the Ottawa-Gatineau area. Dirk was the chief of grooming at the Olympics in Whistler. Trails are kept regularly groomed unlike Gatineau Park which may (or may not) have only parkways groomed after a weather event.\r\n\r\n3. Nakkertok makes snow as soon as the temperatures are reliably cold, usually early to mid November.   This will be welcome if snow comes late.\r\n\r\n4. The Nakkertok South trails are charming, delightful and some are quite challenging. Think Burma and Pink Lake trail. There are easier and more challenging loops and distances, but all are within a relatively short distance of the parking lot, compared to Gatineau Park.\r\n\r\n5. There is a large, well groomed practice grid (classic and skate) right by the parking lot.\r\n\r\n6. There is a beautiful, large building with picnic tables right near the parking lot. It can be used for picnic lunches, video-analysis, meetings, boot and coat changing, etc. There are cabins a short ski away, and two lit night trails.\r\n\r\n7. There is a wax room with irons and ski forms.\r\n\r\n8. There is snowshoeing on site (usually $7 day fee if you don\'t have a membership)\r\n\r\n9. Nakkertok North is a longer drive and the trails are much more challenging and include backcountry.  Spring skiing in particular, can be amazing there. Thea’s Race is held there in early March.','NAKKERTOK','','inherit','closed','closed','','2678-revision-v1','','','2019-09-14 10:50:49','2019-09-14 14:50:49','',2678,'https://sofits.ca/2019/09/14/2678-revision-v1/',0,'revision','',0),(3401,7,'2019-09-16 14:50:53','2019-09-16 18:50:53','','180902_BHR','','inherit','open','closed','','180902_bhr','','','2019-09-16 14:50:53','2019-09-16 18:50:53','',0,'https://sofits.ca/wp-content/uploads/180902_BHR.jpg',0,'attachment','image/jpeg',0),(3402,7,'2019-09-16 14:57:39','2019-09-16 18:57:39','','081018','','inherit','open','closed','','081018','','','2019-09-16 14:57:39','2019-09-16 18:57:39','',0,'https://sofits.ca/wp-content/uploads/081018.jpg',0,'attachment','image/jpeg',0),(3404,7,'2019-09-17 10:35:02','2019-09-17 14:35:02','Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2,  ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">Be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds.Ski Striding in the fall and classic or skate skiing when the snow arrives.\r\n</span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just walking or running with poles, it doesn’t count ! Here is what ski striding/ski-bounding looks like:\r\n</span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and an impressive variety of strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: skiers usually do not use pacing as runners do, as  snow conditions are highly variable )</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before heading to Les Saisons for coffee with the group or heading home.\r\n</span></span></span></span>','FALL TRAINING','','inherit','closed','closed','','346-revision-v1','','','2019-09-17 10:35:02','2019-09-17 14:35:02','',346,'https://sofits.ca/2019/09/17/346-revision-v1/',0,'revision','',0),(3405,7,'2019-09-17 10:36:06','2019-09-17 14:36:06','<img class=\"alignnone size-full wp-image-1536\" src=\"https://sofits.ca/wp-content/uploads/141003_Sofits4.jpg\" alt=\"\" width=\"800\" height=\"587\" />Many of our practices will be in a format similar to  this:\r\n\r\n<span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Warm Up:</b></span></span></span></span></span>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">It’s important to warm up gradually, especially as we get older. Start slowly in zone 1-2,  ski-striding with poles. This is not a group run, a tempo workout, and especially not a race. </span></span></span></p>\r\n<span style=\"font-size: medium;\">Be able to chat. Work up a light sweat only, and save your big bucks for the hill workout.. If you feel your group is too slow or too fast, feel free to switch groups or simply do your own workout. </span>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast\"><b>https://triathlete-europe.competitor.com/2012/05/17/train-slow-run-fast</b></a></span></span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">After 10 min of easy ski-walking, throw in some sprints without poles, 10-15 seconds “all out” - with quick feet.. Be sure to slow down again after the 10-15 seconds. Alternately you could ski-bound with poles for 10-15 seconds. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Toss in some “double poling”, lunges, straight leg marching, skipping, backwards walking ( or jogging) or anything else you can think of. The idea is to get warmed up and limbered up, but not to arrive back tired or red in the face. </span></span></span></p>\r\n<p lang=\"en-US\">**********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Strength:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> This will often be a circuit, and will change slightly each week, gradually getting more difficult and longer. </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>RUN</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> to the next station quickly and be ready to start the next exercise </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>BEFORE YOU HEAR “GO</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\">”. Several of the exercises are there to keep us warm when the weather gets cooler; rope skipping, jumping jacks and high knee running. Feel free to do these vigorously! </span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Technique Drills:</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Just like it sounds.Ski Striding in the fall and classic or skate skiing when the snow arrives.\r\n</span></span></span></span>\r\n\r\n*********************************************************************************************************\r\n\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Main Set - Hillwork :</b></span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Here is where you can challenge yourself. Each week we have a different way of incorporating intensity, either a natural interval circuit or prescribed intervals, the difficulty increasing as we approach the ski season. Each person should work at her own level. Talking is not recommended except on the recovery intervals (when there are prescribed intervals). The idea is to work at the specified intensity </span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><b>WITH PERFECT SKI TECHNIQUE</b></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> for a certain amount of time. When your technique falters you are finished the workout! And if you are just walking or running with poles, it doesn’t count ! Here is what ski striding/ski-bounding looks like:\r\n</span></span></span></span>\r\n\r\n<strong><span style=\"font-size: medium;\"><a href=\"https://www.youtube.com/watch?v=LzlGkpAL5ec\"><span style=\"color: #0000ff;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">https://www.youtube.com/watch?v=LzlGkpAL5ec</span></span></span></span></a></span></strong>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Monitor YOUR level of exertion rather than keeping up with someone who is interesting to talk to. More is not always better. In fact, working at a high level week after week is a sure way to burn out. If you need to go to bed when you get home, and don’t feel up to any exercise the next day, you have overreached. If you return home feeling the workout was too easy, go harder next time! Our group has a huge range of of age and experience, from Ironwomen to new or non-runners, and an impressive variety of strengths and abilities. Consider this part of the workout an individual activity.</span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">Here is a simple primer on heart rate training zones. </span></span></span></p>\r\n<p lang=\"en-US\"><span style=\"text-decoration: underline;\"><strong><span style=\"color: #000000; text-decoration: underline;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\"><a href=\"https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482\">https://running.competitor.com/2014/02/training/running-101-running-with-a-heart-rate-monitor_22482</a></span></span></span></strong></span></p>\r\n<p lang=\"en-US\"><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span style=\"font-size: medium;\">(Note: skiers usually do not use pacing as runners do, as  snow conditions are highly variable )</span></span></span></p>\r\n<p lang=\"en-US\">*********************************************************************************************************</p>\r\n<span style=\"font-size: medium;\"><span style=\"color: #ff6600;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\"><b>Stretches and Cooldown</b></span></span></span><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"><span style=\"text-decoration: underline;\">:</span></span></span></span><span style=\"color: #000000;\"><span style=\"font-family: Times New Roman,serif;\"><span lang=\"en-US\"> Be sure to finish your main set on time, so that you will have time to cool down, stretch, drink and eat a healthy snack before heading to Les Saisons for coffee with the group or heading home.\r\n</span></span></span></span>','FALL TRAINING','','inherit','closed','closed','','346-revision-v1','','','2019-09-17 10:36:06','2019-09-17 14:36:06','',346,'https://sofits.ca/2019/09/17/346-revision-v1/',0,'revision','',0),(3407,7,'2019-09-17 10:38:35','2019-09-17 14:38:35','<img class=\"alignnone size-full wp-image-1252\" src=\"https://sofits.ca/wp-content/uploads/120712_Tea-Party.jpg\" alt=\"\" width=\"750\" height=\"413\" />\r\n\r\nRaise a glass to the end of another great summer!   Dryland is here!    [Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','SOFITS  FALL AND WINTER CALENDAR','','inherit','closed','closed','','3317-revision-v1','','','2019-09-17 10:38:35','2019-09-17 14:38:35','',3317,'https://sofits.ca/2019/09/17/3317-revision-v1/',0,'revision','',0),(3418,7,'2019-09-19 08:03:52','2019-09-19 12:03:52','<h1><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">Cross Country  Ski Events: (to be updated soon)\r\n</span></span></h1>\r\n<strong>Silver Spoon:\r\n</strong>\r\n\r\n<strong>Tay Valley Loppet</strong>\r\n\r\n<strong>Opeongo Loppet:</strong>\r\n\r\n<strong>Winterlude Triathlon:</strong>   <strong>\r\n</strong>\r\n\r\n<strong>Viking Loppet:\r\n</strong>\r\n\r\n<strong>Canadian Ski Marathon:</strong>\r\n\r\n<strong>Gatineau Loppet:</strong>  <strong>\r\n</strong>\r\n\r\n<strong>Jackrabbit Classic</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\" rel=\"noopener noreferrer\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES & EVENTS','','inherit','closed','closed','','93-revision-v1','','','2019-09-19 08:03:52','2019-09-19 12:03:52','',93,'https://sofits.ca/2019/09/19/93-revision-v1/',0,'revision','',0),(3419,7,'2019-09-19 08:04:44','2019-09-19 12:04:44','<h2><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\">(to be updated soon)\r\n</span></span></h2>\r\n<strong>Silver Spoon:\r\n</strong>\r\n\r\n<strong>Tay Valley Loppet</strong>\r\n\r\n<strong>Opeongo Loppet:</strong>\r\n\r\n<strong>Winterlude Triathlon:</strong>   <strong>\r\n</strong>\r\n\r\n<strong>Viking Loppet:\r\n</strong>\r\n\r\n<strong>Canadian Ski Marathon:</strong>\r\n\r\n<strong>Gatineau Loppet:</strong>  <strong>\r\n</strong>\r\n\r\n<strong>Jackrabbit Classic</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\" rel=\"noopener noreferrer\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES & EVENTS','','inherit','closed','closed','','93-revision-v1','','','2019-09-19 08:04:44','2019-09-19 12:04:44','',93,'https://sofits.ca/2019/09/19/93-revision-v1/',0,'revision','',0),(3420,7,'2019-09-19 08:05:12','2019-09-19 12:05:12','<h2><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\"><span style=\"color: #333333; text-decoration: underline;\">(to be updated soon)</span>\r\n</span></span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Silver Spoon:\r\n</strong>\r\n\r\n<strong>Tay Valley Loppet</strong>\r\n\r\n<strong>Opeongo Loppet:</strong>\r\n\r\n<strong>Winterlude Triathlon:</strong>   <strong>\r\n</strong>\r\n\r\n<strong>Viking Loppet:\r\n</strong>\r\n\r\n<strong>Canadian Ski Marathon:</strong>\r\n\r\n<strong>Gatineau Loppet:</strong>  <strong>\r\n</strong>\r\n\r\n<strong>Jackrabbit Classic</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\" rel=\"noopener noreferrer\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES & EVENTS','','inherit','closed','closed','','93-revision-v1','','','2019-09-19 08:05:12','2019-09-19 12:05:12','',93,'https://sofits.ca/2019/09/19/93-revision-v1/',0,'revision','',0),(3421,7,'2019-09-19 08:05:27','2019-09-19 12:05:27','<h2><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\"><span style=\"color: #333333; text-decoration: underline;\">(to be updated soon)</span>\r\n</span></span></h2>\r\n&nbsp;\r\n\r\n<strong>Silver Spoon:\r\n</strong>\r\n\r\n<strong>Tay Valley Loppet</strong>\r\n\r\n<strong>Opeongo Loppet:</strong>\r\n\r\n<strong>Winterlude Triathlon:</strong>   <strong>\r\n</strong>\r\n\r\n<strong>Viking Loppet:\r\n</strong>\r\n\r\n<strong>Canadian Ski Marathon:</strong>\r\n\r\n<strong>Gatineau Loppet:</strong>  <strong>\r\n</strong>\r\n\r\n<strong>Jackrabbit Classic</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\" rel=\"noopener noreferrer\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES & EVENTS','','inherit','closed','closed','','93-revision-v1','','','2019-09-19 08:05:27','2019-09-19 12:05:27','',93,'https://sofits.ca/2019/09/19/93-revision-v1/',0,'revision','',0),(3422,7,'2019-09-19 08:05:57','2019-09-19 12:05:57','<h2><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\"><span style=\"color: #333333; text-decoration: underline;\">(2019-2020 info coming soon)</span>\r\n</span></span></h2>\r\n&nbsp;\r\n\r\n<strong>Silver Spoon:\r\n</strong>\r\n\r\n<strong>Tay Valley Loppet</strong>\r\n\r\n<strong>Opeongo Loppet:</strong>\r\n\r\n<strong>Winterlude Triathlon:</strong>   <strong>\r\n</strong>\r\n\r\n<strong>Viking Loppet:\r\n</strong>\r\n\r\n<strong>Canadian Ski Marathon:</strong>\r\n\r\n<strong>Gatineau Loppet:</strong>  <strong>\r\n</strong>\r\n\r\n<strong>Jackrabbit Classic</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\" rel=\"noopener noreferrer\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES & EVENTS','','inherit','closed','closed','','93-revision-v1','','','2019-09-19 08:05:57','2019-09-19 12:05:57','',93,'https://sofits.ca/2019/09/19/93-revision-v1/',0,'revision','',0),(3426,7,'2019-09-20 17:07:25','2019-09-20 21:07:25','','190920_Sofits-Send-Off_02','','inherit','open','closed','','190920_sofits-send-off_02','','','2019-09-20 17:07:25','2019-09-20 21:07:25','',3317,'https://sofits.ca/wp-content/uploads/190920_Sofits-Send-Off_02.jpg',0,'attachment','image/jpeg',0),(3427,7,'2019-09-20 17:07:48','2019-09-20 21:07:48','<img class=\"alignnone size-full wp-image-3426\" src=\"https://sofits.ca/wp-content/uploads/190920_Sofits-Send-Off_02.jpg\" alt=\"\" width=\"1000\" height=\"552\" />\r\n\r\nRaise a glass to the end of another great summer!   Dryland is here!    [Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','SOFITS  FALL AND WINTER CALENDAR','','inherit','closed','closed','','3317-revision-v1','','','2019-09-20 17:07:48','2019-09-20 21:07:48','',3317,'https://sofits.ca/2019/09/20/3317-revision-v1/',0,'revision','',0),(3429,7,'2019-09-22 19:00:46','2019-09-22 23:00:46','','111003_comparison','','inherit','open','closed','','111003_comparison','','','2019-09-22 19:00:46','2019-09-22 23:00:46','',0,'https://sofits.ca/wp-content/uploads/111003_comparison.jpg',0,'attachment','image/jpeg',0),(3430,7,'2019-09-22 19:06:20','2019-09-22 23:06:20','','141006_View-to-Fortune','','inherit','open','closed','','141006_view-to-fortune','','','2019-09-22 19:06:20','2019-09-22 23:06:20','',0,'https://sofits.ca/wp-content/uploads/141006_View-to-Fortune.jpg',0,'attachment','image/jpeg',0),(3431,7,'2019-09-22 20:02:44','2019-09-23 00:02:44','<p align=\"justify\"><span style=\"font-size: large;\"><u><b><img class=\"alignnone size-full wp-image-1255\" src=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\" alt=\"\" width=\"750\" height=\"515\" />DO YOU LACK STRONG, GENERAL FITNESS? </b></u> </span></p>\n<p align=\"justify\"><span style=\"font-size: large;\">Good fitness will carry you pretty far in skiing, even if your technique is not perfect. If you are lacking basic fitness, you are in the group that will see huge gains in a short time, simply by exercising consistently. </span></p>\n<p align=\"justify\"><span style=\"font-size: large;\">Our dryland session is not enough! Before the ski season begins: Aim for 3 - 4 aerobic sessions a week and 2 strength sessions. (Friday’s session includes both 1 aerobic and 1 strength as well as technique) Spin classes or new-runners’ groups are a fun way to increase your fitness. Or ski stride in the park once a week in addition to Friday’s workout. Add a weekly strength class to supplement our Friday strength. And don’t forget to stretch it out. Join a yoga class or find a class online. </span></p>\n<p align=\"justify\"><span style=\"font-size: large;\">Start where you are at, don’t worry about keeping up with others, and aim for consistently showing up. Don’t worry too much about interval training until you have a “base”. Aim for consistency rather than speed to prevent injury. Intervals can be added in later. </span></p>\n<p align=\"justify\"><span style=\"font-size: large;\">Note that activities such as dog walking or easy hiking, although good for general health, will do little to improve your skiing. These generally fall below zone 1. </span></p>\n<p align=\"justify\"><span style=\"font-size: large;\"><u><b>ALREADY FIT AND ACTIVE, BUT WANT TO IMPROVE YOUR PERFORMANCE ON SKIS?</b></u></span></p>\n<p align=\"justify\"><span style=\"font-size: large;\">This is harder! It requires great motivation and patience, not to mention attention to detail and the willingness to ski on your own at times. </span></p>\n<p align=\"justify\"><span style=\"font-size: large;\">First, dedicate portions of each ski to technical practice. For example, the first 15 minutes can be a warm up without poles, or a double pole session. Or find a hill on which to practice your climbs and descents a number of times. Skiing is similar to swimming in that technique is paramount. Pick one technical point and focus on that. Grab opportunities to be filmed, or take a private or semi-private or small group lesson. </span></p>\n<p align=\"justify\"><span style=\"font-size: large;\">Work daily at double poling. Many recreational skiers avoid using double poling, and this is particularly true for women. In the right conditions it is considerably easier than diagonal stride. If you are competent at it, it is one way to go faster with less effort and a lower heart rate. It is also fundamental to skate skiing. (Elite skiers use double pole for at least 1/3 of their mileage, and have been known to double pole entire races. )</span></p>\n<p align=\"justify\">                                                                                   *****************************************************************</p>\n<p align=\"justify\"><span style=\"font-size: large;\">Secondly, you will need to have a clear idea of your ski specific heart rate zones. And we are not talking about the generic formulas based on age or the fanciful numbers generated by watches and treadmill computers. Time trials or short races are perfect for capturing your own personal numbers. If you have been participating in running races and know your average heart rate for the race, you are in luck! Zones can be calculated from that number. Once you have verified your heart rates for a while you will probably have a good idea of how each zone feels, but adults generally misjudge their effort levels, particularly when in groups.  Classic ski zones and running zones are usually about the same. Ask Jo-Ann for more details if you are interested in this.\n</span></p>\n<p align=\"justify\"><span style=\"font-size: large;\">Focus on “polarizing” your training so that it is either super easy and slow (</span><span style=\"font-size: large;\">elite skiers spend 8o % of their training time in zones 1 and 2) or really hard (elite skiers spend above 20% of their training time in zones higher than zone 3). </span></p>\n<p align=\"justify\"><span style=\"font-size: large;\">Each workout should have a specific focus (for examples, strength on skis, zone 1 recovery, long slow distance in zones 1-2, high-end intervals in zone 4 or 5, or speed work, and occasionally just a fun group ski without worrying about hard you are going). You will need an accurate HRM with a chest strap and the confidence and will power to adhere to limits. </span></p>\n<p align=\"justify\"><span style=\"font-size: large;\">It also goes without saying that the focus should always be on good technique, whether skiing easy or hard. </span></p>','FITNESS OR PERFORMANCE?','','inherit','closed','closed','','3195-autosave-v1','','','2019-09-22 20:02:44','2019-09-23 00:02:44','',3195,'https://sofits.ca/2019/09/22/3195-autosave-v1/',0,'revision','',0),(3432,7,'2019-09-22 20:03:48','2019-09-23 00:03:48','<p align=\"justify\"><span style=\"font-size: large;\"><u><b><img class=\"alignnone size-full wp-image-1255\" src=\"https://sofits.ca/wp-content/uploads/121109_Sofits-Skipping2.jpg\" alt=\"\" width=\"750\" height=\"515\" />DO YOU LACK STRONG, GENERAL FITNESS? </b></u> </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Good fitness will carry you pretty far in skiing, even if your technique is not perfect. If you are lacking basic fitness, you are in the group that will see huge gains in a short time, simply by exercising consistently. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Our dryland session is not enough! Before the ski season begins: Aim for 3 - 4 aerobic sessions a week and 2 strength sessions. (Friday’s session includes both 1 aerobic and 1 strength as well as technique) Spin classes or new-runners’ groups are a fun way to increase your fitness. Or ski stride in the park once a week in addition to Friday’s workout. Add a weekly strength class to supplement our Friday strength. And don’t forget to stretch it out. Join a yoga class or find a class online. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Start where you are at, don’t worry about keeping up with others, and aim for consistently showing up. Don’t worry too much about interval training until you have a “base”. Aim for consistency rather than speed to prevent injury. Intervals can be added in later. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Note that activities such as dog walking or easy hiking, although good for general health, will do little to improve your skiing. These generally fall below zone 1. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\"><u><b>ALREADY FIT AND ACTIVE, BUT WANT TO IMPROVE YOUR PERFORMANCE ON SKIS?</b></u></span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">This is harder! It requires great motivation and patience, not to mention attention to detail and the willingness to ski on your own at times. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">First, dedicate portions of each ski to technical practice. For example, the first 15 minutes can be a warm up without poles, or a double pole session. Or find a hill on which to practice your climbs and descents a number of times. Skiing is similar to swimming in that technique is paramount. Pick one technical point and focus on that. Grab opportunities to be filmed, or take a private or semi-private or small group lesson. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Work daily at double poling. Many recreational skiers avoid using double poling, and this is particularly true for women. In the right conditions it is considerably easier than diagonal stride. If you are competent at it, it is one way to go faster with less effort and a lower heart rate. It is also fundamental to skate skiing. (Elite skiers use double pole for at least 1/3 of their mileage, and have been known to double pole entire races. )</span></p>\r\n<p align=\"justify\">                                                                                   *****************************************************************</p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Secondly, you will need to have a clear idea of your ski specific heart rate zones. And we are not talking about the generic formulas based on age or the fanciful numbers generated by watches and treadmill computers. Time trials or short races are perfect for capturing your own personal numbers. If you have been participating in running races and know your average heart rate for the race, you are in luck! Zones can be calculated from that number. Classic ski zones and running zones are usually about the same.Once you have verified your heart rates for a while you will probably have a good idea of how each zone feels, but recreational runners have been found to generally misjudge their effort levels, particularly when in groups.   Ask Jo-Ann for more details if you are interested in this.\r\n</span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Focus on “polarizing” your training so that it is either super easy and slow (</span><span style=\"font-size: large;\">elite skiers spend 8o % of their training time in zones 1 and 2) or really hard (elite skiers spend above 20% of their training time in zones higher than zone 3). </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">Each workout should have a specific focus (for examples, strength on skis, zone 1 recovery, long slow distance in zones 1-2, high-end intervals in zone 4 or 5, or speed work, and occasionally just a fun group ski without worrying about hard you are going). You will need an accurate HRM with a chest strap and the confidence and will power to adhere to limits. </span></p>\r\n<p align=\"justify\"><span style=\"font-size: large;\">It also goes without saying that the focus should always be on good technique, whether skiing easy or hard. </span></p>','FITNESS OR PERFORMANCE?','','inherit','closed','closed','','3195-revision-v1','','','2019-09-22 20:03:48','2019-09-23 00:03:48','',3195,'https://sofits.ca/2019/09/22/3195-revision-v1/',0,'revision','',0),(3440,7,'2019-09-22 20:40:20','2019-09-23 00:40:20','<strong>(We have used this system for a few years, but may or may not use it in 2019. )</strong>\r\n\r\n<strong>WHICH SKI GROUP ARE YOU?</strong>\r\n\r\nWe welcome skiers of all levels providing you are comfortable on skis, and can ski in control on downhill sections.\r\n\r\nFor group skiing and for our workouts, it is important to ski with a compatible group.  Here are some guidelines to help you choose. You may fall somewhere between two groups, and it may even change from week to week. If you are unsure, start with an easier group and see how it works out. Although fitness requires consistency and working outside your comfort zone at times, if you are in too tough a group, you will be exhausted or discouraged.   If you regularly ski above your comfort level, your fitness may not im<span class=\"text_exposed_show\">prove and you have an excellent chance of getting injured or catching whatever bug is going around.\r\n</span>\r\n\r\n<span class=\"text_exposed_show\">. </span>\r\n<div class=\"text_exposed_show\">\r\n\r\n<strong>GREEN: (Mainly parkway skiing, trail 50 and Ridge Road, depending on snow conditions )</strong>\r\nGreen group is intended to build basic ski fitness and to acquire experience skiing on non technical trails. You may be green if one or more  of the following apply,\r\n\r\nA typical ski would be 13 K or less\r\n\r\nYou are a new runner, or a non-runner.\r\nYou cycle mostly on the flats, or very infrequently\r\nYour main love is swimming\r\nYou exercise around 5 or fewer hours each week.\r\nYou spent much of the summer on a deck chair\r\nYou ski 2 or fewer  times a week in the winter\r\nYou are feeling stressed or unusually tired\r\nYou are nursing an injury.\r\nYou were ill during the previous week(s).\r\n\r\n&nbsp;\r\n\r\n<strong>BLUE: (Will ski on any classic or skate trail in the park, depending on conditions.  May possibly go back country)</strong>\r\nYou may be blue if\r\n\r\nYou comfortably ski 15 - 20 K on an average day\r\n\r\nYou are fit\r\nYou regularly run, or cycle, often on hilly terrain.\r\nYou train 5 -6 days a week, year round\r\nYou generally train around 5 – 10 hours each week (and occasionally more)\r\nYou have no health concerns about raising your heart rate during intensity training\r\nYou like to break a sweat and challenge yourself .\r\nYou ski 3 or more times each week.\r\nYou may or may not be interested in taking part in Ski Loppets or the Ski Marathon.\r\n\r\n<strong>RED: (Will ski on any classic or skate trail in the park, in a range of conditions. May possibly go back country )</strong>\r\nYou may be red if\r\n\r\nYou usually ski over 20K an an average ski day\r\n\r\nYou are very fit\r\nYou are driven to compete, either in races or against yourself\r\nYou have a concrete and measurable goal (“to improve” is too vague!)\r\nYou are motivated to spend time working within your own intensity zones.\r\nYou are motivated to train alone when necessary.\r\nYou enjoy working on incremental technical improvements, and relish being videotaped\r\nYou are motivated to measure and keep track of your workouts\r\nYou enjoy working on speed, learning new skills and pushing the envelope\r\nYou ski 4 – 6 times a week and put other activities aside to get out on snow.\r\nYou generally train between 7 and 14 hours a week (and occasionally more).\r\n\r\n</div>','GREEN BLUE RED','','inherit','closed','closed','','2693-revision-v1','','','2019-09-22 20:40:20','2019-09-23 00:40:20','',2693,'https://sofits.ca/2019/09/22/2693-revision-v1/',0,'revision','',0),(3442,7,'2019-09-22 20:42:32','2019-09-23 00:42:32','<img class=\"alignnone size-full wp-image-1972\" src=\"https://sofits.ca/wp-content/uploads/150306_Sofits-Skate.jpg\" alt=\"150306_Sofits-Skate\" width=\"800\" height=\"542\" />1. Sofits is a cooperative group of active women 50 years and over. All are comfortable on skis and enjoy training together.<br class=\"\" />2.  Sofits meet from September through March with the specific aim of improving their cross country skiing skills.\r\n\r\n3. Sofits is not a ski touring group, although we certainly hope that the training encourages Sofits to organize ski outings on other days of the week.  Gatineau Park is open 24/7.\r\n\r\n4.  Sofits meet in fair, foul and bitter weather.  We cancel only if conditions are dangerous ( hurricanes, earthquakes, freezing rain)\r\n5. We are a diverse group, each training at her own level.  There are no speed requirements to join.\r\n6. Sofits  support each other without criticism. This extends to our Facebook groups.  Any rude, critical  or hostile messages will be deleted immediately and the sender removed from the group.\r\n\r\n<strong>During our Training  Sessions:</strong>\r\n<ul>\r\n 	<li>You are encouraged to talk,  sing and laugh except while a coach or helper is explaining the workout.</li>\r\n 	<li>You are encouraged to  step quietly aside and watch the others\' antics if an exercise bothers your ankle/back/neck/shoulder/knee/hip/wrist/elbow/sense of decorum.</li>\r\n 	<li>Grunting and groaning is encouraged during difficult exercises.   However, if you simply dislike or disapprove of an exercise, please refrain from saying so during our practice.       Feel free to send our coaches an email about it, or talk to them when they are not coaching.  Negative comments can poison group dynamics.</li>\r\n 	<li>The name \"Sofits\" refers to the group, not to individual people.  All  \"<i><b>Sofits</b></i>\" events should be open to the group at large.  When a few  decide to privately run/ski/swim/hike/bike together, they are called <i><b>friends</b></i>, not  Sofits.</li>\r\n</ul>','MODUS OPERANDI','','inherit','closed','closed','','2446-revision-v1','','','2019-09-22 20:42:32','2019-09-23 00:42:32','',2446,'https://sofits.ca/2019/09/22/2446-revision-v1/',0,'revision','',0),(3448,7,'2019-09-30 08:33:05','2019-09-30 12:33:05','','190902_Sofits-200908','','inherit','open','closed','','190902_sofits-200908','','','2019-09-30 08:33:05','2019-09-30 12:33:05','',0,'https://sofits.ca/wp-content/uploads/190902_Sofits-200908.jpg',0,'attachment','image/jpeg',0),(3449,7,'2019-09-30 08:33:07','2019-09-30 12:33:07','','190902_Sofits-200909','','inherit','open','closed','','190902_sofits-200909','','','2019-09-30 08:33:07','2019-09-30 12:33:07','',0,'https://sofits.ca/wp-content/uploads/190902_Sofits-200909.jpg',0,'attachment','image/jpeg',0),(3450,7,'2019-09-30 08:33:10','2019-09-30 12:33:10','','190902_Sofits-200910','','inherit','open','closed','','190902_sofits-200910','','','2019-09-30 08:33:10','2019-09-30 12:33:10','',0,'https://sofits.ca/wp-content/uploads/190902_Sofits-200910.jpg',0,'attachment','image/jpeg',0),(3451,7,'2019-09-30 08:33:12','2019-09-30 12:33:12','','190902_Sofits-201001','','inherit','open','closed','','190902_sofits-201001','','','2019-09-30 08:33:12','2019-09-30 12:33:12','',0,'https://sofits.ca/wp-content/uploads/190902_Sofits-201001.jpg',0,'attachment','image/jpeg',0),(3452,7,'2019-09-30 08:33:14','2019-09-30 12:33:14','','190902_Sofits-201002','','inherit','open','closed','','190902_sofits-201002','','','2019-09-30 08:33:14','2019-09-30 12:33:14','',0,'https://sofits.ca/wp-content/uploads/190902_Sofits-201002.jpg',0,'attachment','image/jpeg',0),(3453,7,'2019-09-30 08:33:18','2019-09-30 12:33:18','','190902_Sofits-201003','','inherit','open','closed','','190902_sofits-201003','','','2019-09-30 08:33:18','2019-09-30 12:33:18','',0,'https://sofits.ca/wp-content/uploads/190902_Sofits-201003.jpg',0,'attachment','image/jpeg',0),(3454,7,'2019-09-30 08:33:21','2019-09-30 12:33:21','','190902_Sofits-201006','','inherit','open','closed','','190902_sofits-201006','','','2019-09-30 08:33:21','2019-09-30 12:33:21','',0,'https://sofits.ca/wp-content/uploads/190902_Sofits-201006.jpg',0,'attachment','image/jpeg',0),(3455,7,'2019-09-30 08:33:26','2019-09-30 12:33:26','','190902_Sofits-201007','','inherit','open','closed','','190902_sofits-201007','','','2019-09-30 08:33:26','2019-09-30 12:33:26','',0,'https://sofits.ca/wp-content/uploads/190902_Sofits-201007.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wp_posts` VALUES (3460,7,'2019-09-30 09:01:50','2019-09-30 13:01:50','<!-- wp:paragraph -->\n<p> 2009-2012.  Updated. Dates are in the bottom of each photo.  The group actually started a year or two before this with Jo-Ann, Rosy and Kathy. For the first couple of years we didn\'t have a name. Sometimes we called ourselves WOAFs (women over age 50). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3461} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200908-1.jpg\" alt=\"\" class=\"wp-image-3461\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3464} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200909-2.jpg\" alt=\"\" class=\"wp-image-3464\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3463} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200910-1.jpg\" alt=\"\" class=\"wp-image-3463\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3466} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201001-1.jpg\" alt=\"\" class=\"wp-image-3466\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3465} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201002-1.jpg\" alt=\"\" class=\"wp-image-3465\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3470} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201003-1.jpg\" alt=\"\" class=\"wp-image-3470\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3468} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201006-1.jpg\" alt=\"\" class=\"wp-image-3468\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3469} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201007-1.jpg\" alt=\"\" class=\"wp-image-3469\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3488} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201104.jpg\" alt=\"\" class=\"wp-image-3488\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3489} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201105.jpg\" alt=\"\" class=\"wp-image-3489\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3490} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201111.jpg\" alt=\"\" class=\"wp-image-3490\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3491} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201112.jpg\" alt=\"\" class=\"wp-image-3491\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3492} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201113.jpg\" alt=\"\" class=\"wp-image-3492\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3493} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201114.jpg\" alt=\"\" class=\"wp-image-3493\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3494} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201115.jpg\" alt=\"\" class=\"wp-image-3494\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3495} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201216.jpg\" alt=\"\" class=\"wp-image-3495\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3496} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201217.jpg\" alt=\"\" class=\"wp-image-3496\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3497} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201225.jpg\" alt=\"\" class=\"wp-image-3497\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3498} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201226.jpg\" alt=\"\" class=\"wp-image-3498\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','PHOTO ARCHIVE 2009-2012','','publish','closed','closed','','photo-archive','','','2019-10-14 15:29:00','2019-10-14 19:29:00','',0,'https://sofits.ca/?page_id=3460',0,'page','',0),(3461,7,'2019-09-30 09:00:28','2019-09-30 13:00:28','','190902_Sofits-200908-1','','inherit','open','closed','','190902_sofits-200908-1','','','2019-09-30 09:00:28','2019-09-30 13:00:28','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-200908-1.jpg',0,'attachment','image/jpeg',0),(3462,7,'2019-09-30 09:00:31','2019-09-30 13:00:31','','190902_Sofits-200909-1','','inherit','open','closed','','190902_sofits-200909-1','','','2019-09-30 09:00:31','2019-09-30 13:00:31','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-200909-1.jpg',0,'attachment','image/jpeg',0),(3463,7,'2019-09-30 09:00:35','2019-09-30 13:00:35','','190902_Sofits-200910-1','','inherit','open','closed','','190902_sofits-200910-1','','','2019-09-30 09:00:35','2019-09-30 13:00:35','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-200910-1.jpg',0,'attachment','image/jpeg',0),(3464,7,'2019-09-30 09:00:35','2019-09-30 13:00:35','','190902_Sofits-200909-2','','inherit','open','closed','','190902_sofits-200909-2','','','2019-09-30 09:00:35','2019-09-30 13:00:35','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-200909-2.jpg',0,'attachment','image/jpeg',0),(3465,7,'2019-09-30 09:00:37','2019-09-30 13:00:37','','190902_Sofits-201002-1','','inherit','open','closed','','190902_sofits-201002-1','','','2019-09-30 09:00:37','2019-09-30 13:00:37','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201002-1.jpg',0,'attachment','image/jpeg',0),(3466,7,'2019-09-30 09:00:37','2019-09-30 13:00:37','','190902_Sofits-201001-1','','inherit','open','closed','','190902_sofits-201001-1','','','2019-09-30 09:00:37','2019-09-30 13:00:37','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201001-1.jpg',0,'attachment','image/jpeg',0),(3467,7,'2019-09-30 09:00:38','2019-09-30 13:00:38','','190902_Sofits-200910-2','','inherit','open','closed','','190902_sofits-200910-2','','','2019-09-30 09:00:38','2019-09-30 13:00:38','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-200910-2.jpg',0,'attachment','image/jpeg',0),(3468,7,'2019-09-30 09:00:38','2019-09-30 13:00:38','','190902_Sofits-201006-1','','inherit','open','closed','','190902_sofits-201006-1','','','2019-09-30 09:00:38','2019-09-30 13:00:38','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201006-1.jpg',0,'attachment','image/jpeg',0),(3469,7,'2019-09-30 09:00:38','2019-09-30 13:00:38','','190902_Sofits-201007-1','','inherit','open','closed','','190902_sofits-201007-1','','','2019-09-30 09:00:38','2019-09-30 13:00:38','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201007-1.jpg',0,'attachment','image/jpeg',0),(3470,7,'2019-09-30 09:00:38','2019-09-30 13:00:38','','190902_Sofits-201003-1','','inherit','open','closed','','190902_sofits-201003-1','','','2019-09-30 09:00:38','2019-09-30 13:00:38','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201003-1.jpg',0,'attachment','image/jpeg',0),(3471,7,'2019-09-30 09:00:41','2019-09-30 13:00:41','','190902_Sofits-201001-2','','inherit','open','closed','','190902_sofits-201001-2','','','2019-09-30 09:00:41','2019-09-30 13:00:41','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201001-2.jpg',0,'attachment','image/jpeg',0),(3472,7,'2019-09-30 09:00:43','2019-09-30 13:00:43','','190902_Sofits-201002-2','','inherit','open','closed','','190902_sofits-201002-2','','','2019-09-30 09:00:43','2019-09-30 13:00:43','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201002-2.jpg',0,'attachment','image/jpeg',0),(3473,7,'2019-09-30 09:00:46','2019-09-30 13:00:46','','190902_Sofits-201003-2','','inherit','open','closed','','190902_sofits-201003-2','','','2019-09-30 09:00:46','2019-09-30 13:00:46','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201003-2.jpg',0,'attachment','image/jpeg',0),(3474,7,'2019-09-30 09:00:48','2019-09-30 13:00:48','','190902_Sofits-201006-2','','inherit','open','closed','','190902_sofits-201006-2','','','2019-09-30 09:00:48','2019-09-30 13:00:48','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201006-2.jpg',0,'attachment','image/jpeg',0),(3475,7,'2019-09-30 09:00:50','2019-09-30 13:00:50','','190902_Sofits-201007-2','','inherit','open','closed','','190902_sofits-201007-2','','','2019-09-30 09:00:50','2019-09-30 13:00:50','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201007-2.jpg',0,'attachment','image/jpeg',0),(3476,7,'2019-09-30 09:01:51','2019-09-30 13:01:51',' ','','','publish','closed','closed','','3476','','','2019-09-30 09:01:51','2019-09-30 13:01:51','',0,'https://sofits.ca/2019/09/30/3476/',28,'nav_menu_item','',0),(3477,7,'2019-09-30 09:01:50','2019-09-30 13:01:50','<!-- wp:paragraph -->\n<p> 2009-2010.  Dates are in the bottom of each photo.  The group actually started a year or two before this with Jo-Ann, Rosy and Kathy. For the first couple of years we didn\'t have a name. Sometimes we called ourselves WOAFs (women over age 50). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3461} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200908-1.jpg\" alt=\"\" class=\"wp-image-3461\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3464} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200909-2.jpg\" alt=\"\" class=\"wp-image-3464\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3463} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200910-1.jpg\" alt=\"\" class=\"wp-image-3463\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3466} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201001-1.jpg\" alt=\"\" class=\"wp-image-3466\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3465} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201002-1.jpg\" alt=\"\" class=\"wp-image-3465\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3470} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201003-1.jpg\" alt=\"\" class=\"wp-image-3470\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3468} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201006-1.jpg\" alt=\"\" class=\"wp-image-3468\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3469} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201007-1.jpg\" alt=\"\" class=\"wp-image-3469\"/></figure>\n<!-- /wp:image -->','Photo Archive','','inherit','closed','closed','','3460-revision-v1','','','2019-09-30 09:01:50','2019-09-30 13:01:50','',3460,'https://sofits.ca/2019/09/30/3460-revision-v1/',0,'revision','',0),(3478,7,'2019-09-30 09:03:40','2019-09-30 13:03:40','<!-- wp:paragraph -->\n<p> 2009-2010.  Dates are in the bottom of each photo.  The group actually started a year or two before this with Jo-Ann, Rosy and Kathy. For the first couple of years we didn\'t have a name. Sometimes we called ourselves WOAFs (women over age 50). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3461} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200908-1.jpg\" alt=\"\" class=\"wp-image-3461\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3464} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200909-2.jpg\" alt=\"\" class=\"wp-image-3464\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3463} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200910-1.jpg\" alt=\"\" class=\"wp-image-3463\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3466} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201001-1.jpg\" alt=\"\" class=\"wp-image-3466\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3465} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201002-1.jpg\" alt=\"\" class=\"wp-image-3465\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3470} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201003-1.jpg\" alt=\"\" class=\"wp-image-3470\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3468} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201006-1.jpg\" alt=\"\" class=\"wp-image-3468\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3469} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201007-1.jpg\" alt=\"\" class=\"wp-image-3469\"/></figure>\n<!-- /wp:image -->','PHOTO ARCHIVE','','inherit','closed','closed','','3460-revision-v1','','','2019-09-30 09:03:40','2019-09-30 13:03:40','',3460,'https://sofits.ca/2019/09/30/3460-revision-v1/',0,'revision','',0),(3482,7,'2019-10-10 14:44:41','2019-10-10 18:44:41','<span style=\"font-size: x-large;\"><u><b>Goal Setting for Nordic Skiing 2019-2020</b></u></span>\r\n\r\n1. Find a goal that slightly stretches your envelope – something that, with consistent effort will be manageable. If you pick a failed goal from last year, think about what it was that kept you from achieving it. Take time to find a personal goal that isn’t the same as 20 other people! Make it meaningful to you. If you have achieved this same goal in the last several years, find something more \"stretchy\".  If you can achieve your goal early in the season, pick something more challenging.\r\n\r\n2. Your goal must be clear and measurable. <strong>It can not include vague words such as “better”, “more” or “improve”.  It cannot be a destination goal unless you quantify the location with other factors.  (for example \"ski to the fire tower\" is no longer allowed.  But ski there anyway!)\r\n</strong>\r\n\r\n3. Quantify your goal with dates, places, times, speeds, placings, etc.\r\n\r\n4. A goal can be an achievement goal, or <strong>a process goal</strong>.  Be careful of race goals.  Avoid aiming to win your age group unless you  are a full time skier, and know every single competitor\'s ability. Aiming for a specific time is also tricky as snow conditions are out of your control.  Instead aim  improve to your age group placing, or aim to simply participate in a race you have never before tried.  If you have participated in the same race for the last several years, perhaps it\'s time for a new goal.\r\n\r\n5. <strong>Map out exactly how, where or when you will work toward your goal.  This is more important than the final achievement and will ensure progress toward your goal.\r\n</strong>\r\n\r\n6. It might be a good idea to pick a second goal in case of poor snow conditions – but be sure to work towards both of them. Only one needs to count.\r\n\r\n<span style=\"font-size: x-large;\"><u><b>Some Random Examples: (but better to make up your own)</b></u></span>\r\n\r\na. To one-skate from _______ to _______ in a comfortable zone 2 without stopping by March 1 2019.\r\n\r\nb. To improve my age group placing in the 50K Classic Loppet\r\n\r\nc. To take part in 2 time trials\r\n\r\nd. To attend all weekly Friday sessions unless I am ill.\r\n\r\ne. To ski 4 (or 3 or 6) times every week, thus increasing my experience in varied snow conditions\r\n\r\nf. To grip wax my own skis before each classic ski and to arrive with waxed skis.\r\n\r\ng. To ski somewhere different each week. (Keep track !)\r\n\r\nh. To ski without poles for 10 (or 30) minutes of every ski in November and December.\r\n\r\nI. To be able to double pole from ____ to ____.\r\n\r\nJ. To take part in 15 Sunday (or Saturday, or Wednesday or whatever) trail runs and group skis.\r\n\r\nK. To join a weekly spin class (or run class, or strength class) to increase my general fitness.\r\n\r\nL. To eliminate sugary desserts allowing only one a week\r\n\r\nM. To ski alone at least once a week, so that I can focus on feel and technique without distractions.\r\n\r\nN. Ski ski at least once a week with slower skiers, to rest and savour zone 1\r\n\r\nO. To ski at least once a week with faster skiers, to push me out of my comfort zone.\r\n\r\nP. To ski further than I have skied before (you will need numbers for this goal. What is the furthest you have skied?)\r\n\r\nQ. To take part in the Canadian Ski Marathon as a Coureur de Bois (or tourer – how many sections?)\r\n\r\n<i>There are so many possibilities - use your imagination!</i>','SETTING SKI GOALS','','inherit','closed','closed','','3128-revision-v1','','','2019-10-10 14:44:41','2019-10-10 18:44:41','',3128,'https://sofits.ca/2019/10/10/3128-revision-v1/',0,'revision','',0),(3485,7,'2019-10-14 15:21:38','2019-10-14 19:21:38','<!-- wp:paragraph -->\n<p> 2009-2010.  Dates are in the bottom of each photo.  The group actually started a year or two before this with Jo-Ann, Rosy and Kathy. For the first couple of years we didn\'t have a name. Sometimes we called ourselves WOAFs (women over age 50). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3461} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200908-1.jpg\" alt=\"\" class=\"wp-image-3461\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3464} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200909-2.jpg\" alt=\"\" class=\"wp-image-3464\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3463} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200910-1.jpg\" alt=\"\" class=\"wp-image-3463\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3466} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201001-1.jpg\" alt=\"\" class=\"wp-image-3466\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3465} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201002-1.jpg\" alt=\"\" class=\"wp-image-3465\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3470} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201003-1.jpg\" alt=\"\" class=\"wp-image-3470\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3468} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201006-1.jpg\" alt=\"\" class=\"wp-image-3468\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3469} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201007-1.jpg\" alt=\"\" class=\"wp-image-3469\"/></figure>\n<!-- /wp:image -->','PHOTO ARCHIVE 2019-2010','','inherit','closed','closed','','3460-revision-v1','','','2019-10-14 15:21:38','2019-10-14 19:21:38','',3460,'https://sofits.ca/2019/10/14/3460-revision-v1/',0,'revision','',0),(3486,7,'2019-10-14 15:22:09','2019-10-14 19:22:09','<!-- wp:paragraph -->\n<p> 2009-2010.  Dates are in the bottom of each photo.  The group actually started a year or two before this with Jo-Ann, Rosy and Kathy. For the first couple of years we didn\'t have a name. Sometimes we called ourselves WOAFs (women over age 50). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3461} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200908-1.jpg\" alt=\"\" class=\"wp-image-3461\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3464} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200909-2.jpg\" alt=\"\" class=\"wp-image-3464\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3463} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200910-1.jpg\" alt=\"\" class=\"wp-image-3463\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3466} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201001-1.jpg\" alt=\"\" class=\"wp-image-3466\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3465} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201002-1.jpg\" alt=\"\" class=\"wp-image-3465\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3470} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201003-1.jpg\" alt=\"\" class=\"wp-image-3470\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3468} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201006-1.jpg\" alt=\"\" class=\"wp-image-3468\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3469} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201007-1.jpg\" alt=\"\" class=\"wp-image-3469\"/></figure>\n<!-- /wp:image -->','PHOTO ARCHIVE 2009-2012','','inherit','closed','closed','','3460-revision-v1','','','2019-10-14 15:22:09','2019-10-14 19:22:09','',3460,'https://sofits.ca/2019/10/14/3460-revision-v1/',0,'revision','',0),(3488,7,'2019-10-14 15:26:52','2019-10-14 19:26:52','','190902_Sofits-201104','','inherit','open','closed','','190902_sofits-201104','','','2019-10-14 15:26:52','2019-10-14 19:26:52','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201104.jpg',0,'attachment','image/jpeg',0),(3489,7,'2019-10-14 15:26:53','2019-10-14 19:26:53','','190902_Sofits-201105','','inherit','open','closed','','190902_sofits-201105','','','2019-10-14 15:26:53','2019-10-14 19:26:53','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201105.jpg',0,'attachment','image/jpeg',0),(3490,7,'2019-10-14 15:26:54','2019-10-14 19:26:54','','190902_Sofits-201111','','inherit','open','closed','','190902_sofits-201111','','','2019-10-14 15:26:54','2019-10-14 19:26:54','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201111.jpg',0,'attachment','image/jpeg',0),(3491,7,'2019-10-14 15:26:57','2019-10-14 19:26:57','','190902_Sofits-201112','','inherit','open','closed','','190902_sofits-201112','','','2019-10-14 15:26:57','2019-10-14 19:26:57','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201112.jpg',0,'attachment','image/jpeg',0),(3492,7,'2019-10-14 15:26:58','2019-10-14 19:26:58','','190902_Sofits-201113','','inherit','open','closed','','190902_sofits-201113','','','2019-10-14 15:26:58','2019-10-14 19:26:58','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201113.jpg',0,'attachment','image/jpeg',0),(3493,7,'2019-10-14 15:26:59','2019-10-14 19:26:59','','190902_Sofits-201114','','inherit','open','closed','','190902_sofits-201114','','','2019-10-14 15:26:59','2019-10-14 19:26:59','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201114.jpg',0,'attachment','image/jpeg',0),(3494,7,'2019-10-14 15:27:00','2019-10-14 19:27:00','','190902_Sofits-201115','','inherit','open','closed','','190902_sofits-201115','','','2019-10-14 15:27:00','2019-10-14 19:27:00','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201115.jpg',0,'attachment','image/jpeg',0),(3495,7,'2019-10-14 15:27:01','2019-10-14 19:27:01','','190902_Sofits-201216','','inherit','open','closed','','190902_sofits-201216','','','2019-10-14 15:27:01','2019-10-14 19:27:01','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201216.jpg',0,'attachment','image/jpeg',0),(3496,7,'2019-10-14 15:27:03','2019-10-14 19:27:03','','190902_Sofits-201217','','inherit','open','closed','','190902_sofits-201217','','','2019-10-14 15:27:03','2019-10-14 19:27:03','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201217.jpg',0,'attachment','image/jpeg',0),(3497,7,'2019-10-14 15:27:04','2019-10-14 19:27:04','','190902_Sofits-201225','','inherit','open','closed','','190902_sofits-201225','','','2019-10-14 15:27:04','2019-10-14 19:27:04','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201225.jpg',0,'attachment','image/jpeg',0),(3498,7,'2019-10-14 15:27:07','2019-10-14 19:27:07','','190902_Sofits-201226','','inherit','open','closed','','190902_sofits-201226','','','2019-10-14 15:27:07','2019-10-14 19:27:07','',3460,'https://sofits.ca/wp-content/uploads/190902_Sofits-201226.jpg',0,'attachment','image/jpeg',0),(3499,7,'2019-10-14 15:28:59','2019-10-14 19:28:59','<!-- wp:paragraph -->\n<p> 2009-2012.  Updated. Dates are in the bottom of each photo.  The group actually started a year or two before this with Jo-Ann, Rosy and Kathy. For the first couple of years we didn\'t have a name. Sometimes we called ourselves WOAFs (women over age 50). </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":3461} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200908-1.jpg\" alt=\"\" class=\"wp-image-3461\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3464} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200909-2.jpg\" alt=\"\" class=\"wp-image-3464\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3463} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-200910-1.jpg\" alt=\"\" class=\"wp-image-3463\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3466} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201001-1.jpg\" alt=\"\" class=\"wp-image-3466\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3465} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201002-1.jpg\" alt=\"\" class=\"wp-image-3465\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3470} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201003-1.jpg\" alt=\"\" class=\"wp-image-3470\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3468} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201006-1.jpg\" alt=\"\" class=\"wp-image-3468\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3469} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201007-1.jpg\" alt=\"\" class=\"wp-image-3469\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3488} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201104.jpg\" alt=\"\" class=\"wp-image-3488\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3489} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201105.jpg\" alt=\"\" class=\"wp-image-3489\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3490} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201111.jpg\" alt=\"\" class=\"wp-image-3490\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3491} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201112.jpg\" alt=\"\" class=\"wp-image-3491\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3492} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201113.jpg\" alt=\"\" class=\"wp-image-3492\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3493} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201114.jpg\" alt=\"\" class=\"wp-image-3493\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3494} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201115.jpg\" alt=\"\" class=\"wp-image-3494\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3495} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201216.jpg\" alt=\"\" class=\"wp-image-3495\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3496} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201217.jpg\" alt=\"\" class=\"wp-image-3496\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3497} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201225.jpg\" alt=\"\" class=\"wp-image-3497\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":3498} -->\n<figure class=\"wp-block-image\"><img src=\"https://sofits.ca/wp-content/uploads/190902_Sofits-201226.jpg\" alt=\"\" class=\"wp-image-3498\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','PHOTO ARCHIVE 2009-2012','','inherit','closed','closed','','3460-revision-v1','','','2019-10-14 15:28:59','2019-10-14 19:28:59','',3460,'https://sofits.ca/2019/10/14/3460-revision-v1/',0,'revision','',0),(3501,7,'2019-10-16 19:16:23','2019-10-16 23:16:23','<strong>(We have used this system for a few years, but may or may not use it in 2019. )</strong>\r\n\r\n<strong>WHICH SKI GROUP ARE YOU?</strong>\r\n\r\nWe welcome skiers of all levels providing you are comfortable on skis, and can ski in control on downhill sections.\r\n\r\nFor group skiing and for our workouts, it is important to ski with a compatible group.  Here are some guidelines to help you choose. You may fall somewhere between two groups, and it may even change from week to week. If you are unsure, start with an easier group and see how it works out. Although fitness requires consistency and working outside your comfort zone at times, if you are in too tough a group, you will be exhausted or discouraged.   If you regularly ski above your comfort level, your fitness may not im<span class=\"text_exposed_show\">prove and you have an excellent chance of getting injured or catching whatever bug is going around.\r\n</span>\r\n\r\n<span class=\"text_exposed_show\">. </span>\r\n<div class=\"text_exposed_show\">\r\n\r\n<strong>GREEN: (Mainly parkway skiing, trail 50 and Ridge Road, depending on snow conditions)</strong>\r\nGreen group is intended to build basic ski fitness and to acquire experience skiing on non technical trails. You may be green if one or more  of the following apply,\r\n\r\nA typical ski would be 13 K or less\r\n\r\nYou are a new runner, or a non-runner.\r\nYou cycle mostly on the flats, or very infrequently\r\nYour main love is swimming\r\nYou exercise around 5 or fewer hours each week.\r\nYou spent much of the summer on a deck chair\r\nYou ski 2 or fewer  times a week in the winter\r\nYou are feeling stressed or unusually tired\r\nYou are nursing an injury.\r\nYou were ill during the previous week(s).\r\n\r\n&nbsp;\r\n\r\n<strong>BLUE: (Will ski on any classic or skate trail in the park, depending on conditions.  May possibly go back country)</strong>\r\nYou may be blue if\r\n\r\nYou comfortably ski 15 - 20 K on an average dayYou are fit\r\nYou regularly run, or cycle, often on hilly terrain.\r\nYou train 5 -6 days a week, year round\r\nYou generally train around 5 – 10 hours each week (and occasionally more)\r\nYou have no health concerns about raising your heart rate during intensity training\r\nYou like to break a sweat and challenge yourself .\r\nYou ski 3 or more times each week.\r\nYou may or may not be interested in taking part in Ski Loppets or the Ski Marathon.\r\n\r\n<strong>RED: (Will ski on any classic or skate trail in the park, in a range of conditions. May possibly go back country )</strong>\r\nYou may be red if\r\n\r\nYou usually ski over 20K an an average ski dayYou are very fit\r\nYou are driven to compete, either in races or against yourself\r\nYou have a concrete and measurable goal (“to improve” is too vague!)\r\nYou are motivated to spend time working within your own intensity zones.\r\nYou are motivated to train alone when necessary.\r\nYou enjoy working on incremental technical improvements, and relish being videotaped\r\nYou are motivated to measure and keep track of your workouts\r\nYou enjoy working on speed, learning new skills and pushing the envelope\r\nYou ski 4 – 6 times a week and put other activities aside to get out on snow.\r\nYou generally train between 7 and 14 hours a week (and occasionally more).\r\n\r\n</div>','GREEN BLUE RED','','inherit','closed','closed','','2693-revision-v1','','','2019-10-16 19:16:23','2019-10-16 23:16:23','',2693,'https://sofits.ca/2019/10/16/2693-revision-v1/',0,'revision','',0),(3504,7,'2019-10-23 07:19:34','2019-10-23 11:19:34','','181028_First-Snow_10','','inherit','open','closed','','181028_first-snow_10','','','2019-10-23 07:19:34','2019-10-23 11:19:34','',0,'https://sofits.ca/wp-content/uploads/181028_First-Snow_10.jpg',0,'attachment','image/jpeg',0),(3513,7,'2019-11-05 07:28:35','2019-11-05 12:28:35','','061114','','inherit','open','closed','','061114','','','2019-11-05 07:28:35','2019-11-05 12:28:35','',0,'https://sofits.ca/wp-content/uploads/061114.jpg',0,'attachment','image/jpeg',0),(3516,7,'2019-11-07 06:56:45','2019-11-07 11:56:45','','060101','','inherit','open','closed','','060101','','','2019-11-07 06:56:45','2019-11-07 11:56:45','',0,'https://sofits.ca/wp-content/uploads/060101.jpg',0,'attachment','image/jpeg',0),(3532,7,'2019-11-16 17:50:44','2019-11-16 22:50:44','','191025_Sofits-Penguin_1','','inherit','open','closed','','191025_sofits-penguin_1','','','2019-11-16 17:50:44','2019-11-16 22:50:44','',3317,'https://sofits.ca/wp-content/uploads/191025_Sofits-Penguin_1.jpg',0,'attachment','image/jpeg',0),(3533,7,'2019-11-16 17:50:55','2019-11-16 22:50:55','<img class=\"alignnone size-full wp-image-3532\" src=\"https://sofits.ca/wp-content/uploads/191025_Sofits-Penguin_1.jpg\" alt=\"\" width=\"1000\" height=\"750\" /><img class=\"alignnone size-full wp-image-3426\" src=\"https://sofits.ca/wp-content/uploads/190920_Sofits-Send-Off_02.jpg\" alt=\"\" width=\"1000\" height=\"552\" />\r\n\r\nRaise a glass to the end of another great summer!   Dryland is here!    [Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','SOFITS  FALL AND WINTER CALENDAR','','inherit','closed','closed','','3317-revision-v1','','','2019-11-16 17:50:55','2019-11-16 22:50:55','',3317,'https://sofits.ca/2019/11/16/3317-revision-v1/',0,'revision','',0),(3534,7,'2019-11-16 17:52:17','2019-11-16 22:52:17','<img class=\"alignnone size-full wp-image-3532\" src=\"https://sofits.ca/wp-content/uploads/191025_Sofits-Penguin_1.jpg\" alt=\"\" width=\"1000\" height=\"750\" /><img class=\"alignnone size-full wp-image-3426\" src=\"https://sofits.ca/wp-content/uploads/190920_Sofits-Send-Off_02.jpg\" alt=\"\" width=\"1000\" height=\"552\" />\r\n\r\n[Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','SOFITS  FALL AND WINTER CALENDAR','','inherit','closed','closed','','3317-revision-v1','','','2019-11-16 17:52:17','2019-11-16 22:52:17','',3317,'https://sofits.ca/2019/11/16/3317-revision-v1/',0,'revision','',0),(3535,7,'2019-11-16 17:52:47','2019-11-16 22:52:47','<img class=\"alignnone size-full wp-image-3532\" src=\"https://sofits.ca/wp-content/uploads/191025_Sofits-Penguin_1.jpg\" alt=\"\" width=\"1000\" height=\"750\" /><img class=\"alignnone size-full wp-image-3426\" src=\"https://sofits.ca/wp-content/uploads/190920_Sofits-Send-Off_02.jpg\" alt=\"\" width=\"1000\" height=\"552\" />\r\n\r\n[Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','SOFITS  2019-2020  CALENDAR','','inherit','closed','closed','','3317-revision-v1','','','2019-11-16 17:52:47','2019-11-16 22:52:47','',3317,'https://sofits.ca/2019/11/16/3317-revision-v1/',0,'revision','',0),(3537,7,'2019-11-23 08:51:27','2019-11-23 13:51:27','','191119_Sofits-At-Nakkertok','','inherit','open','closed','','191119_sofits-at-nakkertok','','','2019-11-23 08:51:27','2019-11-23 13:51:27','',0,'https://sofits.ca/wp-content/uploads/191119_Sofits-At-Nakkertok.jpg',0,'attachment','image/jpeg',0),(3538,7,'2019-11-23 08:52:30','2019-11-23 13:52:30','','191121_Nakkertok01','','inherit','open','closed','','191121_nakkertok01','','','2019-11-23 08:52:30','2019-11-23 13:52:30','',0,'https://sofits.ca/wp-content/uploads/191121_Nakkertok01.jpg',0,'attachment','image/jpeg',0),(3539,7,'2019-11-23 08:53:47','2019-11-23 13:53:47','','191122_Sofits-Post-Rain-Nakkertok_2','','inherit','open','closed','','191122_sofits-post-rain-nakkertok_2','','','2019-11-23 08:53:47','2019-11-23 13:53:47','',3317,'https://sofits.ca/wp-content/uploads/191122_Sofits-Post-Rain-Nakkertok_2.jpg',0,'attachment','image/jpeg',0),(3540,7,'2019-11-23 08:53:57','2019-11-23 13:53:57','<img class=\"alignnone size-full wp-image-3539\" src=\"https://sofits.ca/wp-content/uploads/191122_Sofits-Post-Rain-Nakkertok_2.jpg\" alt=\"\" width=\"1000\" height=\"667\" /><img class=\"alignnone size-full wp-image-3532\" src=\"https://sofits.ca/wp-content/uploads/191025_Sofits-Penguin_1.jpg\" alt=\"\" width=\"1000\" height=\"750\" /><img class=\"alignnone size-full wp-image-3426\" src=\"https://sofits.ca/wp-content/uploads/190920_Sofits-Send-Off_02.jpg\" alt=\"\" width=\"1000\" height=\"552\" />\r\n\r\n[Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','SOFITS  2019-2020  CALENDAR','','inherit','closed','closed','','3317-revision-v1','','','2019-11-23 08:53:57','2019-11-23 13:53:57','',3317,'https://sofits.ca/2019/11/23/3317-revision-v1/',0,'revision','',0),(3542,7,'2019-11-25 19:43:04','2019-11-26 00:43:04','','191122_Sofits-Post-Rain-Nakkertok181130','','inherit','open','closed','','191122_sofits-post-rain-nakkertok181130','','','2019-11-25 19:43:04','2019-11-26 00:43:04','',3317,'https://sofits.ca/wp-content/uploads/191122_Sofits-Post-Rain-Nakkertok181130.jpg',0,'attachment','image/jpeg',0),(3543,7,'2019-11-25 19:43:13','2019-11-26 00:43:13','<img class=\"alignnone size-full wp-image-3542\" src=\"https://sofits.ca/wp-content/uploads/191122_Sofits-Post-Rain-Nakkertok181130.jpg\" alt=\"\" width=\"1000\" height=\"630\" /><img class=\"alignnone size-full wp-image-3532\" src=\"https://sofits.ca/wp-content/uploads/191025_Sofits-Penguin_1.jpg\" alt=\"\" width=\"1000\" height=\"750\" /><img class=\"alignnone size-full wp-image-3426\" src=\"https://sofits.ca/wp-content/uploads/190920_Sofits-Send-Off_02.jpg\" alt=\"\" width=\"1000\" height=\"552\" />\r\n\r\n[Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','SOFITS  2019-2020  CALENDAR','','inherit','closed','closed','','3317-revision-v1','','','2019-11-25 19:43:13','2019-11-26 00:43:13','',3317,'https://sofits.ca/2019/11/25/3317-revision-v1/',0,'revision','',0),(3544,7,'2019-11-30 17:34:48','2019-11-30 22:34:48','','191129_Sofits-Nakkertok1','','inherit','open','closed','','191129_sofits-nakkertok1','','','2019-11-30 17:34:48','2019-11-30 22:34:48','',3317,'https://sofits.ca/wp-content/uploads/191129_Sofits-Nakkertok1.jpg',0,'attachment','image/jpeg',0),(3545,7,'2019-11-30 17:34:57','2019-11-30 22:34:57','<img class=\"alignnone size-full wp-image-3544\" src=\"https://sofits.ca/wp-content/uploads/191129_Sofits-Nakkertok1.jpg\" alt=\"\" width=\"1000\" height=\"587\" /><img class=\"alignnone size-full wp-image-3542\" src=\"https://sofits.ca/wp-content/uploads/191122_Sofits-Post-Rain-Nakkertok181130.jpg\" alt=\"\" width=\"1000\" height=\"630\" /><img class=\"alignnone size-full wp-image-3532\" src=\"https://sofits.ca/wp-content/uploads/191025_Sofits-Penguin_1.jpg\" alt=\"\" width=\"1000\" height=\"750\" /><img class=\"alignnone size-full wp-image-3426\" src=\"https://sofits.ca/wp-content/uploads/190920_Sofits-Send-Off_02.jpg\" alt=\"\" width=\"1000\" height=\"552\" />\r\n\r\n[Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','SOFITS  2019-2020  CALENDAR','','inherit','closed','closed','','3317-revision-v1','','','2019-11-30 17:34:57','2019-11-30 22:34:57','',3317,'https://sofits.ca/2019/11/30/3317-revision-v1/',0,'revision','',0),(3547,7,'2019-12-13 14:53:50','2019-12-13 19:53:50','','191213_Sofits-Ruins_21','','inherit','open','closed','','191213_sofits-ruins_21','','','2019-12-13 14:53:50','2019-12-13 19:53:50','',3317,'https://sofits.ca/wp-content/uploads/191213_Sofits-Ruins_21.jpg',0,'attachment','image/jpeg',0),(3548,7,'2019-12-13 14:54:38','2019-12-13 19:54:38','<img class=\"alignnone size-full wp-image-3547\" src=\"https://sofits.ca/wp-content/uploads/191213_Sofits-Ruins_21.jpg\" alt=\"\" width=\"1000\" height=\"648\" /><img class=\"alignnone size-full wp-image-3544\" src=\"https://sofits.ca/wp-content/uploads/191129_Sofits-Nakkertok1.jpg\" alt=\"\" width=\"1000\" height=\"587\" /><img class=\"alignnone size-full wp-image-3542\" src=\"https://sofits.ca/wp-content/uploads/191122_Sofits-Post-Rain-Nakkertok181130.jpg\" alt=\"\" width=\"1000\" height=\"630\" /><img class=\"alignnone size-full wp-image-3532\" src=\"https://sofits.ca/wp-content/uploads/191025_Sofits-Penguin_1.jpg\" alt=\"\" width=\"1000\" height=\"750\" /><img class=\"alignnone size-full wp-image-3426\" src=\"https://sofits.ca/wp-content/uploads/190920_Sofits-Send-Off_02.jpg\" alt=\"\" width=\"1000\" height=\"552\" />\r\n\r\n[Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','SOFITS  2019-2020  CALENDAR','','inherit','closed','closed','','3317-revision-v1','','','2019-12-13 14:54:38','2019-12-13 19:54:38','',3317,'https://sofits.ca/2019/12/13/3317-revision-v1/',0,'revision','',0),(3552,7,'2020-03-13 15:29:14','2020-03-13 19:29:14','<img class=\"alignnone size-full wp-image-1972\" src=\"https://sofits.ca/wp-content/uploads/150306_Sofits-Skate.jpg\" alt=\"150306_Sofits-Skate\" width=\"800\" height=\"542\" />1. Sofits is a cooperative group of active women 50 years and over. All are comfortable on skis and enjoy training together.<br class=\"\" />2.  Sofits meet from September through March with the specific aim of improving their cross country skiing skills.\n\n3. Sofits is not a ski touring group, although we certainly hope that the training encourages Sofits to organize ski outings on other days of the week.  Gatineau Park is open 24/7.\n\n4. We are a diverse group, each training at her own level.  There are no speed requirements to join.\n5. Sofits  support each other without criticism. This extends to our Facebook groups.  Any rude, critical  or hostile messages will be deleted immediately and the sender removed from the group.\n\n<strong>During our Friday Easy Ski Outings:\n</strong>\n<ul>\n 	<li>We ask that everyone be ready to start on time, NEITHER EARLY  nor LATE.  For group unity as well as a healthy warm up, we ask that everyone be willing to start together and ski slowly as a group for the first 20 minutes.  After  the group warm up, divide into your various groups and ski at your own pace.</li>\n</ul>\n<strong>During our Training  Sessions:</strong>\n<ul>\n 	<li>You are encouraged to talk,  sing and laugh except while a coach or helper is explaining the workout.</li>\n 	<li>You are encouraged to  step quietly aside and watch the others\' antics if an exercise bothers your ankle/back/neck/shoulder/knee/hip/wrist/elbow/sense of decorum.</li>\n 	<li>Grunting and groaning is encouraged during difficult exercises.   However, if you simply dislike or disapprove of an exercise, please refrain from saying so during our practice.       Feel free to send our coaches an email about it, or talk to them when they are not coaching.</li>\n 	<li>The name \"Sofits\" refers to an inclusive  group, not to individual people or activities by a few.  All  \"<i><b>Sofits</b></i>\" events should be open to the group at large.  When a few  decide to privately run/ski/swim/hike/bike together, they are called <i><b>friends</b></i>, not  Sofits.</li>\n</ul>','MODUS OPERANDI','','inherit','closed','closed','','2446-revision-v1','','','2020-03-13 15:29:14','2020-03-13 19:29:14','',2446,'https://sofits.ca/2020/03/13/2446-revision-v1/',0,'revision','',0),(3555,7,'2020-03-15 15:11:14','2020-03-15 19:11:14','<img class=\"alignnone size-full wp-image-3547\" src=\"https://sofits.ca/wp-content/uploads/191213_Sofits-Ruins_21.jpg\" alt=\"\" width=\"1000\" height=\"648\" /><img class=\"alignnone size-full wp-image-3544\" src=\"https://sofits.ca/wp-content/uploads/191129_Sofits-Nakkertok1.jpg\" alt=\"\" width=\"1000\" height=\"587\" /><img class=\"alignnone size-full wp-image-3542\" src=\"https://sofits.ca/wp-content/uploads/191122_Sofits-Post-Rain-Nakkertok181130.jpg\" alt=\"\" width=\"1000\" height=\"630\" /><img class=\"alignnone size-full wp-image-3532\" src=\"https://sofits.ca/wp-content/uploads/191025_Sofits-Penguin_1.jpg\" alt=\"\" width=\"1000\" height=\"750\" /><img class=\"alignnone size-full wp-image-3426\" src=\"https://sofits.ca/wp-content/uploads/190920_Sofits-Send-Off_02.jpg\" alt=\"\" width=\"1000\" height=\"552\" />\r\n\r\n[Spider_Calendar id=\"2\" theme=\"13\" default=\"month\" select=\"month,week,\"]','SOFITS','','inherit','closed','closed','','3317-revision-v1','','','2020-03-15 15:11:14','2020-03-15 19:11:14','',3317,'https://sofits.ca/2020/03/15/3317-revision-v1/',0,'revision','',0),(3556,7,'2020-03-15 19:17:27','2020-03-15 23:17:27','<img class=\"alignnone size-full wp-image-1972\" src=\"https://sofits.ca/wp-content/uploads/150306_Sofits-Skate.jpg\" alt=\"150306_Sofits-Skate\" width=\"800\" height=\"542\">1. Sofits is a cooperative group of active women 50 years and over. All are comfortable on skis and enjoy training together.<br class=\"\">2.&nbsp; Sofits meet from September through March with the specific aim of improving their cross country skiing skills.\n\n3. Sofits is not a ski touring group, although we certainly hope that the training encourages Sofits to organize ski outings on other days of the week.&nbsp; Gatineau Park is open 24/7.\n\n4. We are a diverse group, each training at her own level.&nbsp; There are no speed requirements to join.\n5. Sofits&nbsp; support each other without criticism. This extends to our Facebook groups.&nbsp; Any rude, critical&nbsp; or hostile messages will be deleted immediately and the sender removed from the group.\n\n<strong>During our Friday Easy Ski Outings:\n</strong>\n<ul>\n 	<li>We ask that everyone be ready to start on time, NEITHER EARLY&nbsp; nor LATE.&nbsp; For group unity as well as a healthy warm up, we ask that everyone be willing to start together and ski slowly as a group for the first 20 minutes.&nbsp; After&nbsp; the group warm up, divide into your various groups and ski at your own pace.</li>\n</ul>\n<strong>During our Training&nbsp; Sessions:</strong>\n<ul>\n 	<li>You are encouraged to talk,&nbsp; sing and laugh except while a coach or helper is explaining the workout.</li>\n 	<li>You are encouraged to&nbsp; step quietly aside and watch the others\' antics if an exercise bothers your ankle/back/neck/shoulder/knee/hip/wrist/elbow/sense of decorum.</li>\n 	<li>Grunting and groaning is encouraged during difficult exercises.&nbsp;&nbsp; However, if you simply dislike or disapprove of an exercise, please refrain from saying so during our practice.&nbsp; &nbsp;&nbsp; &nbsp; Feel free to send our coaches an email about it, or talk to them when they are not coaching.</li>\n 	<li>The name \"Sofits\" refers to an inclusive&nbsp; group, not to individual people or activities by a few.&nbsp; All&nbsp; \"<i><b>Sofits</b></i>\" events should be open to the group at large.&nbsp; When a few&nbsp; decide to privately run/ski/swim/hike/bike together, they are called <i><b>friends</b></i>, not&nbsp; Sofits.</li>\n</ul>','MODUS OPERANDI','','inherit','closed','closed','','2446-revision-v1','','','2020-03-15 19:17:27','2020-03-15 23:17:27','',2446,'https://sofits.ca/2020/03/15/2446-revision-v1/',0,'revision','',0),(3557,7,'2020-03-15 19:18:52','2020-03-15 23:18:52','<h2><span style=\"text-decoration: underline;\"><span style=\"color: #993300; text-decoration: underline;\"> </span></span></h2>\r\n&nbsp;\r\n\r\n<strong>Silver Spoon:\r\n</strong>\r\n\r\n<strong>Tay Valley Loppet</strong>\r\n\r\n<strong>Opeongo Loppet:</strong>\r\n\r\n<strong>Winterlude Triathlon:</strong>   <strong>\r\n</strong>\r\n\r\n<strong>Viking Loppet:\r\n</strong>\r\n\r\n<strong>Canadian Ski Marathon:</strong>\r\n\r\n<strong>Gatineau Loppet:</strong>  <strong>\r\n</strong>\r\n\r\n<strong>Jackrabbit Classic</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n<h1>Upcoming events:</h1>\r\n<a href=\"https://www.runguides.com/ottawa/runs?utm_source=runguides+race+updates&amp;utm_campaign=8dd74c811f-ottawa_run_update_november_2014&amp;utm_medium=email&amp;utm_term=0_d288a27637-8dd74c811f-82161981\" target=\"_blank\" rel=\"noopener noreferrer\">Ottawa Run Guide:</a> a complete schedule of road and trail running races in and around Ottawa\r\n\r\n&nbsp;\r\n\r\n&nbsp;','RACES & EVENTS','','inherit','closed','closed','','93-revision-v1','','','2020-03-15 19:18:52','2020-03-15 23:18:52','',93,'https://sofits.ca/2020/03/15/93-revision-v1/',0,'revision','',0),(3559,7,'2020-09-19 14:29:32','2020-09-19 18:29:32','{\"id\":\"3559\",\"field_id\":6,\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"Please enter your email, so we can follow up with you.\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},{\"id\":\"2\",\"type\":\"radio\",\"label\":\"Which department do you have a suggestion for?\",\"choices\":{\"1\":{\"label\":\"Sales\",\"value\":\"\",\"image\":\"\"},\"2\":{\"label\":\"Customer Support\",\"value\":\"\",\"image\":\"\"},\"3\":{\"label\":\"Product Development\",\"value\":\"\",\"image\":\"\"},\"4\":{\"label\":\"Other\",\"value\":\"\",\"image\":\"\"}},\"description\":\"\",\"required\":\"1\",\"choices_images_style\":\"modern\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},{\"id\":\"3\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\",\"input_mask\":\"\"},{\"id\":\"4\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"}],\"settings\":{\"form_title\":\"Suggestion Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"antispam\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Suggestion Form\",\"sender_name\":\"{field_id=\\\"0\\\"}\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"Thanks for contacting us! We will be in touch with you shortly.\",\"message_scroll\":\"1\",\"page\":\"346\",\"redirect\":\"\"}}},\"meta\":{\"template\":\"suggestion\"}}','Suggestion Form','','publish','closed','closed','','suggestion-form','','','2020-09-19 14:30:12','2020-09-19 18:30:12','',0,'https://sofits.ca/?post_type=wpforms&#038;p=3559',0,'wpforms','',0),(3560,7,'2020-09-19 14:30:41','2020-09-19 18:30:41','{\"id\":\"3560\",\"field_id\":4,\"settings\":{\"form_title\":\"Blank Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"antispam\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Blank Form Entry\",\"sender_name\":\"S.O.F.I.T.S\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"Thanks for contacting us! We will be in touch with you shortly.\",\"message_scroll\":\"1\",\"page\":\"346\",\"redirect\":\"\"}}},\"meta\":{\"template\":\"blank\"}}','Blank Form','','publish','closed','closed','','blank-form','','','2020-09-19 14:31:41','2020-09-19 18:31:41','',0,'https://sofits.ca/?post_type=wpforms&#038;p=3560',0,'wpforms','',0),(3562,7,'2021-01-16 13:03:57','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','closed','','','','','2021-01-16 13:03:57','0000-00-00 00:00:00','',0,'httpss://sofits.ca/?p=3562',0,'post','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_reallysimpleevents`
--

DROP TABLE IF EXISTS `wp_reallysimpleevents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_reallysimpleevents` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `start_date` timestamp NOT NULL DEFAULT current_timestamp(),
  `show_time` int(1) DEFAULT NULL,
  `title` varchar(255) NOT NULL,
  `link` varchar(255) NOT NULL DEFAULT '',
  `extra_info` text DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_reallysimpleevents`
--

LOCK TABLES `wp_reallysimpleevents` WRITE;
/*!40000 ALTER TABLE `wp_reallysimpleevents` DISABLE KEYS */;
INSERT INTO `wp_reallysimpleevents` VALUES (1,'2013-09-27 17:00:00',1,'Training','','');
/*!40000 ALTER TABLE `wp_reallysimpleevents` 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 (1,2,0),(2,2,0),(3,2,0),(4,2,0),(5,2,0),(6,2,0),(7,2,0),(63,3,0),(65,3,0),(74,3,0),(94,3,0),(288,3,0),(322,3,0),(347,3,0),(363,3,0),(542,4,0),(549,11,0),(561,5,0),(615,1,0),(615,5,0),(615,13,0),(615,14,0),(632,3,0),(634,4,0),(634,7,0),(647,9,0),(647,15,0),(668,5,0),(668,12,0),(726,3,0),(743,1,0),(743,5,0),(743,17,0),(746,1,0),(799,1,0),(824,9,0),(824,15,0),(829,1,0),(832,1,0),(861,10,0),(861,18,0),(890,1,0),(890,10,0),(895,10,0),(895,17,0),(939,1,0),(939,10,0),(966,9,0),(966,18,0),(983,1,0),(992,10,0),(992,18,0),(994,1,0),(1011,1,0),(1018,1,0),(1050,1,0),(1059,3,0),(1060,1,0),(1070,1,0),(1094,9,0),(1094,18,0),(1097,1,0),(1102,18,0),(1143,9,0),(1143,18,0),(1146,1,0),(1158,18,0),(1178,1,0),(1178,10,0),(1178,16,0),(1178,18,0),(1180,10,0),(1180,16,0),(1180,18,0),(1208,10,0),(1208,18,0),(1210,1,0),(1210,10,0),(1210,18,0),(1220,9,0),(1220,10,0),(1222,9,0),(1229,7,0),(1236,9,0),(1238,1,0),(1248,4,0),(1248,7,0),(1296,9,0),(1296,10,0),(1339,1,0),(1339,4,0),(1339,9,0),(1339,18,0),(1468,1,0),(1516,1,0),(1665,9,0),(1665,22,0),(2020,3,0),(2354,10,0),(2354,18,0),(2448,3,0),(2679,3,0),(2694,3,0),(3129,3,0),(3191,3,0),(3196,3,0),(3206,3,0),(3263,3,0),(3318,3,0),(3355,3,0),(3476,3,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) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=latin1;
/*!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,23),(2,2,'link_category','',0,7),(3,3,'nav_menu','',0,23),(4,4,'category','',0,4),(5,5,'category','',0,4),(6,6,'category','',0,0),(7,7,'category','',0,3),(8,22,'post_tag','',0,0),(9,8,'category','',0,11),(10,9,'category','',0,12),(11,10,'category','',0,1),(12,11,'category','',0,1),(13,12,'post_tag','',0,1),(14,13,'post_tag','',0,1),(15,14,'post_tag','',0,2),(16,15,'category','',0,2),(17,16,'category','',0,2),(18,17,'category','',0,13),(19,18,'category','',0,0),(20,19,'category','',0,0),(21,23,'post_tag','',0,0),(22,20,'category','',0,1),(23,21,'category','',0,0),(24,24,'tribe_events_cat','',0,0),(25,25,'tribe_events_cat','',0,0),(26,26,'tribe_events_cat','',0,0),(27,27,'tribe_events_cat','',0,0),(28,28,'tribe_events_cat','',0,0),(29,29,'tribe_events_cat','',0,0),(30,30,'post_tag','',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 DEFAULT NULL,
  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) NOT NULL DEFAULT '',
  `slug` varchar(200) 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=31 DEFAULT CHARSET=latin1;
/*!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,'Blogroll','blogroll',0),(3,'Menu 1','menu-1',0),(4,'Dryland Training','dryland-training',0),(5,'Events','events',0),(6,'Races','races',0),(7,'photos','photos',0),(8,'news','news',0),(9,'Weekly Update','weekly-update',0),(10,'Comments','comments',0),(11,'Training Plans','training-plans',0),(12,'trips','trips',0),(13,'yurts','yurts',0),(14,'shirts','shirts',0),(15,'Technique','technique',0),(16,'Waxing','waxing',0),(17,'Ski Training','ski-training',0),(18,'Summer','summer',0),(19,'Cycling','cycling',0),(20,'equipment','equipment',0),(21,'Time Trial','time-trial',0),(22,'news','news',0),(23,'equipment','equipment',0),(24,'MEECH SWIMS','meech-swims',0),(25,'TRAIL RUNNING','trail-running',0),(26,'MOUNTAIN BIKING','mountain-biking',0),(27,'ROAD BIKING','road-biking',0),(28,'HIKING','hiking',0),(29,'FRIDAY TRAINING GROUP','friday-training-group',0),(30,'archives','archives',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) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=230 DEFAULT CHARSET=latin1;
/*!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 (118,7,'wp_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(119,118,'wp_user_level','10'),(127,7,'nickname','Jo-Ann'),(128,7,'first_name','Jo-Ann'),(129,7,'last_name','Holden'),(130,7,'description',''),(131,7,'rich_editing','true'),(132,7,'comment_shortcuts','false'),(133,7,'admin_color','fresh'),(134,7,'use_ssl','0'),(135,7,'show_admin_bar_front','true'),(136,7,'dismissed_wp_pointers','wp360_locks,wp390_widgets,wp410_dfw,wp496_privacy'),(138,7,'wp_dashboard_quick_press_last_post_id','3562'),(139,7,'default_password_nag',''),(140,7,'closedpostboxes_page','a:3:{i:0;s:13:\"pageparentdiv\";i:1;s:12:\"postimagediv\";i:2;s:23:\"inpost_gallery_meta_box\";}'),(141,7,'metaboxhidden_page','a:4:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(142,7,'wp_user-settings','libraryContent=browse&post_dfw=off&editor=tinymce&editor_expand=off&posts_list_mode=list&hidetb=1&ed_size=345&editor_plain_text_paste_warning=2'),(143,7,'wp_user-settings-time','1547867520'),(181,7,'manageedit-pagecolumnshidden','a:1:{i:0;s:8:\"comments\";}'),(182,7,'edit_page_per_page','20'),(183,7,'manageedit-commentscolumnshidden','a:1:{i:0;s:8:\"response\";}'),(184,7,'edit_comments_per_page','20'),(185,7,'manageedit-postcolumnshidden','a:1:{i:0;s:8:\"comments\";}'),(186,7,'edit_post_per_page','20'),(187,7,'meta-box-order_page','a:3:{s:4:\"side\";s:36:\"submitdiv,pageparentdiv,postimagediv\";s:6:\"normal\";s:94:\"revisionsdiv,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv,inpost_gallery_meta_box\";s:8:\"advanced\";s:0:\"\";}'),(188,7,'screen_layout_page','1'),(189,7,'community-events-location','a:1:{s:2:\"ip\";s:12:\"117.96.216.0\";}'),(216,7,'nav_menu_recently_edited','3'),(217,7,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(218,7,'metaboxhidden_nav-menus','a:7:{i:0;s:24:\"add-post-type-ecwd_event\";i:1;s:28:\"add-post-type-ecwd_organizer\";i:2;s:24:\"add-post-type-ecwd_venue\";i:3;s:27:\"add-post-type-ecwd_calendar\";i:4;s:12:\"add-post_tag\";i:5;s:23:\"add-ecwd_event_category\";i:6;s:18:\"add-ecwd_event_tag\";}'),(219,7,'session_tokens','a:2:{s:64:\"c2ea23cb74bc599f7ecac1270aa51b7318057eb64f7bfd3f36b3e8ce6eb16316\";a:4:{s:10:\"expiration\";i:1610983298;s:2:\"ip\";s:14:\"117.96.216.205\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0\";s:5:\"login\";i:1610810498;}s:64:\"a0ff57500c02d180f7d90a89605ec411a753d339d126155dcfce52ef8738297f\";a:4:{s:10:\"expiration\";i:1610993036;s:2:\"ip\";s:14:\"117.96.216.205\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0\";s:5:\"login\";i:1610820236;}}'),(220,7,'wp_classic-editor-settings','block'),(222,7,'syntax_highlighting','true'),(223,7,'locale',''),(224,7,'aim',''),(225,7,'yim',''),(226,7,'jabber',''),(227,7,'closedpostboxes_dashboard','a:1:{i:0;s:17:\"dashboard_php_nag\";}'),(228,7,'metaboxhidden_dashboard','a:0:{}'),(229,7,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:78:\"dashboard_site_health,dashboard_php_nag,dashboard_right_now,dashboard_activity\";s:4:\"side\";s:39:\"dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s: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) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!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 (7,'Jo-Ann','$P$B9RQ53WQpro2glPB0RogCZMzSDbFRm0','jo-ann','musicianonskis@gmail.com','https://www.musicianonskis.ca/blog','2015-06-25 01:57:49','',0,'Jo-Ann Holden');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wap_wa_form_builder`
--

DROP TABLE IF EXISTS `wp_wap_wa_form_builder`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wap_wa_form_builder` (
  `Id` bigint(255) unsigned NOT NULL AUTO_INCREMENT,
  `plugin` varchar(255) DEFAULT NULL,
  `publish` int(1) unsigned DEFAULT 0,
  `added` varchar(18) DEFAULT '0000-00-00 00:00',
  `last_update` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `title` text DEFAULT NULL,
  `description` text DEFAULT NULL,
  `mail_to` text DEFAULT NULL,
  `confirmation_mail_body` text DEFAULT NULL,
  `confirmation_mail_subject` text DEFAULT NULL,
  `from_address` text DEFAULT NULL,
  `from_name` text DEFAULT NULL,
  `on_screen_confirmation_message` text DEFAULT NULL,
  `confirmation_page` text DEFAULT NULL,
  `form_fields` text DEFAULT NULL,
  `visual_settings` text DEFAULT NULL,
  `google_analytics_conversion_code` text DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wap_wa_form_builder`
--

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

--
-- Table structure for table `wp_wap_wa_form_meta`
--

DROP TABLE IF EXISTS `wp_wap_wa_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wap_wa_form_meta` (
  `Id` bigint(255) unsigned NOT NULL AUTO_INCREMENT,
  `plugin` varchar(255) DEFAULT NULL,
  `publish` int(1) unsigned DEFAULT 0,
  `added` varchar(18) DEFAULT '0000-00-00 00:00',
  `last_update` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `wa_form_builder_Id` text DEFAULT NULL,
  `meta_key` text DEFAULT NULL,
  `meta_value` text DEFAULT NULL,
  `time_added` text DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wap_wa_form_meta`
--

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

--
-- Table structure for table `wp_wpforms_tasks_meta`
--

DROP TABLE IF EXISTS `wp_wpforms_tasks_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpforms_tasks_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `action` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `date` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpforms_tasks_meta`
--

LOCK TABLES `wp_wpforms_tasks_meta` WRITE;
/*!40000 ALTER TABLE `wp_wpforms_tasks_meta` DISABLE KEYS */;
INSERT INTO `wp_wpforms_tasks_meta` VALUES (1,'wpforms_process_entry_emails_meta_cleanup','Wzg2NDAwXQ==','2020-09-19 18:29:32'),(2,'wpforms_admin_notifications_update','W10=','2020-09-19 18:29:32');
/*!40000 ALTER TABLE `wp_wpforms_tasks_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop2_poll_answermeta`
--

DROP TABLE IF EXISTS `wp_yop2_poll_answermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop2_poll_answermeta` (
  `meta_id` int(11) NOT NULL AUTO_INCREMENT,
  `yop_poll_answer_id` int(11) NOT NULL,
  `meta_key` varchar(255) NOT NULL,
  `meta_value` longtext NOT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `yop_poll_answer_id` (`yop_poll_answer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1068 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop2_poll_answermeta`
--

LOCK TABLES `wp_yop2_poll_answermeta` WRITE;
/*!40000 ALTER TABLE `wp_yop2_poll_answermeta` DISABLE KEYS */;
INSERT INTO `wp_yop2_poll_answermeta` VALUES (1,1,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(2,2,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(3,3,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(4,4,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(5,5,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(6,6,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(7,7,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(8,8,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(9,9,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(10,10,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(11,11,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(12,12,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(13,13,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(14,14,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(15,15,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(16,16,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(17,17,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(18,18,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(19,19,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(20,20,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(21,21,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(22,22,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(23,23,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(24,24,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(25,25,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(26,26,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(27,27,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(28,28,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(29,29,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(30,30,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(31,31,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(32,32,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(33,33,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(34,34,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(35,35,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(36,36,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(37,37,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(38,38,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(39,39,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(40,40,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(41,41,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(42,42,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(43,43,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(44,44,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(45,45,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(46,46,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(47,47,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(48,48,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(49,49,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(50,50,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(51,51,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(52,52,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(53,53,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(54,54,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(55,55,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(56,56,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(57,57,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(58,58,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(59,59,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(60,60,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(61,61,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(62,62,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(63,63,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(64,64,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(65,65,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(66,66,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(67,67,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(68,68,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(69,69,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(70,70,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(71,71,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(72,72,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(73,73,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(74,74,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(75,75,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(76,76,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(77,77,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(78,78,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(79,79,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(80,80,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(81,81,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(82,82,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(83,83,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(84,84,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(85,85,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(86,86,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(87,87,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(88,88,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(89,89,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(90,90,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(91,91,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(92,92,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(93,93,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(94,94,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(95,95,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(96,96,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(97,97,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(98,98,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(99,99,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(100,100,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(101,101,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(102,102,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(103,103,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(104,104,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(105,105,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(106,106,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(107,107,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(108,108,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(109,109,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(110,110,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(111,111,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(112,112,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(113,113,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(114,114,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(115,115,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(116,116,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(117,117,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(118,118,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(119,119,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(120,120,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(121,121,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(122,122,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(123,123,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(124,124,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(125,125,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(126,126,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(127,127,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(128,128,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(129,129,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(130,130,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(131,131,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(132,132,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(133,133,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(134,134,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(135,135,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(136,136,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(137,137,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(138,138,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(139,139,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(140,140,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(141,141,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(142,142,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(143,143,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(144,144,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(145,145,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(146,146,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(147,147,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(148,148,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(149,149,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(150,150,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(151,151,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(152,152,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(153,153,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(154,154,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(155,155,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(156,156,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(157,157,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(158,158,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(159,159,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(160,160,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(161,161,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(162,162,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(163,163,'options','a:93:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"2015-04-14 14:36:31\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:1:{i:0;s:5:\"after\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";a:2:{i:0;s:3:\"yes\";i:1;N;}s:23:\"view_results_link_label\";s:12:\"View Results\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:12:\"Back To Vote\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:2:\"no\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";b:0;s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"23\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:10:\"as_defined\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"vote\";s:39:\"plural_answer_result_votes_number_label\";s:5:\"votes\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:0:\"\";s:27:\"email_notifications_subject\";s:8:\"New Vote\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";}'),(925,925,'options','a:95:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";}'),(926,926,'options','a:95:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";}'),(928,928,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(929,929,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(931,931,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(933,933,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(934,934,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(936,936,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(937,937,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(939,939,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(940,940,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}');
INSERT INTO `wp_yop2_poll_answermeta` VALUES (941,941,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(942,942,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(943,943,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(944,944,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(945,945,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(947,947,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(948,948,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(950,950,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(951,951,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(954,954,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(955,955,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(960,960,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(962,962,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1003,1003,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1004,1004,'options','a:95:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";}'),(1005,1005,'options','a:95:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";}'),(1006,1006,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1007,1007,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1008,1008,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1009,1009,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1010,1010,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1011,1011,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1012,1012,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1013,1013,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1014,1014,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1015,1015,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1016,1016,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1017,1017,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1018,1018,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1019,1019,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1020,1020,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1021,1021,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1022,1022,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1023,1023,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1024,1024,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1025,1025,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1026,1026,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1027,1027,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1028,1028,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1029,1029,'options','a:95:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";}'),(1030,1030,'options','a:95:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";}'),(1031,1031,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1032,1032,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1033,1033,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1034,1034,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1035,1035,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1036,1036,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1037,1037,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1038,1038,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1039,1039,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1040,1040,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1041,1041,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1042,1042,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1043,1043,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1044,1044,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1045,1045,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1046,1046,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1047,1047,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1048,1048,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1049,1049,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1050,1050,'options','a:95:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";}'),(1051,1051,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1052,1052,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1053,1053,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1054,1054,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1055,1055,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1056,1056,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1057,1057,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1058,1058,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1059,1059,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1060,1060,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1061,1061,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1062,1062,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1063,1063,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1064,1064,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1065,1065,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1066,1066,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}'),(1067,1067,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:6:\"status\";s:6:\"active\";}');
/*!40000 ALTER TABLE `wp_yop2_poll_answermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop2_poll_answers`
--

DROP TABLE IF EXISTS `wp_yop2_poll_answers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop2_poll_answers` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `poll_id` int(11) NOT NULL,
  `question_id` int(11) NOT NULL,
  `answer` text NOT NULL,
  `description` varchar(255) DEFAULT '',
  `type` varchar(255) NOT NULL DEFAULT 'default',
  `answer_author` bigint(20) NOT NULL DEFAULT 0,
  `answer_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `answer_status` varchar(20) NOT NULL,
  `answer_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `question_order` int(11) NOT NULL DEFAULT 0,
  `votes` int(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `poll_id` (`poll_id`),
  KEY `question_id` (`question_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1068 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop2_poll_answers`
--

LOCK TABLES `wp_yop2_poll_answers` WRITE;
/*!40000 ALTER TABLE `wp_yop2_poll_answers` DISABLE KEYS */;
INSERT INTO `wp_yop2_poll_answers` VALUES (1,0,0,'Jo-Ann H. ','','other',1,'2014-10-26 14:43:19','active','2014-10-26 14:45:38',1,1),(2,0,0,'Ila','','other',1,'2014-10-26 14:43:19','active','2014-10-26 14:45:38',2,1),(3,0,0,'Annemarieke','','other',1,'2014-10-26 14:43:19','active','2014-10-26 14:45:38',3,1),(4,0,0,'Penny','','other',1,'2014-10-26 14:43:19','active','2014-10-26 14:45:38',4,1),(5,0,0,'Cary','','other',1,'2014-10-26 14:43:19','active','2014-10-26 14:45:38',5,1),(6,0,0,'Mary Lou','','other',1,'2014-10-26 14:43:19','active','2014-10-26 14:45:38',6,1),(7,0,0,'Susan O','','other',1,'2014-10-26 14:43:19','active','2014-10-26 14:45:38',7,1),(8,0,0,'Jo-Ann H.','','other',1,'2014-10-26 14:46:15','active','2014-10-26 14:47:44',1,1),(9,0,0,'Ila','','other',1,'2014-10-26 14:46:15','active','2014-10-26 14:47:44',2,1),(10,0,0,'Annemarieke','','other',1,'2014-10-26 14:46:15','active','2014-10-26 14:47:44',3,1),(11,0,0,'Anne','','other',1,'2014-10-26 14:46:15','active','2014-10-26 14:47:44',4,1),(12,0,0,'Penny','','other',1,'2014-10-26 14:46:15','active','2014-10-26 14:47:44',5,1),(13,0,0,'Ingrid T.','','other',1,'2014-10-26 14:46:15','active','2014-10-26 14:47:44',6,1),(14,0,0,'Mary Lou','','other',1,'2014-10-26 14:46:15','active','2014-10-26 14:47:44',7,1),(15,0,0,'Ingrid Taylor','','other',1,'2014-10-26 14:46:15','active','2014-10-26 14:47:44',8,1),(16,0,0,'Maggie K.','','other',1,'2014-10-26 14:46:15','active','2014-10-26 14:47:44',9,1),(17,0,0,'Susan o','','other',1,'2014-10-26 14:46:15','active','2014-10-26 14:47:44',10,1),(18,0,0,'Joanne Beveridge','','other',1,'2014-10-26 14:46:15','active','2014-10-26 14:47:44',11,1),(19,0,0,'Yvonne','','other',1,'2014-10-26 14:46:15','active','2014-10-26 14:47:44',12,1),(20,0,0,'Hi Bonnie, I am interested but I have been holding back because there is a chance I will be travelling then. Can you put my name on a wait/ possible list? If in town and there is no room, I will definitely join you for the epic ski. Barbara','','other',1,'2014-10-26 14:46:15','active','2014-10-26 14:47:44',13,1),(21,0,0,'Yvonne, 51km, Monday','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',1,1),(22,0,0,'Jo-Ann, 16 K, either Monday or Tuesday am.','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',2,1),(23,0,0,'Rosy - CSM (really far) Tuesday am','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',3,1),(24,0,0,'Susan not sure distance either day','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',4,1),(25,0,0,'Mary Lou 16 Km Tuesday','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',5,1),(26,0,0,'Barbara, 16K, Monday','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',6,1),(27,0,0,'annemarieke','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',7,1),(28,0,0,'Meryl 16 or 20 km either day','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',8,1),(29,0,0,'Linda Lafrance Mon am','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',9,1),(30,0,0,'Linda Lafrance Mon am','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',10,1),(31,0,0,'Linda Lafrance Mon am','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',11,1),(32,0,0,'Linda Lafrance 55 km Monday','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',12,1),(33,0,0,'Linda Lafrance 55 km Monday','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',13,1),(34,0,0,'Linda Lafrance 55 km Monday','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',14,1),(35,0,0,'pat','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',15,1),(36,0,0,'anne 16','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',16,1),(37,0,0,'Jennifer Wilson - not sure about the distance but definitely want to train for long outings - at the very least.','','other',1,'2014-11-09 22:20:40','active','2014-11-09 22:33:01',17,1),(38,0,0,'Jo-Ann','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',1,1),(39,0,0,'Julie McInnes','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',2,1),(40,0,0,'Julie McInnes','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',3,1),(41,0,0,'Maggie','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',4,1),(42,0,0,'Penny','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',5,1),(43,0,0,'Janice Moe','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',6,1),(44,0,0,'Marie-France Jetté','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',7,1),(45,0,0,'Ila','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',8,1),(46,0,0,'Bonnie','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',9,1),(47,0,0,'Meryl','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',10,1),(48,0,0,'S Riley','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',11,1),(49,0,0,'Elaine-wild guess 40 min?','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',12,1),(50,0,0,'Rosy - 30 min','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',13,1),(51,0,0,'Annemarieke','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',14,1),(52,0,0,'Shelley','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',15,1),(53,0,0,'Anne V','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',16,1),(54,0,0,'Barbara','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',17,1),(55,0,0,'Sandra','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',18,1),(56,0,0,'Carol','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',19,1),(57,0,0,'Joanne Beveridge','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',20,1),(58,0,0,'Liz Stanich','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',21,1),(59,0,0,'remove Marie-France Jetté','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',22,1),(60,0,0,'Mary Lpu','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',23,1),(61,0,0,'Liz Ruddick','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',24,1),(62,0,0,'Cary','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',25,1),(63,0,0,'pat','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',26,1),(64,0,0,'Susan O','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',27,1),(65,0,0,'Margaret McLaren 46mins','','other',1,'2015-01-12 22:14:07','active','2015-01-12 22:17:38',28,1),(66,0,0,'SHARON','','other',1,'2015-01-12 22:18:02','active','2015-01-12 22:19:58',1,1),(67,0,0,'Yvonne','','other',1,'2015-01-12 22:18:02','active','2015-01-12 22:19:58',2,1),(68,0,0,'Jennifer Wilson','','other',1,'2015-01-20 08:37:24','active','2015-01-20 08:42:58',1,1),(69,0,0,'Shelley','','other',1,'2015-01-20 08:37:24','active','2015-01-20 08:42:58',2,1),(70,0,0,'anne','','other',1,'2015-01-20 08:37:24','active','2015-01-20 08:42:58',3,1),(71,0,0,'Janey','','other',1,'2015-01-20 08:37:24','active','2015-01-20 08:42:58',4,1),(72,0,0,'Liz R','','other',1,'2015-01-20 08:37:24','active','2015-01-20 08:42:58',5,1),(73,0,0,'Bonnie ','','other',1,'2015-01-20 08:37:24','active','2015-01-20 08:42:58',6,1),(74,0,0,'Fay','','other',1,'2015-01-20 08:37:24','active','2015-01-20 08:42:58',7,1),(75,0,0,'Ila','','other',1,'2015-01-20 08:37:24','active','2015-01-20 08:42:58',8,1),(76,0,0,'Carol','','other',1,'2015-01-20 08:37:24','active','2015-01-20 08:42:58',9,1),(77,0,0,'Penny','','other',1,'2015-01-20 08:37:24','active','2015-01-20 08:42:58',10,1),(78,0,0,'Susan o','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',1,1),(79,0,0,'Pauline','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',2,1),(80,0,0,'S Riley','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',3,1),(81,0,0,'Sandra ','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',4,1),(82,0,0,'sharon','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',5,1),(83,0,0,'Annemarieke','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',6,1),(84,0,0,'maggie','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',7,1),(85,0,0,'Margaret McLaren','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',8,1),(86,0,0,'Bonnie','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',9,1),(87,0,0,'Cary','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',10,1),(88,0,0,'Julie McInnes','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',11,1),(89,0,0,'Yvonne','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',12,1),(90,0,0,'Joanne B','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',13,1),(91,0,0,'pat','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',14,1),(92,0,0,'Carol will be there not away','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',15,1),(93,0,0,'Marie-France=green ','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',16,1),(94,0,0,'Liz Stanich','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',17,1),(95,0,0,'kathy','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',18,1),(96,0,0,'Sue F','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',19,1),(97,0,0,'Meryl','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',20,1),(98,0,0,'Elaine','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',21,1),(99,0,0,'Rosy','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',22,1),(100,0,0,'Janice Moe','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',23,1),(101,0,0,'Jo-Ann','','other',1,'2015-01-20 08:39:40','active','2015-01-20 08:41:53',24,1),(102,0,0,'Cary','','other',1,'2015-01-25 19:46:36','active','2015-01-25 20:12:19',1,1),(103,0,0,'Margaret McLaren','','other',1,'2015-01-25 19:46:36','active','2015-01-25 20:12:19',2,1),(104,0,0,'Marie-france=green ','','other',1,'2015-01-25 19:46:36','active','2015-01-25 20:12:19',3,1),(105,0,0,'Liz Ruddick','','other',1,'2015-01-25 19:46:36','active','2015-01-25 20:12:19',4,1),(106,0,0,'Lou','','other',1,'2015-01-25 19:46:36','active','2015-01-25 20:12:19',5,1),(107,0,0,'Anne','','other',1,'2015-01-25 19:46:36','active','2015-01-25 20:12:19',6,1),(108,0,0,'Liz Stanich','','other',1,'2015-01-25 19:46:36','active','2015-01-25 20:12:19',7,1),(109,0,0,'Shelley douglas','','other',1,'2015-01-25 19:46:36','active','2015-01-25 20:12:19',8,1),(110,0,0,'Susan R.','','other',1,'2015-01-25 19:46:36','active','2015-01-25 20:12:19',9,1),(111,0,0,'Annemarieke','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',1,1),(112,0,0,'Rosy','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',2,1),(113,0,0,'barbara - joining blue this time - would like to get in some distance pre-loppet','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',3,1),(114,0,0,'Julie McInnes','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',4,1),(115,0,0,'Ila','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',5,1),(116,0,0,'Janice Moe','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',6,1),(117,0,0,'Yvonne','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',7,1),(118,0,0,'Bonnie','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',8,1),(119,0,0,'Anne','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',9,1),(120,0,0,'Carol','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',10,1),(121,0,0,'Penny','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',11,1),(122,0,0,'Maggie','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',12,1),(123,0,0,'Jennifer Wilson (joining the Purple group for a ski)','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',13,1),(124,0,0,'Susan o','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',14,1),(125,0,0,'sharon','','other',1,'2015-01-25 19:48:38','active','2015-01-25 20:11:40',15,1),(126,0,0,'Elaine','','other',1,'2015-01-25 19:50:18','active','2015-01-25 19:52:20',1,1),(127,0,0,'Sandra','','other',1,'2015-01-25 19:50:18','active','2015-01-25 19:52:20',2,1),(128,0,0,'Rosy - probably away','','other',1,'2015-01-25 19:50:18','active','2015-01-25 19:52:20',3,1),(129,0,0,'Meryl','','other',1,'2015-01-25 19:50:18','active','2015-01-25 19:52:20',4,1),(130,0,0,'pat','','other',1,'2015-01-25 19:50:18','active','2015-01-25 19:52:20',5,1),(131,0,0,'Janey','','other',1,'2015-01-25 19:50:18','active','2015-01-25 19:52:20',6,1),(132,0,0,'Jo-Ann','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',1,1),(133,0,0,'Cary','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',2,1),(134,0,0,'Jennifer Wilson (joining the Purple group for a ski)','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',3,1),(135,0,0,'Lou','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',4,1),(136,0,0,'Linda Lafrance','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',5,1),(137,0,0,'Margaret McLaren','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',6,1),(138,0,0,'Susan o','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',7,1),(139,0,0,'Penny','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',8,1),(140,0,0,'Marie-France =skate','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',9,1),(141,0,0,'Ila','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',10,1),(142,0,0,'Janice skate','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',11,1),(143,0,0,'carol','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',12,1),(144,0,0,'Meryl','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',13,1),(145,0,0,'Janey  -  skating','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',14,1),(146,0,0,'Barbara - classic and not sure what time ','','other',1,'2015-03-02 20:02:01','active','2015-03-02 20:08:27',15,1),(147,0,0,'Jo-Ann','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',1,1),(148,0,0,'Janey','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',2,1),(149,0,0,'Penny','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',3,1),(150,0,0,'Kathy','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',4,1),(151,0,0,'Margaret McLaren','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',5,1),(152,0,0,'Ila','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',6,1),(153,0,0,'Meryl','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',7,1),(154,0,0,'pat','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',8,1),(155,0,0,'Lou','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',9,1),(156,0,0,'Jennifer Wilson','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',10,1),(157,0,0,'Janice Moe','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',11,1),(158,0,0,'Carol','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',12,1),(159,0,0,'annemarieke','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',13,1),(160,0,0,'Marie-France but unsure','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',14,1),(161,0,0,'Julie M','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',15,1),(162,0,0,'Pauline','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',16,1),(163,0,0,'Cary','','other',1,'2015-03-02 20:08:42','active','2015-03-11 08:35:51',17,1),(925,60,60,'If YES, then write your NAME and hit SEND','','text',7,'2016-02-09 16:16:52','active','2016-02-09 16:23:16',1,0),(926,61,61,'If YES, write NAME and hit SEND','','text',7,'2016-02-09 16:20:40','active','2016-02-09 16:29:09',1,0),(928,60,60,'Jo-Ann H  - interested in new guidelines for protein requirements for older adults, and how we know we are getting the right amount at the right time.','','other',7,'2016-02-09 16:27:38','active','2016-02-09 16:27:38',2,1),(929,61,61,'Jo-Ann H.  interested in new guidelines for protein requirements for older adults, and how we know we are getting the right amount at the right time','','other',7,'2016-02-09 16:27:50','active','2016-02-09 16:27:50',2,1),(931,61,61,'Marie-France After the snow melts and on a Friday is great for me. Needs: what to eat at what time before a Sofits training at noon','','other',0,'2016-02-09 16:46:50','active','2016-02-09 16:46:51',3,1),(933,60,60,'Anne','','other',0,'2016-02-09 17:53:31','active','2016-02-09 17:53:31',3,1),(934,60,60,'Lou - Special Olympic ski cancelled due to the cold.  So I will be available after all.','','other',0,'2016-02-09 18:58:27','active','2016-02-09 18:58:28',4,1),(936,60,60,'Carol - either option is good,with me!','','other',0,'2016-02-09 19:38:30','active','2016-02-09 19:38:30',5,1),(937,61,61,'Carol','','other',0,'2016-02-09 19:38:51','active','2016-02-09 19:38:51',4,1),(939,61,61,'Susan Riley _Friday after the snow melts works for me!','','other',0,'2016-02-09 20:07:44','active','2016-02-09 20:07:45',5,1),(940,61,61,'Pat will be back after Feb 16th.  Hope there is still snow for awhile though','','other',0,'2016-02-09 21:33:57','active','2016-02-09 21:33:57',6,1),(941,61,61,'Meryl - I\\\'m available on a Friday after snow melts.','','other',0,'2016-02-09 21:50:22','active','2016-02-09 21:50:22',7,1),(942,60,60,'Meryl - I\\\'m available this Saturday, but a Friday would be fine too.','','other',0,'2016-02-09 21:51:36','active','2016-02-09 21:51:37',6,1),(943,61,61,'Darlene - Fridays after the snow melts works best for me','','other',0,'2016-02-09 22:04:11','active','2016-02-09 22:04:11',8,1),(944,60,60,'Penny, also available Friday-need to learn about fueling for multi day events','','other',0,'2016-02-09 23:30:39','active','2016-02-09 23:30:40',7,1),(945,61,61,'Penny','','other',0,'2016-02-09 23:31:05','active','2016-02-09 23:31:05',9,1),(947,60,60,'Janice Moe','','other',0,'2016-02-10 07:45:51','active','2016-02-10 07:45:51',8,1),(948,61,61,'Janice','','other',0,'2016-02-10 07:47:20','active','2016-02-10 07:47:21',10,1),(950,61,61,'Susan o that would be perfect','','other',0,'2016-02-10 07:49:09','active','2016-02-10 07:49:09',11,1),(951,61,61,'Liz S','','other',0,'2016-02-10 08:42:47','active','2016-02-10 08:42:47',12,1),(954,61,61,'Rosy','','other',0,'2016-02-10 08:46:12','active','2016-02-10 08:46:13',13,1),(955,60,60,'Rosy - I hope to be there. Timing of fueling during long endurance efforts.','','other',0,'2016-02-10 08:47:36','active','2016-02-10 08:47:36',9,1),(960,61,61,'Margaret McLaren','','other',0,'2016-02-10 18:01:22','active','2016-02-10 18:01:22',14,1),(962,61,61,'sandra','','other',0,'2016-02-11 08:25:16','active','2016-02-11 08:25:16',15,1),(1003,61,61,'Lou','','other',0,'2016-02-19 15:13:42','active','2016-02-19 15:13:42',16,1),(1004,64,64,'Write your NAME and HIT SEND','','text',7,'2016-02-24 08:59:47','active','2016-02-24 08:59:47',1,0),(1005,65,65,'Write your NAME and a few words, HIT SEND','','text',7,'2016-02-24 09:01:14','active','2016-02-24 09:01:14',1,0),(1006,64,64,'Jo-Ann H.','','other',7,'2016-02-24 09:04:02','active','2016-02-24 09:04:06',2,1),(1007,65,65,'Ila','','other',0,'2016-02-24 11:39:14','active','2016-02-24 11:39:15',2,1),(1008,64,64,'Maggie - very easy outing to test conditions','','other',0,'2016-02-24 12:14:28','active','2016-02-24 12:14:28',3,1),(1009,64,64,'Julie - easy outing as will be skiing that evening','','other',0,'2016-02-24 13:46:48','active','2016-02-24 13:46:50',4,1),(1010,65,65,'Margaret McLaren','','other',0,'2016-02-24 15:59:07','active','2016-02-24 15:59:08',3,1),(1011,64,64,'Cyndy - depending on conditions - but I love the idea of a relaxed ski!','','other',0,'2016-02-24 16:28:08','active','2016-02-24 16:28:09',5,1),(1012,64,64,'Janice','','other',0,'2016-02-24 17:41:50','active','2016-02-24 17:41:50',6,1),(1013,64,64,'Meryl','','other',0,'2016-02-24 18:02:35','active','2016-02-24 18:02:35',7,1),(1014,64,64,'Jennifer','','other',0,'2016-02-24 21:12:45','active','2016-02-24 21:12:45',8,1),(1015,64,64,'Marie-France: must leave at 13h30 to volunteer at Gatineau Loppett. I will attend if location not too far. Relais (P2) parking at stadium will likely be closed like Wed.','','other',0,'2016-02-25 09:20:50','active','2016-02-25 09:20:51',9,1),(1016,64,64,'Liz R - will depend on conditions','','other',0,'2016-02-25 16:19:13','active','2016-02-25 16:19:13',10,1),(1017,65,65,'Pat','','other',0,'2016-02-25 16:37:38','active','2016-02-25 16:37:38',4,1),(1018,64,64,'Linda easy from 11:00 to 1 - want help with waxing','','other',0,'2016-02-25 19:13:05','active','2016-02-25 19:13:07',11,1),(1019,65,65,'Penny','','other',0,'2016-02-25 22:04:19','active','2016-02-25 22:04:21',5,1),(1020,65,65,'Susan ny meeting at work :(','','other',0,'2016-02-25 22:45:33','active','2016-02-25 22:45:34',6,1),(1021,64,64,'Annemarieke (easy and short)','','other',0,'2016-02-26 07:12:47','active','2016-02-26 07:12:47',12,1),(1022,64,64,'Anne','','other',0,'2016-02-26 07:53:08','active','2016-02-26 07:53:08',13,1),(1023,65,65,'sandra','','other',0,'2016-02-26 08:03:32','active','2016-02-26 08:03:32',7,1),(1024,64,64,'Carol','','other',0,'2016-02-26 08:06:05','active','2016-02-26 08:06:05',14,1),(1025,65,65,'Susan o','','other',0,'2016-02-26 08:55:54','active','2016-02-26 08:55:54',8,1),(1026,64,64,'Rosy - easy and short','','other',0,'2016-02-26 09:39:04','active','2016-02-26 09:39:05',15,1),(1027,65,65,'lyse will be testing snow conditions at P2','','other',0,'2016-02-26 11:23:48','active','2016-02-26 11:23:49',9,1),(1028,65,65,'Ellie leaving for Mexico today and away next week','','other',0,'2016-02-26 12:05:20','active','2016-02-26 12:05:20',10,1),(1029,66,66,'Type your name and HIT SEND','','text',7,'2016-03-02 10:27:54','active','2016-03-02 10:27:54',1,0),(1030,67,67,'Type your NAME and HIT SEND','','text',7,'2016-03-02 10:29:42','active','2016-03-02 10:33:25',1,0),(1031,66,66,'Meryl','','other',0,'2016-03-02 15:22:32','active','2016-03-02 15:22:32',2,1),(1032,67,67,'Julie','','other',0,'2016-03-02 16:04:30','active','2016-03-02 16:04:31',2,1),(1033,67,67,'Jennifer','','other',0,'2016-03-02 16:14:01','active','2016-03-02 16:14:01',3,1),(1034,67,67,'Lyse','','other',0,'2016-03-02 16:17:05','active','2016-03-02 16:17:06',4,1),(1035,66,66,'Liz R','','other',0,'2016-03-02 17:34:37','active','2016-03-02 17:34:38',3,1),(1036,66,66,'Darlene','','other',0,'2016-03-02 20:18:06','active','2016-03-02 20:18:06',4,1),(1037,66,66,'Ila','','other',0,'2016-03-02 21:48:32','active','2016-03-02 21:48:32',5,1),(1038,66,66,'Maggie - will be skiing leaving from P7 but plan to start earlier may see you on the trail somewhere','','other',0,'2016-03-03 17:19:08','active','2016-03-03 17:19:09',6,1),(1039,66,66,'Susan ny hoping to make but will be coming from work.','','other',0,'2016-03-03 17:29:08','active','2016-03-03 17:29:08',7,1),(1040,66,66,'Carol - might also start  little earlier because have to be back in Ottawa before 3','','other',0,'2016-03-03 18:52:51','active','2016-03-03 18:52:51',8,1),(1041,67,67,'pat','','other',0,'2016-03-03 19:35:15','active','2016-03-03 19:35:15',5,1),(1042,66,66,'Cary','','other',0,'2016-03-03 21:07:36','active','2016-03-03 21:07:37',9,1),(1043,66,66,'Pauline','','other',0,'2016-03-03 22:03:59','active','2016-03-03 22:04:00',10,1),(1044,66,66,'Susan o','','other',0,'2016-03-04 08:11:56','active','2016-03-04 08:11:57',11,1),(1045,67,67,'Janice','','other',0,'2016-03-04 08:31:12','active','2016-03-04 08:31:13',6,1),(1046,66,66,'Gail','','other',0,'2016-03-04 09:10:08','active','2016-03-04 09:10:08',12,1),(1047,67,67,'linda','','other',0,'2016-03-04 09:15:21','active','2016-03-04 09:15:21',7,1),(1048,66,66,'Annemarieke','','other',0,'2016-03-04 10:42:25','active','2016-03-04 10:42:25',13,1),(1049,67,67,'Annemarieke ( above is wrong, going to skate ski)','','other',0,'2016-03-04 10:43:09','active','2016-03-04 10:43:10',8,1),(1050,68,68,'Write your NAME, and a few words, HIT SEND','','text',7,'2016-03-08 15:12:39','active','2016-03-08 15:12:39',1,0),(1051,68,68,'Jo-Ann, classic klister, Wakefield Triangle','','other',7,'2016-03-08 15:14:22','active','2016-03-08 15:14:22',2,1),(1052,68,68,'Jennifer - probably skate but trying to decide if I can handle klister...undecided...','','other',0,'2016-03-08 15:18:33','active','2016-03-08 15:18:34',3,1),(1053,68,68,'Marie-France= absent unexpected Italian language course sorry','','other',0,'2016-03-08 15:35:33','active','2016-03-08 15:35:34',4,1),(1054,68,68,'Susan I - classic and Wakefield triangle','','other',0,'2016-03-08 17:24:18','active','2016-03-08 17:24:18',5,1),(1055,68,68,'Ila - classic, probably waxless, destination tbd.','','other',0,'2016-03-09 15:41:54','active','2016-03-09 15:41:54',6,1),(1056,68,68,'Meryl - classic','','other',0,'2016-03-10 08:46:47','active','2016-03-10 08:46:48',7,1),(1057,68,68,'Liz R - classic wax less','','other',0,'2016-03-10 08:54:55','active','2016-03-10 08:54:55',8,1),(1058,68,68,'Ellie - classic probably waxless','','other',0,'2016-03-10 12:30:58','active','2016-03-10 12:30:58',9,1),(1059,68,68,'Carol - classic: going to try to make it but will confirm fri morning if can make P19 starting point on time.','','other',0,'2016-03-10 14:47:04','active','2016-03-10 14:47:05',10,1),(1060,68,68,'Janice classic klister','','other',0,'2016-03-10 18:06:41','active','2016-03-10 18:06:41',11,1),(1061,68,68,'Darlene - will decide between waxless and skate skis once I see the conditions tomorrow','','other',0,'2016-03-10 18:38:35','active','2016-03-10 18:38:35',12,1),(1062,68,68,'Julie - classic - will need someone\\\'s klister - hoping to be there on time but waiting for repair guy in the a.m.','','other',0,'2016-03-10 21:44:39','active','2016-03-10 21:44:41',13,1),(1063,68,68,'Pauline - I think I will try skate skiing, heading out on 50','','other',0,'2016-03-10 22:01:01','active','2016-03-10 22:01:03',14,1),(1064,68,68,'Cary - classic to Renaud.','','other',0,'2016-03-10 22:03:10','active','2016-03-10 22:03:12',15,1),(1065,68,68,'Carol classic','','other',0,'2016-03-11 08:59:09','active','2016-03-11 08:59:09',16,1),(1066,68,68,'Lyse classic','','other',0,'2016-03-11 09:00:39','active','2016-03-11 09:00:39',17,1),(1067,61,61,'Cyndy','','other',0,'2016-03-15 16:37:46','active','2016-03-15 16:37:47',17,1);
/*!40000 ALTER TABLE `wp_yop2_poll_answers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop2_poll_bans`
--

DROP TABLE IF EXISTS `wp_yop2_poll_bans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop2_poll_bans` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `poll_id` int(11) NOT NULL,
  `type` varchar(255) NOT NULL,
  `value` varchar(255) NOT NULL,
  `period` int(11) NOT NULL,
  `unit` enum('hours','days','weeks','months') DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `poll_id` (`poll_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop2_poll_bans`
--

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

--
-- Table structure for table `wp_yop2_poll_custom_fields`
--

DROP TABLE IF EXISTS `wp_yop2_poll_custom_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop2_poll_custom_fields` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `poll_id` int(11) NOT NULL,
  `question_id` int(11) NOT NULL,
  `custom_field` varchar(255) NOT NULL,
  `required` enum('yes','no') NOT NULL DEFAULT 'no',
  `status` varchar(255) NOT NULL,
  PRIMARY KEY (`ID`),
  KEY `poll_id` (`poll_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop2_poll_custom_fields`
--

LOCK TABLES `wp_yop2_poll_custom_fields` WRITE;
/*!40000 ALTER TABLE `wp_yop2_poll_custom_fields` DISABLE KEYS */;
INSERT INTO `wp_yop2_poll_custom_fields` VALUES (1,3,3,'Name','yes','active');
/*!40000 ALTER TABLE `wp_yop2_poll_custom_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop2_poll_logs`
--

DROP TABLE IF EXISTS `wp_yop2_poll_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop2_poll_logs` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `poll_id` int(11) NOT NULL,
  `vote_id` varchar(255) NOT NULL,
  `ip` varchar(100) NOT NULL,
  `user_id` varchar(25) DEFAULT NULL,
  `user_type` enum('facebook','wordpress','anonymous','google','default') NOT NULL DEFAULT 'default',
  `tr_id` varchar(255) DEFAULT NULL,
  `vote_details` longtext DEFAULT NULL,
  `user_details` longtext DEFAULT NULL,
  `vote_date` datetime NOT NULL,
  `message` text DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `poll_id` (`poll_id`)
) ENGINE=InnoDB AUTO_INCREMENT=984 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop2_poll_logs`
--

LOCK TABLES `wp_yop2_poll_logs` WRITE;
/*!40000 ALTER TABLE `wp_yop2_poll_logs` DISABLE KEYS */;
INSERT INTO `wp_yop2_poll_logs` VALUES (1,0,'vote_id_544d4ea742100','173.206.160.237','1','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 15:42:31','Succes'),(2,0,'vote_id_544d7b111f4c1','69.157.113.151','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 18:52:01','Succes'),(3,0,'vote_id_544d7e540dc95','99.240.147.167','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 19:05:56','Succes'),(4,0,'vote_id_544e2a7f67d52','184.148.18.7','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-27 07:20:31','Succes'),(5,0,'vote_id_54513dd082e9f','99.240.231.193','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-29 15:19:44','Succes'),(6,0,'vote_id_5451403c5cfba','99.246.66.128','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-29 15:30:04','Succes'),(7,0,'vote_id_5454eee941bb0','99.241.1.132','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-01 10:32:09','Succes'),(8,0,'vote_id_544d4eae67061','173.206.160.237','1','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 15:42:38','Succes'),(9,0,'vote_id_544d7b16ee7ee','69.157.113.151','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 18:52:06','Succes'),(10,0,'vote_id_544d7e5f35f1e','99.240.147.167','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 19:06:07','Succes'),(11,0,'vote_id_544da0abb97b6','184.175.5.48','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 21:32:27','Succes'),(12,0,'vote_id_544e2a8a17e6a','184.148.18.7','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-27 07:20:42','Succes'),(13,0,'vote_id_5451339306bfa','173.206.129.45','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-29 14:36:03','Succes'),(14,0,'vote_id_5451406525471','99.246.66.128','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-29 15:30:45','Succes'),(15,0,'vote_id_545425dceb820','99.240.227.203','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-31 20:14:21','Succes'),(16,0,'vote_id_5454369c60d6f','99.240.146.197','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-31 21:25:48','Succes'),(17,0,'vote_id_5454eeff519be','99.241.1.132','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-01 10:32:31','Succes'),(18,0,'vote_id_5455430d129be','99.240.150.246','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-01 16:31:09','Succes'),(19,0,'vote_id_54562d692b6e7','184.144.138.68','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-02 08:11:05','Succes'),(20,0,'vote_id_545ac45413a3d','99.246.66.46','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-05 19:44:04','Succes'),(21,0,'vote_id_5460be7ad8088','184.144.138.68','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-10 08:32:48','Succes'),(22,0,'vote_id_546032d0f0006','173.206.144.232','1','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-09 22:36:48','Succes'),(23,0,'vote_id_546130bb2c1cf','174.92.91.160','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-10 16:40:11','Succes'),(24,0,'vote_id_54627437c2169','99.241.1.132','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-11 15:40:23','Succes'),(25,0,'vote_id_5462de9a6b4ef','99.246.66.128','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-11 23:14:18','Succes'),(26,0,'vote_id_5463757c01844','99.246.66.46','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 09:58:04','Succes'),(27,0,'vote_id_5463d10f07a30','99.240.147.167','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 16:28:47','Succes'),(28,0,'vote_id_5463d3278fb64','64.229.223.94','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 16:37:43','Succes'),(29,0,'vote_id_54642096c662f','184.151.246.127','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:08:27','Succes'),(30,0,'vote_id_546420a821213','184.151.246.127','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:08:44','Succes'),(31,0,'vote_id_546420b1e9c32','184.151.246.127','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:08:46','Succes'),(32,0,'vote_id_546420d7d36ad','184.151.246.127','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:09:26','Succes'),(33,0,'vote_id_546420e1ef2ec','184.151.246.127','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:09:36','Succes'),(34,0,'vote_id_546420ec21ca8','184.151.246.127','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:09:44','Succes'),(35,0,'vote_id_54642bec9bcc4','99.246.42.219','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:56:28','Succes'),(36,0,'vote_id_546601f49c6b3','184.175.5.48','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-14 08:21:56','Succes'),(37,0,'vote_id_546634bc3e774','76.10.172.20','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-14 11:58:36','Succes'),(38,0,'vote_id_54b493331e4bc','173.206.8.157','1','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-12 22:38:27','Succes'),(39,0,'vote_id_54b50971ab58a','207.112.47.159','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 07:02:57','Succes'),(40,0,'vote_id_54b50983902cb','207.112.47.159','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 07:03:15','Succes'),(41,0,'vote_id_54b517a90a17e','99.240.146.197','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 08:03:37','Succes'),(42,0,'vote_id_54b51af1dc132','70.53.124.64','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 08:17:37','Succes'),(43,0,'vote_id_54b51d3a0e999','173.206.0.220','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 08:27:22','Succes'),(44,0,'vote_id_54b5214e7dd30','198.103.184.76','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 08:44:48','Succes'),(45,0,'vote_id_54b523e6e8e6e','70.31.28.120','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 08:55:50','Succes'),(46,0,'vote_id_54b52654a13d1','64.26.157.122','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 09:06:12','Succes'),(47,0,'vote_id_54b539c59068b','174.93.58.156','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 10:29:09','Succes'),(48,0,'vote_id_54b548072daed','173.206.137.4','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 11:29:59','Succes'),(49,0,'vote_id_54b54872193f9','99.241.171.139','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 11:31:46','Succes'),(50,0,'vote_id_54b55b90f0a06','69.158.173.105','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 12:53:21','Succes'),(51,0,'vote_id_54b563065eede','99.240.147.167','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 13:25:10','Succes'),(52,0,'vote_id_54b587d1063f1','69.156.1.2','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 16:02:09','Succes'),(53,0,'vote_id_54b5b8a7a5e66','75.119.224.240','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 19:30:31','Succes'),(54,0,'vote_id_54b67243bfeea','99.246.66.46','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-14 08:42:29','Succes'),(55,0,'vote_id_54b6c59b01550','99.246.118.96','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-14 14:38:03','Succes'),(56,0,'vote_id_54b71370aee96','99.241.135.224','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-14 20:10:08','Succes'),(57,0,'vote_id_54b7329758ebe','99.240.141.31','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-14 22:23:03','Succes'),(58,0,'vote_id_54b7b67c3a58e','99.240.235.17','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 07:45:48','Succes'),(59,0,'vote_id_54b7d4c216051','198.103.184.76','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 09:55:00','Succes'),(60,0,'vote_id_54b7de7b52e7d','99.246.66.128','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 10:36:27','Succes'),(61,0,'vote_id_54b7e56fbcdbe','184.145.139.119','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 11:06:07','Succes'),(62,0,'vote_id_54b7eefba9826','99.240.231.193','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 11:46:51','Succes'),(63,0,'vote_id_54b7fae465f58','99.246.42.219','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 12:37:40','Succes'),(64,0,'vote_id_54b83a7d649bd','99.241.1.132','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 17:09:01','Succes'),(65,0,'vote_id_54b83c84d5b84','70.53.60.175','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 17:17:40','Succes'),(66,0,'vote_id_54b57b2ff3b4c','69.158.169.132','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 15:08:16','Succes'),(67,0,'vote_id_54b66399074d6','184.144.137.74','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-14 07:39:53','Succes'),(68,0,'vote_id_54c25ff9c3db3','184.175.18.139','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-23 09:51:37','Succes'),(69,0,'vote_id_54c2699d958d8','69.156.1.2','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-23 10:32:45','Succes'),(70,0,'vote_id_54c272de8f56f','104.222.121.50','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-23 11:12:14','Succes'),(71,0,'vote_id_54c2a28ea9aad','50.66.94.54','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-23 14:35:42','Succes'),(72,0,'vote_id_54c179cec1438','184.145.139.119','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 17:29:34','Succes'),(73,0,'vote_id_54c0ff080cc21','64.26.157.122','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 08:45:44','Succes'),(74,0,'vote_id_54c0ba61747b8','206.47.116.177','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 03:52:49','Succes'),(75,0,'vote_id_54c026565964b','70.31.28.120','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 17:21:10','Succes'),(76,0,'vote_id_54c04abdab948','99.241.135.224','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 19:56:29','Succes'),(77,0,'vote_id_54bec0bdb8796','70.53.124.64','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-20 15:55:25','Succes'),(78,0,'vote_id_54c18ed821107','24.114.99.19','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 18:59:20','Succes'),(79,0,'vote_id_54c248746b8fd','184.145.142.37','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-23 08:11:16','Succes'),(80,0,'vote_id_54c166822a326','173.206.137.55','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 16:07:14','Succes'),(81,0,'vote_id_54c16ac26528b','99.246.118.96','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 16:25:22','Succes'),(82,0,'vote_id_54c14e433f145','69.158.169.132','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 14:23:47','Succes'),(83,0,'vote_id_54c13e22ae90d','99.240.147.167','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 13:14:58','Succes'),(84,0,'vote_id_54c13e43562d2','199.7.157.116','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 13:15:31','Succes'),(85,0,'vote_id_54c1024a167fb','70.53.60.175','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 08:59:38','Succes'),(86,0,'vote_id_54c11f795480c','64.26.157.122','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 11:04:09','Succes'),(87,0,'vote_id_54c12050d5b95','99.240.231.193','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 11:07:44','Succes'),(88,0,'vote_id_54c121a9eb500','64.56.228.129','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 11:13:30','Succes'),(89,0,'vote_id_54c0f60f94c37','184.144.137.74','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 08:07:27','Succes'),(90,0,'vote_id_54c07ef87aa92','99.240.141.31','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 23:39:20','Succes'),(91,0,'vote_id_54c057cb25a46','99.246.42.219','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 20:52:11','Succes'),(92,0,'vote_id_54c04aeb341a1','99.241.135.224','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 19:57:15','Succes'),(93,0,'vote_id_54bfa132a2260','198.103.184.76','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 07:53:08','Succes'),(94,0,'vote_id_54bfce5a963f8','99.240.235.17','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 11:05:46','Succes'),(95,0,'vote_id_54c0292d25508','69.157.22.213','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 17:33:17','Succes'),(96,0,'vote_id_54c0295878d0d','69.157.22.213','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 17:34:00','Succes'),(97,0,'vote_id_54be6319812ee','174.93.58.156','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-20 09:15:53','Succes'),(98,0,'vote_id_54be72e09bc26','99.241.171.139','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-20 10:23:12','Succes'),(99,0,'vote_id_54bebdbc27a5b','174.92.95.176','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-20 15:42:36','Succes'),(100,0,'vote_id_54bf102c2acbe','173.206.99.161','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-20 21:34:20','Succes'),(101,0,'vote_id_54be606e0a060','173.206.8.157','1','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-20 09:04:30','Succes'),(102,0,'vote_id_54c5b67b3bb15','99.240.231.193','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-25 22:37:31','Succes'),(103,0,'vote_id_54c631e4445d1','70.54.49.2','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 07:24:04','Succes'),(104,0,'vote_id_54c6adebf338b','198.103.184.76','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 16:13:18','Succes'),(105,0,'vote_id_54c9008f084cc','184.145.139.119','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-28 10:30:23','Succes'),(106,0,'vote_id_54c943c15cb49','99.246.66.128','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-28 15:17:05','Succes'),(107,0,'vote_id_54c9453cb3e3a','104.222.121.50','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-28 15:23:24','Succes'),(108,0,'vote_id_54c9592fe400f','99.240.235.17','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-28 16:48:31','Succes'),(109,0,'vote_id_54c9ab240f88a','69.156.1.218','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-28 22:38:12','Succes'),(110,0,'vote_id_54ca60182b7e4','173.206.137.186','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 11:30:16','Succes'),(111,0,'vote_id_54c5a088b02e3','99.240.147.167','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-25 21:03:52','Succes'),(112,0,'vote_id_54c5a0fd94b44','70.26.28.57','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-25 21:05:49','Succes'),(113,0,'vote_id_54c646cfb5f8d','99.246.66.46','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 08:53:19','Succes'),(114,0,'vote_id_54c64bf0be0d2','64.56.253.57','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 09:15:12','Succes'),(115,0,'vote_id_54c6555f45f94','70.31.28.120','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 09:55:27','Succes'),(116,0,'vote_id_54c6888c61e1e','173.206.0.159','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 13:33:48','Succes'),(117,0,'vote_id_54c7fbfc4a981','64.26.157.122','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-27 15:58:36','Succes'),(118,0,'vote_id_54c7fc0b9596d','64.26.157.122','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-27 15:58:51','Succes'),(119,0,'vote_id_54c7fc5c8b5af','64.26.157.122','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-27 16:00:12','Succes'),(120,0,'vote_id_54c81f84a439a','99.241.135.224','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-27 18:30:12','Succes'),(121,0,'vote_id_54c83ce5d2b10','184.148.16.39','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-27 20:35:33','Succes'),(122,0,'vote_id_54ca37d75906f','199.7.157.76','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 08:38:31','Succes'),(123,0,'vote_id_54ca5729685b4','184.175.18.139','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 10:52:09','Succes'),(124,0,'vote_id_54ca683f68269','99.241.1.132','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 12:05:03','Succes'),(125,0,'vote_id_54cabcf5bdfe3','174.92.91.157','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 18:06:29','Succes'),(126,0,'vote_id_54c632c99655d','99.241.171.139','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 07:27:53','Succes'),(127,0,'vote_id_54c785da51574','99.246.118.96','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-27 07:34:34','Succes'),(128,0,'vote_id_54ca5737e763c','174.92.93.226','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 10:52:23','Succes'),(129,0,'vote_id_54cab22b71115','64.229.223.210','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 17:20:27','Succes'),(130,0,'vote_id_54cacd5744ffd','99.246.42.219','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 19:16:23','Succes'),(131,0,'vote_id_54cb7d2713dca','184.144.142.58','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-30 07:46:31','Succes'),(132,0,'vote_id_54f50b5b551b8','173.206.42.200','1','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-02 20:16:11','Succes'),(133,0,'vote_id_54f50c9c55ce5','99.240.231.193','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-02 20:21:32','Succes'),(134,0,'vote_id_54f50cad40064','76.10.172.219','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-02 20:21:49','Succes'),(135,0,'vote_id_54f51820944ac','99.246.66.128','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-02 21:10:40','Succes'),(136,0,'vote_id_54f51af6af4fe','74.15.168.167','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-02 21:22:46','Succes'),(137,0,'vote_id_54f5b7c000a87','70.54.49.2','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-03 08:31:44','Succes'),(138,0,'vote_id_54f5c49f2cf21','99.241.1.132','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-03 09:26:39','Succes'),(139,0,'vote_id_54f61e47cf00d','70.52.148.204','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-03 15:49:11','Succes'),(140,0,'vote_id_54f61f922341e','198.103.184.76','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-03 15:54:42','Succes'),(141,0,'vote_id_54f664640f7ea','69.157.115.37','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-03 20:48:20','Succes'),(142,0,'vote_id_54f79548dff8d','173.206.95.122','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-04 18:29:12','Succes'),(143,0,'vote_id_54f79fdf161e0','99.241.135.224','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-04 19:14:23','Succes'),(144,0,'vote_id_54f87baf38a1f','64.229.220.99','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-05 10:52:15','Succes'),(145,0,'vote_id_54f8ae23014db','184.144.137.60','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-05 14:27:31','Succes'),(146,0,'vote_id_54f912ff1ee71','99.246.66.46','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-05 21:37:51','Succes'),(147,0,'vote_id_5500388f3d22b','64.56.224.88','1','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 08:43:59','Succes'),(148,0,'vote_id_5500416766174','174.93.175.60','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 09:21:43','Succes'),(149,0,'vote_id_5500526db8910','70.53.127.15','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 10:34:21','Succes'),(150,0,'vote_id_55005844b785f','69.157.22.69','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 10:59:16','Succes'),(151,0,'vote_id_550073b4c1414','70.54.49.2','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 12:56:20','Succes'),(152,0,'vote_id_55009a7eeb151','69.157.115.37','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 15:41:50','Succes'),(153,0,'vote_id_5500a90c29773','64.229.220.99','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 16:43:56','Succes'),(154,0,'vote_id_5500b4fff3ee1','99.246.42.219','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 17:34:56','Succes'),(155,0,'vote_id_5500cabaaec42','99.246.66.128','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 19:07:38','Succes'),(156,0,'vote_id_5500dccd61c2f','76.10.172.219','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 20:24:45','Succes'),(157,0,'vote_id_550187b5ae2f6','216.254.163.24','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-12 08:33:57','Succes'),(158,0,'vote_id_5501b3b86eeb3','99.241.135.224','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-12 11:41:44','Succes'),(159,0,'vote_id_5501d81dc6ff7','99.240.147.167','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-12 14:17:01','Succes'),(160,0,'vote_id_5501db309bb6c','198.103.184.76','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-12 14:30:08','Succes'),(161,0,'vote_id_5501f19615436','207.112.111.63','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-12 16:05:42','Succes'),(162,0,'vote_id_5502e25805d28','69.158.15.247','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-13 09:12:56','Succes'),(163,0,'vote_id_5502ff6292ae3','99.240.231.193','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-13 11:16:50','Succes'),(164,1,'vote_id_55f9cb5630183','173.206.1.179','0','anonymous','','{\"q-1\":{\"question\":\"Attending on September 25?\",\"id\":1,\"a\":[164],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-09-16 16:04:40','Success'),(165,2,'vote_id_55f9d0d828ad7','173.206.1.179','0','anonymous','','{\"q-2\":{\"question\":\"Who is Attending on Sept 25?\",\"id\":2,\"a\":[165],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-09-16 16:28:08','Success'),(166,2,'vote_id_55faca13282c5','174.91.32.63','0','anonymous','','{\"q-2\":{\"question\":\"Who is Attending on Sept 25?\",\"id\":2,\"a\":[166],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-09-17 10:11:38','Success'),(167,2,'vote_id_55faca2a4d438','174.91.32.63','0','anonymous','','','\"\"','2015-09-17 10:11:54','Run out of votes'),(168,1,'vote_id_55facbed63018','174.91.32.63','0','anonymous','','{\"q-1\":{\"question\":\"Attending on September 25?\",\"id\":1,\"a\":[167],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-09-17 10:20:32','Success'),(169,3,'vote_id_55fad2ea5cb87','174.91.32.63','0','anonymous','','{\"q-3\":{\"question\":\"Add your name IF you are coming to the Sept. 25 practice.\",\"id\":3,\"a\":[169],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-09-17 10:51:15','Success'),(170,3,'vote_id_55fad33babde8','174.91.32.63','0','anonymous','','{\"q-3\":{\"question\":\"Add your name IF you are coming to the Sept. 25 practice.\",\"id\":3,\"a\":[170],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-09-17 10:52:14','Success'),(171,3,'vote_id_55fad7062078f','174.91.32.63','0','anonymous','','','\"\"','2015-09-17 11:06:46','Run out of votes'),(172,3,'vote_id_55fadee9cb45a','174.91.32.63','0','anonymous','','','\"\"','2015-09-17 11:40:26','Run out of votes'),(173,3,'vote_id_55fb626898583','184.148.24.213','0','anonymous','','{\"q-3\":{\"question\":\"Are you are coming to the Sept. 25 practice.\",\"id\":3,\"a\":[170],\"answers\":[\"Yes\"],\"cf\":[1]}}','\"\"','2015-09-17 21:01:29','Success'),(174,3,'vote_id_55fb63b5d7434','184.148.24.213','0','anonymous','','','\"\"','2015-09-17 21:07:01','Run out of votes'),(175,3,'vote_id_55fb63baba4bc','184.148.24.213','0','anonymous','','','\"\"','2015-09-17 21:07:06','Run out of votes'),(176,3,'vote_id_55fb646cd3c4b','184.148.24.213','0','anonymous','','','\"\"','2015-09-17 21:10:04','Run out of votes'),(177,3,'vote_id_55fb64a078bca','184.148.24.213','0','anonymous','','','\"\"','2015-09-17 21:10:56','Run out of votes'),(178,3,'vote_id_56002b1695c20','69.158.168.79','0','anonymous','','','\"\"','2015-09-21 12:06:46','No answer selected for question 1'),(179,4,'vote_id_560032803f494','174.91.33.232','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[178],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-09-21 12:38:42','Success'),(180,4,'vote_id_560061e7c4679','173.206.1.179','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[179],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-09-21 16:00:46','Success'),(181,4,'vote_id_5600af6e5997f','184.148.20.102','0','anonymous','','','\"\"','2015-09-21 21:31:26','Run out of votes'),(182,4,'vote_id_56014f955ba89','65.92.112.246','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[180],\"answers\":[\"Susan O\"],\"cf\":[]}}','\"\"','2015-09-22 08:54:52','Success'),(183,4,'vote_id_5601846e9a2b2','99.240.162.239','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[177],\"answers\":[\"your name?\"],\"cf\":[]}}','\"\"','2015-09-22 12:42:23','Success'),(184,4,'vote_id_560184c1e74cb','99.240.162.239','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[181],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-09-22 12:43:52','Success'),(185,4,'vote_id_5601b8b541ac6','99.246.66.128','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[182],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-09-22 16:23:20','Success'),(186,4,'vote_id_56028fc3a2cd2','173.206.163.24','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[183],\"answers\":[\"JANICE\"],\"cf\":[]}}','\"\"','2015-09-23 07:40:53','Success'),(187,4,'vote_id_56033f6eb8c16','198.103.184.76','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[184],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2015-09-23 20:10:31','Success'),(188,4,'vote_id_560346fb6b282','67.230.128.20','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[177,185],\"answers\":[\"your name?\",\"Darlene Pearson\"],\"cf\":[]}}','\"\"','2015-09-23 20:42:48','Success'),(189,5,'vote_id_5606ac8a6117a','108.63.102.247','0','anonymous','','{\"q-5\":{\"question\":\"Are you coming to the October 2  practice?\",\"id\":5,\"a\":[204],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-09-26 10:32:43','Success'),(190,5,'vote_id_5606b2d1b56ab','108.63.102.247','0','anonymous','','','\"\"','2015-09-26 10:59:29','Run out of votes'),(191,6,'vote_id_5606c72aaf410','108.63.102.247','0','anonymous','','{\"q-6\":{\"question\":\"Will you be AWAY October 2?\",\"id\":6,\"a\":[197],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-09-26 12:26:19','Success'),(192,9,'vote_id_5606cb383fb5c','108.63.102.247','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[210],\"answers\":[\"Jo-Ann H\"],\"cf\":[]}}','\"\"','2015-09-26 12:43:37','Success'),(193,9,'vote_id_56095d8f4bd39','184.145.30.118','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[211],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-09-28 11:32:38','Success'),(194,9,'vote_id_560961b95379a','24.52.238.141','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[212],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-09-28 11:50:18','Success'),(195,9,'vote_id_5609690e38840','99.246.42.219','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[213],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-09-28 12:21:38','Success'),(196,9,'vote_id_56096a1967c0f','104.247.234.213','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[214],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-09-28 12:26:05','Success'),(197,9,'vote_id_56097857abf97','99.246.66.128','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[215],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-09-28 13:26:49','Success'),(198,9,'vote_id_560978bd42df4','69.157.114.71','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[216],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-09-28 13:28:30','Success'),(199,9,'vote_id_56097a36ce7a4','108.162.170.98','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[217],\"answers\":[\"Jennifer W\"],\"cf\":[]}}','\"\"','2015-09-28 13:35:10','Success'),(200,11,'vote_id_56098710f1934','174.93.172.39','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[218],\"answers\":[\"Janey  - will be away\"],\"cf\":[]}}','\"\"','2015-09-28 14:29:48','Success'),(201,9,'vote_id_560991c5aa3af','184.145.142.241','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[219],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-09-28 15:15:20','Success'),(202,9,'vote_id_5609adc655597','99.246.66.128','0','anonymous','','','\"\"','2015-09-28 17:14:46','Run out of votes'),(203,9,'vote_id_5609cc109dbce','65.92.112.246','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[220],\"answers\":[\"Susan O\"],\"cf\":[]}}','\"\"','2015-09-28 19:24:03','Success'),(204,9,'vote_id_5609e50b16c79','99.240.162.239','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[221],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-09-28 21:10:37','Success'),(205,11,'vote_id_5609f5ea3b671','74.214.227.134','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[222],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-09-28 22:22:36','Success'),(206,9,'vote_id_560a046d44433','173.206.79.35','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[223],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-09-28 23:24:32','Success'),(207,9,'vote_id_560a873246b9f','137.122.64.32','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[224],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2015-09-29 08:42:30','Success'),(208,9,'vote_id_560a8a7a49bf1','206.47.112.83','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[225],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-09-29 08:56:31','Success'),(209,11,'vote_id_560ac35d250be','108.63.160.50','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[226],\"answers\":[\"Julie - in Utah\"],\"cf\":[]}}','\"\"','2015-09-29 12:59:10','Success'),(210,9,'vote_id_560adc19c8b94','67.230.128.47','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[227],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-09-29 14:44:42','Success'),(211,9,'vote_id_560aeb17db052','174.92.92.174','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[228],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-09-29 15:48:42','Success'),(212,9,'vote_id_560b2c917709f','206.132.178.214','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[229],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-09-29 20:28:06','Success'),(213,9,'vote_id_560bce22f12dd','198.103.184.76','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[230],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2015-09-30 07:57:27','Success'),(214,9,'vote_id_560bd9760d547','99.240.235.17','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[231],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-09-30 08:45:43','Success'),(215,11,'vote_id_560bf64069bdb','108.162.170.98','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[232],\"answers\":[\"Jennifer W\"],\"cf\":[]}}','\"\"','2015-09-30 10:48:34','Success'),(216,9,'vote_id_560c094924451','174.95.240.30','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[233],\"answers\":[\"Ellie Wilkinson\"],\"cf\":[]}}','\"\"','2015-09-30 12:09:48','Success'),(217,9,'vote_id_560c14fdef54a','99.248.98.53','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[234],\"answers\":[\"Maggie King\"],\"cf\":[]}}','\"\"','2015-09-30 12:59:42','Success'),(218,11,'vote_id_560c50ad80d74','70.26.17.241','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[235],\"answers\":[\"Shelley\"],\"cf\":[]}}','\"\"','2015-09-30 17:14:22','Success'),(219,9,'vote_id_560c90d445e2f','108.63.200.65','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[236],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-09-30 21:48:07','Success'),(220,11,'vote_id_560c9705cc799','76.66.153.68','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[237],\"answers\":[\"Susan NY\"],\"cf\":[]}}','\"\"','2015-09-30 22:14:32','Success'),(221,11,'vote_id_560ccc12bed82','99.240.141.31','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[238],\"answers\":[\"Joanne B\"],\"cf\":[]}}','\"\"','2015-10-01 02:00:51','Success'),(222,9,'vote_id_560ddcae5392f','99.245.243.252','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[239],\"answers\":[\"Barbara L\"],\"cf\":[]}}','\"\"','2015-10-01 21:23:58','Success'),(223,11,'vote_id_560e6bd3acb1d','65.92.112.246','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[240],\"answers\":[\"Susan O - surprise out of town guests\"],\"cf\":[]}}','\"\"','2015-10-02 07:34:45','Success'),(224,9,'vote_id_560e6f11860d5','65.93.71.190','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[241],\"answers\":[\"Pauline\"],\"cf\":[]}}','\"\"','2015-10-02 07:48:45','Success'),(225,9,'vote_id_560e9291a173e','99.246.119.165','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[242],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2015-10-02 10:20:05','Success'),(226,11,'vote_id_560e94b3254f2','206.47.100.87','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[243],\"answers\":[\"Fay - company has arrived and I cannot make it afterall!\"],\"cf\":[]}}','\"\"','2015-10-02 10:29:15','Success'),(227,12,'vote_id_560f14f1717d6','108.63.117.22','0','anonymous','','{\"q-12\":{\"question\":\"If you are attending October 9,\",\"id\":12,\"a\":[246],\"answers\":[\"Jo-Ann H\"],\"cf\":[]}}','\"\"','2015-10-02 19:36:18','Success'),(228,13,'vote_id_5611192398ebb','70.31.76.178','0','anonymous','','{\"q-13\":{\"question\":\"AWAY on Oct 9?\",\"id\":13,\"a\":[247],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-10-04 08:18:44','Success'),(229,13,'vote_id_56111b0fe8298','104.247.234.213','0','anonymous','','{\"q-13\":{\"question\":\"AWAY on Oct 9?\",\"id\":13,\"a\":[248],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-10-04 08:26:56','Success'),(230,13,'vote_id_56111d15a58f4','69.157.114.71','0','anonymous','','{\"q-13\":{\"question\":\"AWAY on Oct 9?\",\"id\":13,\"a\":[249],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-10-04 08:35:34','Success'),(231,12,'vote_id_56111d1e6b6a3','69.157.114.71','0','anonymous','','{\"q-12\":{\"question\":\"If you are attending October 9,\",\"id\":12,\"a\":[250],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-10-04 08:35:43','Success'),(232,12,'vote_id_561122332ea84','99.240.162.239','0','anonymous','','{\"q-12\":{\"question\":\"If you are attending October 9,\",\"id\":12,\"a\":[251],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-10-04 08:57:24','Success'),(233,12,'vote_id_561128dc4a57b','99.245.243.252','0','anonymous','','{\"q-12\":{\"question\":\"If you are attending October 9,\",\"id\":12,\"a\":[244,252],\"answers\":[\"Write your NAME and click SEND.\",\"Barbara L\"],\"cf\":[]}}','\"\"','2015-10-04 09:25:49','Success'),(234,12,'vote_id_561141cb08db6','69.158.168.219','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[253],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-10-04 11:12:11','Success'),(235,12,'vote_id_561148c6d4150','24.121.109.247','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[254],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-10-04 11:42:00','Success'),(236,12,'vote_id_561151f86fcb3','174.93.172.182','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[255],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-10-04 12:21:15','Success'),(237,12,'vote_id_56115521796ed','184.145.142.241','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[256],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-10-04 12:34:43','Success'),(238,12,'vote_id_56116a531d23b','99.246.42.219','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[257],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-10-04 14:05:07','Success'),(239,12,'vote_id_561183b055503','206.132.178.214','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[258],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-10-04 15:53:21','Success'),(240,12,'vote_id_56118e549ae20','198.103.184.76','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[259],\"answers\":[\"Marie-France=undecided sorry\"],\"cf\":[]}}','\"\"','2015-10-04 16:38:47','Success'),(241,12,'vote_id_5611d6bd16381','76.66.153.68','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[260],\"answers\":[\"Susan ny\"],\"cf\":[]}}','\"\"','2015-10-04 21:47:43','Success'),(242,12,'vote_id_5611dd9e4b2ec','99.240.231.193','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[261],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-10-04 22:17:07','Success'),(243,12,'vote_id_561277b20d350','67.230.128.12','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[262],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-10-05 09:14:29','Success'),(244,13,'vote_id_561289d9abfc1','184.151.246.97','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[263],\"answers\":[\"Joanne\"],\"cf\":[]}}','\"\"','2015-10-05 10:31:56','Success'),(245,12,'vote_id_5612cd70ac1cc','184.145.30.118','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[264],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-10-05 15:20:24','Success'),(246,12,'vote_id_561300f77ef39','108.63.193.62','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[265],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-10-05 19:00:09','Success'),(247,12,'vote_id_561320229ca4a','108.162.170.98','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[266],\"answers\":[\"Jennifer (still not sure...)\"],\"cf\":[]}}','\"\"','2015-10-05 21:13:08','Success'),(248,12,'vote_id_5613cf2da42d8','70.55.27.176','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[267],\"answers\":[\"Margaret McLaren  (1 attending )\"],\"cf\":[]}}','\"\"','2015-10-06 09:40:01','Success'),(249,12,'vote_id_5613e46646315','99.246.66.128','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[268],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-10-06 11:10:33','Success'),(250,12,'vote_id_561418381afdf','99.240.171.186','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[244,269],\"answers\":[\"Write your NAME, click SEND.\",\"Gail\"],\"cf\":[]}}','\"\"','2015-10-06 14:51:46','Success'),(251,12,'vote_id_5614620389b11','99.240.235.17','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[270],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-10-06 20:06:28','Success'),(252,12,'vote_id_56156ca45d664','174.95.184.165','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[271],\"answers\":[\"Ellie Wilkinson\"],\"cf\":[]}}','\"\"','2015-10-07 15:04:12','Success'),(253,13,'vote_id_5615c99abc72f','99.248.98.53','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[272],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-10-07 21:40:44','Success'),(254,13,'vote_id_561676bf5165b','24.114.81.173','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[273],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2015-10-08 09:59:32','Success'),(255,12,'vote_id_5616cc94ebe58','65.92.112.246','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[274],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-10-08 16:05:50','Success'),(256,13,'vote_id_5617271a7e9c2','67.230.128.11','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[275],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-10-08 22:31:55','Success'),(257,12,'vote_id_5617276b1e000','67.230.128.11','0','anonymous','','','\"\"','2015-10-08 22:33:15','Run out of votes'),(258,13,'vote_id_5617c68aa696c','69.157.115.124','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[276],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2015-10-09 09:52:12','Success'),(259,13,'vote_id_5617c8a2dbfdf','65.92.112.246','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[277],\"answers\":[\"Susan o recovering from cold\"],\"cf\":[]}}','\"\"','2015-10-09 10:01:13','Success'),(260,13,'vote_id_5617cf289343d','184.145.142.241','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[278],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-10-09 10:28:57','Success'),(261,13,'vote_id_5617d32f3c1db','99.245.243.252','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[279],\"answers\":[\"barbara l - feeling under the weather\"],\"cf\":[]}}','\"\"','2015-10-09 10:46:09','Success'),(262,13,'vote_id_5617d405ac4c2','174.95.236.107','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[280],\"answers\":[\"Ellie received very bad news. Must be with friend.\"],\"cf\":[]}}','\"\"','2015-10-09 10:49:42','Success'),(263,14,'vote_id_56180e0f4852c','173.206.19.180','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-09 14:57:19','Success'),(264,16,'vote_id_561811550a3b3','173.206.19.180','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[286],\"answers\":[\"Jo-Ann H.\"],\"cf\":[]}}','\"\"','2015-10-09 15:11:18','Success'),(265,14,'vote_id_561820bb53402','99.246.42.219','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-09 16:17:00','Success'),(266,14,'vote_id_561820d135bb9','76.10.172.239','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-09 16:17:22','Success'),(267,16,'vote_id_561820d2245e5','99.246.42.219','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[287],\"answers\":[\"pat\"],\"cf\":[]}}','\"\"','2015-10-09 16:17:22','Success'),(268,16,'vote_id_56182160595ef','174.93.172.182','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[288],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-10-09 16:19:46','Success'),(269,14,'vote_id_56182178579da','174.93.172.182','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-09 16:20:08','Success'),(270,16,'vote_id_5618674782d59','184.148.10.145','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[289],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-10-09 21:18:00','Success'),(271,14,'vote_id_56186cc84ec73','69.158.171.10','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-09 21:41:29','Success'),(272,16,'vote_id_56186cd7390de','69.158.171.10','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[290],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-10-09 21:41:44','Success'),(273,16,'vote_id_561871ebed822','70.55.27.176','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[291],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-10-09 22:03:24','Success'),(274,14,'vote_id_5618721710a0c','70.55.27.176','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-09 22:04:07','Success'),(275,16,'vote_id_56198171d864f','76.66.153.68','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[292],\"answers\":[\"susan NY\"],\"cf\":[]}}','\"\"','2015-10-10 17:21:55','Success'),(276,14,'vote_id_56198184bd6a4','76.66.153.68','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[282],\"answers\":[\"Mooney\'s Bay\"],\"cf\":[]}}','\"\"','2015-10-10 17:22:13','Success'),(277,16,'vote_id_561a6b332e556','184.148.12.186','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[293],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-10-11 09:59:17','Success'),(278,16,'vote_id_561bdb157956a','99.240.171.186','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[294],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2015-10-12 12:08:57','Success'),(279,14,'vote_id_561bdb34ad4e0','99.240.171.186','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[282],\"answers\":[\"Mooney\'s Bay\"],\"cf\":[]}}','\"\"','2015-10-12 12:09:27','Success'),(280,14,'vote_id_561be32b07518','198.103.184.76','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-12 12:43:26','Success'),(281,17,'vote_id_561be370df8e8','198.103.184.76','0','anonymous','','{\"q-17\":{\"question\":\"AWAY October 16?\",\"id\":17,\"a\":[285,295],\"answers\":[\"Write NAME and hit SEND\",\"Marie-France\"],\"cf\":[]}}','\"\"','2015-10-12 12:44:34','Success'),(282,14,'vote_id_561c3bc5bd972','99.248.98.53','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-12 19:01:29','Success'),(283,16,'vote_id_561c3bd142a8c','99.248.98.53','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[296],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-10-12 19:01:39','Success'),(284,16,'vote_id_561cee4eb1280','108.63.163.120','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[297],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-10-13 07:43:12','Success'),(285,14,'vote_id_561cee833949f','108.63.163.120','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-13 07:44:05','Success'),(286,16,'vote_id_561ceeaa52249','173.206.81.118','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[298],\"answers\":[\"Julie McInnes\"],\"cf\":[]}}','\"\"','2015-10-13 07:44:44','Success'),(287,17,'vote_id_561d36f60b728','108.63.196.195','0','anonymous','','{\"q-17\":{\"question\":\"AWAY October 16?\",\"id\":17,\"a\":[285,299],\"answers\":[\"Write NAME and hit SEND\",\"Susan Riley _ wedding in Kitchener, alas.\"],\"cf\":[]}}','\"\"','2015-10-13 12:53:11','Success'),(288,14,'vote_id_561e40e570ec0','99.240.235.17','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[282],\"answers\":[\"Mooney\'s Bay\"],\"cf\":[]}}','\"\"','2015-10-14 07:47:50','Success'),(289,16,'vote_id_561e40ff2bf7a','99.240.235.17','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[300],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-10-14 07:48:16','Success'),(290,16,'vote_id_561e9ce609a4e','99.246.119.165','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[301],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2015-10-14 14:20:23','Success'),(291,16,'vote_id_561eb19e5de46','99.246.66.128','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[302],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-10-14 15:48:52','Success'),(292,16,'vote_id_561ebadc38f70','184.145.30.118','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[303],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-10-14 16:28:18','Success'),(293,16,'vote_id_561ec1f822bf2','69.165.135.41','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[304],\"answers\":[\"anne\"],\"cf\":[]}}','\"\"','2015-10-14 16:58:32','Success'),(294,16,'vote_id_561ed566d4358','69.157.114.71','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[305],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-10-14 18:21:30','Success'),(295,16,'vote_id_561efe9e7cbea','69.157.115.86','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[306],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-10-14 21:17:19','Success'),(296,17,'vote_id_561f0cc810a29','70.55.27.176','0','anonymous','','','\"\"','2015-10-14 22:17:44','No answer selected for question 1'),(297,17,'vote_id_561f0cf546d4e','70.55.27.176','0','anonymous','','{\"q-17\":{\"question\":\"AWAY October 16?\",\"id\":17,\"a\":[307],\"answers\":[\"Margaret McLaren  Sorry I can\\\\\'t make it this week\"],\"cf\":[]}}','\"\"','2015-10-14 22:18:34','Success'),(298,16,'vote_id_561fa166942f1','206.132.178.214','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[308],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-10-15 08:51:52','Success'),(299,16,'vote_id_561fb2437c93d','206.47.116.169','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[309],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-10-15 10:03:58','Success'),(300,17,'vote_id_561fb26253c86','174.95.238.101','0','anonymous','','{\"q-17\":{\"question\":\"AWAY October 16?\",\"id\":17,\"a\":[310],\"answers\":[\"Ellie Wilkinson : sorry I\\\\\'m away this weekend and have to leave mid morning.\"],\"cf\":[]}}','\"\"','2015-10-15 10:04:26','Success'),(301,16,'vote_id_5620158f5d0c6','99.240.231.193','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[311],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-10-15 17:07:31','Success'),(302,16,'vote_id_56203b370717f','65.92.112.246','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[312],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-10-15 19:48:08','Success'),(303,16,'vote_id_5620432f8e0f5','99.245.243.252','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[313],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2015-10-15 20:22:10','Success'),(304,16,'vote_id_56205a2fb9a34','99.240.162.239','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[314],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-10-15 22:00:17','Success'),(305,17,'vote_id_56205e4d0865d','174.114.160.65','0','anonymous','','{\"q-17\":{\"question\":\"AWAY October 16?\",\"id\":17,\"a\":[315],\"answers\":[\"Joanne- Looking at rentals, to find a roof for over our heads!\"],\"cf\":[]}}','\"\"','2015-10-15 22:17:52','Success'),(306,20,'vote_id_5624478889922','173.206.36.36','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[349],\"answers\":[\"Jo-Ann H\"],\"cf\":[]}}','\"\"','2015-10-18 21:29:47','Success'),(307,21,'vote_id_562448af4d39d','173.206.36.36','0','anonymous','','{\"q-21\":{\"question\":\"AWAY Oct 23?\",\"id\":21,\"a\":[351],\"answers\":[\"Just testing\"],\"cf\":[]}}','\"\"','2015-10-18 21:34:40','Success'),(308,23,'vote_id_56244bf0b8384','173.206.36.36','0','anonymous','','{\"q-23\":{\"question\":\"Which of these can you bring to practice starting in 2 weeks?\",\"id\":23,\"a\":[354],\"answers\":[\"Jo-Ann H: 6lb, 8lb and 10lb medicine balls\"],\"cf\":[]}}','\"\"','2015-10-18 21:48:34','Success'),(309,23,'vote_id_56244c2730a9d','173.206.36.36','0','anonymous','','{\"q-23\":{\"question\":\"Which of these can you bring to practice starting in 2 weeks?\",\"id\":23,\"a\":[355],\"answers\":[\"Jo-Ann H:   2 large exercise balls and one medium sized.  ( (the ones with air)\"],\"cf\":[]}}','\"\"','2015-10-18 21:49:29','Success'),(310,20,'vote_id_562452c87fa0b','99.240.231.193','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[356],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-10-18 22:17:46','Success'),(311,23,'vote_id_5624557822074','184.148.28.111','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[357],\"answers\":[\"Penny: 1 air filled exercise ball\"],\"cf\":[]}}','\"\"','2015-10-18 22:29:14','Success'),(312,20,'vote_id_56245591b13de','184.148.28.111','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[358],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-10-18 22:29:40','Success'),(313,20,'vote_id_5624e28894bd3','184.145.30.118','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[359],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-10-19 08:31:08','Success'),(314,20,'vote_id_5624e71192786','108.63.189.161','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[360],\"answers\":[\"Julie M\"],\"cf\":[]}}','\"\"','2015-10-19 08:50:29','Success'),(315,20,'vote_id_5624ecae923bf','69.158.168.66','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[361],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-10-19 09:14:26','Success'),(316,23,'vote_id_5624ed297de38','69.158.168.66','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[362],\"answers\":[\"Rosy: 10 lb medicine ball; 2 x 8 lb non-bouncing medicine balls; 1 medium air ball; several small balls (between the knees for squats etc)\"],\"cf\":[]}}','\"\"','2015-10-19 09:16:36','Success'),(317,20,'vote_id_5625034da3aa6','70.55.27.176','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[363],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-10-19 10:50:54','Success'),(318,20,'vote_id_56252c5a431a3','137.122.64.14','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[348,364],\"answers\":[\"Write your NAME and hit SEND\",\"Gail\"],\"cf\":[]}}','\"\"','2015-10-19 13:46:05','Success'),(319,20,'vote_id_5625362875fb1','65.92.112.246','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[365],\"answers\":[\"Susan O\"],\"cf\":[]}}','\"\"','2015-10-19 14:28:01','Success'),(320,20,'vote_id_5625362e1656a','65.92.112.246','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[366],\"answers\":[\"Susan O\"],\"cf\":[]}}','\"\"','2015-10-19 14:28:03','Success'),(321,23,'vote_id_56253670baec8','65.92.112.246','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[367],\"answers\":[\"Susan O - 1 large 1 med Stability ball (attending)\"],\"cf\":[]}}','\"\"','2015-10-19 14:29:06','Success'),(322,20,'vote_id_56254c9993a4d','99.240.162.239','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[368],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-10-19 16:03:45','Success'),(323,20,'vote_id_5625579a8eac7','184.144.140.198','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[369],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-10-19 16:50:40','Success'),(324,23,'vote_id_562557ee00ce8','184.144.140.198','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[370],\"answers\":[\"Janey,  i 10lb m\\u00e9decine ball\"],\"cf\":[]}}','\"\"','2015-10-19 16:52:00','Success'),(325,20,'vote_id_56255f9a684f3','67.230.128.22','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[371],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-10-19 17:24:45','Success'),(326,20,'vote_id_562563a2c2d5e','69.157.114.71','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[372],\"answers\":[\"ila\"],\"cf\":[]}}','\"\"','2015-10-19 17:41:58','Success'),(327,22,'vote_id_5625752134380','99.245.243.252','0','anonymous','','{\"q-22\":{\"question\":\"AWAY Oct 23?\",\"id\":22,\"a\":[352,373],\"answers\":[\"Write your NAME and hit SEND.\",\"Barbara L - unable to attend this week. Rats!\"],\"cf\":[]}}','\"\"','2015-10-19 18:56:34','Success'),(328,20,'vote_id_5625923e2e3fa','99.246.42.219','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[374],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-10-19 21:00:49','Success'),(329,23,'vote_id_562629a2bbf69','198.103.184.76','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[375],\"answers\":[\"Marie-France -1 medecine ball of 8 pounds\"],\"cf\":[]}}','\"\"','2015-10-20 07:46:43','Success'),(330,20,'vote_id_562629bf00862','198.103.184.76','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[376],\"answers\":[\"Marie-France but uncertain at the present moment\"],\"cf\":[]}}','\"\"','2015-10-20 07:47:11','Success'),(331,20,'vote_id_56263740acc32','108.63.126.77','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[377],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-10-20 08:44:51','Success'),(332,20,'vote_id_5626983d1e4ac','206.47.100.241','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[378],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-10-20 15:38:38','Success'),(333,20,'vote_id_5626a658432e5','69.157.115.86','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[379],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-10-20 16:38:50','Success'),(334,20,'vote_id_5626d3d9cb9df','206.132.178.214','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[380],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-10-20 19:52:58','Success'),(335,20,'vote_id_5626d5211c341','108.63.200.148','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[381],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-10-20 19:58:28','Success'),(336,20,'vote_id_5627abe69ee19','108.162.170.98','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[348,382],\"answers\":[\"Write your NAME and hit SEND\",\"Jennifer\"],\"cf\":[]}}','\"\"','2015-10-21 11:14:47','Success'),(337,20,'vote_id_5627d90e3695a','99.240.235.17','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[383],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-10-21 14:27:28','Success'),(338,22,'vote_id_562826eb12f2e','184.145.42.73','0','anonymous','','{\"q-22\":{\"question\":\"AWAY Oct 23?\",\"id\":22,\"a\":[384],\"answers\":[\"Susan Ny\"],\"cf\":[]}}','\"\"','2015-10-21 19:59:40','Success'),(339,20,'vote_id_5628273c6e4d6','174.95.186.84','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[385],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2015-10-21 20:01:01','Success'),(340,22,'vote_id_5628cef8734f2','99.246.119.165','0','anonymous','','{\"q-22\":{\"question\":\"AWAY Oct 23?\",\"id\":22,\"a\":[386],\"answers\":[\"Sandra -working!\"],\"cf\":[]}}','\"\"','2015-10-22 07:56:42','Success'),(341,20,'vote_id_5629702bd71c9','69.157.115.124','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[387],\"answers\":[\"Linda 1\"],\"cf\":[]}}','\"\"','2015-10-22 19:24:28','Success'),(342,20,'vote_id_56298f8b48f0e','69.165.135.41','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[388],\"answers\":[\"anne\"],\"cf\":[]}}','\"\"','2015-10-22 21:38:20','Success'),(343,22,'vote_id_562a2d96708a8','69.157.115.86','0','anonymous','','{\"q-22\":{\"question\":\"AWAY Oct 23?\",\"id\":22,\"a\":[389],\"answers\":[\"Liz R - sick\"],\"cf\":[]}}','\"\"','2015-10-23 08:52:39','Success'),(344,23,'vote_id_562ea2c30815b','206.47.113.84','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[390],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-10-26 18:01:40','Success'),(345,23,'vote_id_56301cbf98800','99.246.42.219','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[391],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-10-27 20:54:25','Success'),(346,23,'vote_id_563025dab5d8a','99.248.98.53','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[392],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-10-27 21:33:15','Success'),(347,24,'vote_id_5630bdc626ab7','173.206.36.36','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[394],\"answers\":[\"Jo-Ann H, 6 +8,+  8 +10 lb med balls.\"],\"cf\":[]}}','\"\"','2015-10-28 08:21:28','Success'),(348,24,'vote_id_5630be745255e','173.206.84.124','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[395],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-10-28 08:24:23','Success'),(349,24,'vote_id_5630c44c13e3d','69.157.114.71','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[396],\"answers\":[\"Ila - 8 lb ball\"],\"cf\":[]}}','\"\"','2015-10-28 08:49:17','Success'),(350,24,'vote_id_5630d2f2069f3','198.103.184.76','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[398],\"answers\":[\"Marie-France, 8lbs ball probaly not weighted\"],\"cf\":[]}}','\"\"','2015-10-28 09:51:49','Success'),(351,24,'vote_id_5630d3fa727f4','174.92.95.119','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[399],\"answers\":[\"Rosy, 10 lb ball which bounces, 8 lb non-bouncing, 8 lb non-bouncing\"],\"cf\":[]}}','\"\"','2015-10-28 09:56:16','Success'),(352,25,'vote_id_5630d5004e2b1','142.169.78.107','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[400],\"answers\":[\"Cyndy will be exploring the area with friends. Enjoy the pirate theme!\"],\"cf\":[]}}','\"\"','2015-10-28 10:00:34','Success'),(353,24,'vote_id_5630df1e9c7af','67.230.128.10','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[401],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-10-28 10:43:45','Success'),(354,25,'vote_id_5630eecea93f2','99.246.66.128','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[402],\"answers\":[\"Lou.  Sorry have friends visiting.\"],\"cf\":[]}}','\"\"','2015-10-28 11:50:40','Success'),(355,24,'vote_id_5630ffe314cac','99.240.231.193','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[403],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-10-28 13:03:32','Success'),(356,24,'vote_id_56312375c6785','206.47.94.172','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[404],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-10-28 15:35:19','Success'),(357,24,'vote_id_563126dfed3ee','108.63.192.252','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[405],\"answers\":[\"Susan R. One 10-lb heavy medicine ball, not filled with air.\"],\"cf\":[]}}','\"\"','2015-10-28 15:49:53','Success'),(358,24,'vote_id_563134bb1a369','173.206.1.243','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[406],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2015-10-28 16:49:00','Success'),(359,24,'vote_id_56313a0e4a063','142.113.144.31','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[407],\"answers\":[\"Susan O - may be coming but will arrive late\"],\"cf\":[]}}','\"\"','2015-10-28 17:11:50','Success'),(360,24,'vote_id_56314085e9af6','69.165.135.41','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[408],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-10-28 17:39:21','Success'),(361,24,'vote_id_563140f9ef715','184.144.100.114','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[409],\"answers\":[\"Pauline\"],\"cf\":[]}}','\"\"','2015-10-28 17:41:15','Success'),(362,24,'vote_id_5631520bb2b8c','99.240.235.17','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[410],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-10-28 18:54:04','Success'),(363,24,'vote_id_5631742b84d65','184.144.151.177','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[411],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-10-28 21:19:40','Success'),(364,25,'vote_id_56321f395d2ec','99.240.162.239','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[412],\"answers\":[\"Carol, sorry to miss this  week\\\\\'s workout but I\\\\\'m sick.\"],\"cf\":[]}}','\"\"','2015-10-29 09:29:31','Success'),(365,24,'vote_id_563222505e211','70.55.27.176','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[413],\"answers\":[\"Margaret M.\"],\"cf\":[]}}','\"\"','2015-10-29 09:42:41','Success'),(366,24,'vote_id_563243791ab8d','184.151.246.228','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[414],\"answers\":[\"Linda Lafrance\"],\"cf\":[]}}','\"\"','2015-10-29 12:04:10','Success'),(367,24,'vote_id_563257f1f0f55','69.157.115.86','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[415],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-10-29 13:31:31','Success'),(368,24,'vote_id_5632666667907','184.145.30.118','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[416],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-10-29 14:33:16','Success'),(369,25,'vote_id_56327c121efdd','184.148.19.74','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[417],\"answers\":[\"Penny..babying my knee this week.\"],\"cf\":[]}}','\"\"','2015-10-29 16:05:40','Success'),(370,24,'vote_id_5632860195e25','76.10.172.46','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[418],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2015-10-29 16:48:02','Success'),(371,24,'vote_id_563289697a928','184.145.42.73','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[419],\"answers\":[\"Susan ny\"],\"cf\":[]}}','\"\"','2015-10-29 17:02:34','Success'),(372,24,'vote_id_56329e3b33b39','70.55.27.176','0','anonymous','','','\"\"','2015-10-29 18:31:23','Run out of votes'),(373,25,'vote_id_56329ec9ea150','70.55.27.176','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[420],\"answers\":[\"Margaret McLaren, Sorry I have contractors. Enjoy the pirates.\"],\"cf\":[]}}','\"\"','2015-10-29 18:33:46','Success'),(374,24,'vote_id_5632d98a789ac','174.95.186.84','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[421],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2015-10-29 22:44:28','Success'),(375,25,'vote_id_563358f4abed7','99.245.243.252','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[422],\"answers\":[\"Barbara - heading to physio this morning for my lower calf - feeling very torn about not joining you for a hardy-har good time.\"],\"cf\":[]}}','\"\"','2015-10-30 07:48:05','Success'),(376,24,'vote_id_5633640e7ed81','99.246.119.165','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[423],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2015-10-30 08:35:27','Success'),(377,25,'vote_id_56336a0219a76','174.92.88.19','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[424],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2015-10-30 09:00:50','Success'),(378,26,'vote_id_5638202ea67e3','173.206.14.75','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[427],\"answers\":[\"Jo-Ann H and a pile of medicine balls\"],\"cf\":[]}}','\"\"','2015-11-02 21:47:12','Success'),(379,27,'vote_id_563834c6e430a','99.246.10.81','0','anonymous','','{\"q-27\":{\"question\":\"AWAY NOV 6?\",\"id\":27,\"a\":[428],\"answers\":[\"Janice away for the next 3 weeks\"],\"cf\":[]}}','\"\"','2015-11-02 23:15:03','Success'),(380,26,'vote_id_56383ac683605','99.246.66.128','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[429],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-11-02 23:40:41','Success'),(381,26,'vote_id_563898e0a544b','206.132.178.214','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[430],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-11-03 06:22:09','Success'),(382,26,'vote_id_56389bffeaec2','99.240.231.193','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[431],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-11-03 06:35:28','Success'),(383,26,'vote_id_5638a718b74f8','69.165.135.41','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[432],\"answers\":[\"anne\"],\"cf\":[]}}','\"\"','2015-11-03 07:22:49','Success'),(384,26,'vote_id_5638a981958d7','99.240.235.17','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[433],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-11-03 07:33:06','Success'),(385,26,'vote_id_5638ac6e76c99','69.157.114.71','0','anonymous','','','\"\"','2015-11-03 07:45:34','No answer selected for question 1'),(386,26,'vote_id_5638ac814663d','69.157.114.71','0','anonymous','','','\"\"','2015-11-03 07:45:53','No answer selected for question 1'),(387,26,'vote_id_5638ac8f7f689','198.103.184.76','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[434],\"answers\":[\"Marie-France but if heavy rain no Marie-France\"],\"cf\":[]}}','\"\"','2015-11-03 07:46:08','Success'),(388,26,'vote_id_5638aca76aa0b','69.157.114.71','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[435],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-11-03 07:46:31','Success'),(389,26,'vote_id_5638b2d67eb6b','108.162.170.98','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[436],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2015-11-03 08:12:55','Success'),(390,26,'vote_id_5638b47832105','142.113.144.31','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[437],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-11-03 08:19:53','Success'),(391,26,'vote_id_5638c8c5d21d1','184.144.120.181','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[438],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-11-03 09:46:31','Success'),(392,26,'vote_id_5638ff72e58d5','184.145.30.118','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[439],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-11-03 13:39:48','Success'),(393,26,'vote_id_5639009051ce5','70.52.149.133','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[440],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-11-03 13:44:32','Success'),(394,26,'vote_id_5639023ef2a5e','173.206.78.173','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[441],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2015-11-03 13:51:44','Success'),(395,26,'vote_id_563902b23fba4','99.246.42.219','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[442],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-11-03 13:53:46','Success'),(396,26,'vote_id_563926abbc574','174.92.89.91','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[443],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-11-03 16:27:09','Success'),(397,27,'vote_id_563926cfd9d3b','174.92.89.91','0','anonymous','','{\"q-27\":{\"question\":\"AWAY NOV 6?\",\"id\":27,\"a\":[444],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2015-11-03 16:27:44','Success'),(398,26,'vote_id_563939346ca72','108.63.197.82','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[445],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-11-03 17:46:14','Success'),(399,26,'vote_id_56393a355a85f','184.144.148.197','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[446],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-11-03 17:50:29','Success'),(400,26,'vote_id_563940ac1eb0a','99.245.243.252','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[447],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2015-11-03 18:18:04','Success'),(401,26,'vote_id_563a0345744a2','67.230.128.91','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[448],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-11-04 08:08:22','Success'),(402,26,'vote_id_563a0fff6bada','174.95.186.84','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[449],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2015-11-04 09:02:41','Success'),(403,26,'vote_id_563a87a6094ec','184.145.42.73','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[450],\"answers\":[\"Susan ny\"],\"cf\":[]}}','\"\"','2015-11-04 17:33:11','Success'),(404,26,'vote_id_563ac86e7185e','99.248.98.53','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[451],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-11-04 22:09:35','Success'),(405,26,'vote_id_563b2e1c20a28','206.47.14.34','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[452],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-11-05 05:23:25','Success'),(406,26,'vote_id_563b58c9038e9','99.246.119.165','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[453],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2015-11-05 08:25:30','Success'),(407,26,'vote_id_563bad1934844','99.240.162.239','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[454],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-11-05 14:25:15','Success'),(408,27,'vote_id_563bb1420f0db','70.52.160.196','0','anonymous','','{\"q-27\":{\"question\":\"AWAY NOV 6?\",\"id\":27,\"a\":[455],\"answers\":[\"Penny...knee not up to it\"],\"cf\":[]}}','\"\"','2015-11-05 14:43:00','Success'),(409,29,'vote_id_563d218417c84','173.206.14.75','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[458],\"answers\":[\"Jo-Ann H.  I will buy one for sure (at $36.90) but if there are 100 orders I will buy 3 .\"],\"cf\":[]}}','\"\"','2015-11-06 16:54:13','Success'),(410,29,'vote_id_563d23f166dff','173.206.14.75','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[459],\"answers\":[\"Jo-Ann H, and I would take 2 if we have 50 or more orders.\"],\"cf\":[]}}','\"\"','2015-11-06 17:04:37','Success'),(411,29,'vote_id_563d265d94910','76.10.172.102','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[460],\"answers\":[\"Jennifer. I will buy one for sure and two if we have 50 or more orders.\"],\"cf\":[]}}','\"\"','2015-11-06 17:14:54','Success'),(412,29,'vote_id_563d2730e96dc','108.63.200.52','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[461],\"answers\":[\"Susan R. I will buy one for sure and two if we have 50 or more orders.\"],\"cf\":[]}}','\"\"','2015-11-06 17:18:25','Success'),(413,29,'vote_id_563d28148d93e','81.240.235.116','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[462],\"answers\":[\"Elaine Hall\\u00e9. I will buy 1 for sure and if we can sell 50, I will take 2.\"],\"cf\":[]}}','\"\"','2015-11-06 17:22:13','Success'),(414,29,'vote_id_563d28fc1ec3c','99.240.162.239','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[463],\"answers\":[\"Carol will buy 1 for sure & 2 if we\\\\\'re able to get an order of 50+\"],\"cf\":[]}}','\"\"','2015-11-06 17:26:04','Success'),(415,29,'vote_id_563d2c6b91245','99.240.231.193','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[464],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-11-06 17:40:44','Success'),(416,29,'vote_id_563d2cd97b2f3','99.240.231.193','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[465],\"answers\":[\"Janice Moe, Annemarieke put her name in. I am pretty sure she will want one but she cannot respond as she is in Chili at the moment\"],\"cf\":[]}}','\"\"','2015-11-06 17:42:33','Success'),(417,29,'vote_id_563d2f2037766','99.224.14.80','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[466],\"answers\":[\"Lyse I will buy 1.\"],\"cf\":[]}}','\"\"','2015-11-06 17:52:16','Success'),(418,29,'vote_id_563d3f9734fc6','99.246.66.128','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[467],\"answers\":[\"I will\"],\"cf\":[]}}','\"\"','2015-11-06 19:02:31','Success'),(419,29,'vote_id_563d44bb803ca','206.132.178.214','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[468],\"answers\":[\"Cyndy.  I will buy one for sure and two if we get more than 50.  If we get up to 100 I might take several more and use them as Xmas gifts - but only if we will have them before Xmas.\"],\"cf\":[]}}','\"\"','2015-11-06 19:24:28','Success'),(420,29,'vote_id_563d5f655a692','184.145.30.118','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[469],\"answers\":[\"Meryl will buy 1 for sure and 2 if we get over 50.\"],\"cf\":[]}}','\"\"','2015-11-06 21:18:14','Success'),(421,29,'vote_id_563dfe878c066','206.47.14.169','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[470],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-11-07 08:37:14','Success'),(422,29,'vote_id_563e08f63088b','99.240.227.203','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[471],\"answers\":[\"I will take 1 for sure\"],\"cf\":[]}}','\"\"','2015-11-07 09:21:53','Success'),(423,29,'vote_id_563e096aba359','99.240.227.203','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[457,472],\"answers\":[\"Write your name, how many buffs you would like and then hit SEND..\",\"Ingrid will take 1\"],\"cf\":[]}}','\"\"','2015-11-07 09:23:45','Success'),(424,29,'vote_id_563e62d440041','99.245.243.252','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[473],\"answers\":[\"Barbara will buy 1, 2 if we get over 50\"],\"cf\":[]}}','\"\"','2015-11-07 15:45:09','Success'),(425,29,'vote_id_563e6d6eba6aa','70.53.60.169','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[474],\"answers\":[\"Margaret McLaren 3\"],\"cf\":[]}}','\"\"','2015-11-07 16:30:23','Success'),(426,29,'vote_id_563e9c6b9f3e4','67.230.128.18','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[475],\"answers\":[\"Darlene will buy 1, 2 if we get over 50\"],\"cf\":[]}}','\"\"','2015-11-07 19:50:52','Success'),(427,29,'vote_id_5640a92308b9f','70.31.29.78','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[476],\"answers\":[\"Ila - one please\"],\"cf\":[]}}','\"\"','2015-11-09 09:09:42','Success'),(428,29,'vote_id_5640c8d607be4','184.148.30.147','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[477],\"answers\":[\"Penny. one for sure and two if we have 50 or more orders.\"],\"cf\":[]}}','\"\"','2015-11-09 11:24:54','Success'),(429,29,'vote_id_5640fb125927b','99.246.66.128','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[478],\"answers\":[\"Lou will take one.\"],\"cf\":[]}}','\"\"','2015-11-09 14:59:16','Success'),(430,29,'vote_id_5640fc37ca4c9','99.248.98.53','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[479],\"answers\":[\"Maggie - 1 or 2 (50+)\"],\"cf\":[]}}','\"\"','2015-11-09 15:04:09','Success'),(431,29,'vote_id_5641018444d4c','184.144.102.232','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[480],\"answers\":[\"Pauline: one please. Thanks very much!\"],\"cf\":[]}}','\"\"','2015-11-09 15:26:45','Success'),(432,29,'vote_id_56410585c9f76','184.144.102.232','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[481],\"answers\":[\"Joanne B would like just one please. Thanks!\"],\"cf\":[]}}','\"\"','2015-11-09 15:43:50','Success'),(433,29,'vote_id_56413143e15c7','76.66.86.43','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[482],\"answers\":[\"Susan ny 1 for sure\"],\"cf\":[]}}','\"\"','2015-11-09 18:50:28','Success'),(434,29,'vote_id_56414fcc49dc1','99.246.71.56','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[483],\"answers\":[\"Pat -1 please and 2 if over 50\"],\"cf\":[]}}','\"\"','2015-11-09 21:00:45','Success'),(435,31,'vote_id_564394eded486','108.63.192.84','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[487],\"answers\":[\"Jo-Ann H and med balls\"],\"cf\":[]}}','\"\"','2015-11-11 14:20:16','Success'),(436,31,'vote_id_5643962c25dd7','70.31.29.78','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[488],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-11-11 14:25:34','Success'),(437,31,'vote_id_5643993e7c2ce','99.246.66.128','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[489],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-11-11 14:38:39','Success'),(438,31,'vote_id_56439956ad735','108.63.193.110','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[490],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-11-11 14:39:03','Success'),(439,31,'vote_id_5643a2c2ba804','184.145.30.118','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[491],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-11-11 15:19:15','Success'),(440,31,'vote_id_5643a4107d19c','99.240.231.193','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[492],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-11-11 15:24:49','Success'),(441,32,'vote_id_5643a9dc6cd46','76.10.172.128','0','anonymous','','{\"q-32\":{\"question\":\"AWAY NOV 13?\",\"id\":32,\"a\":[493],\"answers\":[\"Jennifer :(\"],\"cf\":[]}}','\"\"','2015-11-11 15:49:32','Success'),(442,32,'vote_id_5643ad09463f2','198.103.184.76','0','anonymous','','{\"q-32\":{\"question\":\"AWAY NOV 13?\",\"id\":32,\"a\":[494],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2015-11-11 16:03:06','Success'),(443,31,'vote_id_5643b60dc0641','99.240.162.239','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[495],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-11-11 16:41:35','Success'),(444,31,'vote_id_5643ba8dac816','70.54.57.86','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[496],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-11-11 17:00:47','Success'),(445,31,'vote_id_5643bb2abfc71','69.196.186.179','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[497],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-11-11 17:03:23','Success'),(446,32,'vote_id_5643c04d900ba','67.230.128.70','0','anonymous','','{\"q-32\":{\"question\":\"AWAY NOV 13?\",\"id\":32,\"a\":[498],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-11-11 17:25:20','Success'),(447,31,'vote_id_5643c17addb44','108.63.182.17','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[499],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2015-11-11 17:30:21','Success'),(448,31,'vote_id_5643ce0e70a85','206.132.178.214','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[500],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-11-11 18:23:58','Success'),(449,31,'vote_id_5643d344dae28','99.224.14.80','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[501],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2015-11-11 18:46:13','Success'),(450,31,'vote_id_5643daecf1ab4','65.93.201.147','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[502],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2015-11-11 19:18:53','Success'),(451,31,'vote_id_5643e4cd2b4ac','99.246.71.56','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[503],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-11-11 20:01:01','Success'),(452,31,'vote_id_5643f88a8d0cd','184.144.150.4','0','anonymous','','','\"\"','2015-11-11 21:25:14','No answer selected for question 1'),(453,31,'vote_id_5643f8976f362','184.144.150.4','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[504],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-11-11 21:25:28','Success'),(454,31,'vote_id_564413ce9058b','206.47.101.57','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[505],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-11-11 23:21:35','Success'),(455,31,'vote_id_56448e2986482','99.240.235.17','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[506],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-11-12 08:03:38','Success'),(456,29,'vote_id_5644a5f2280fb','70.26.234.172','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[507],\"answers\":[\"Ellie - one please\"],\"cf\":[]}}','\"\"','2015-11-12 09:45:07','Success'),(457,31,'vote_id_5644aeaf415ab','70.54.61.248','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[508],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-11-12 10:22:26','Success'),(458,31,'vote_id_5644b347a6ff4','70.26.29.41','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[509],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-11-12 10:42:00','Success'),(459,31,'vote_id_5644d4685c48a','184.148.30.202','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[510],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-11-12 13:03:24','Success'),(460,31,'vote_id_5644ef917e7f0','99.248.98.53','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[511],\"answers\":[\"Maggie - Will be quite late so will start on my own once there\"],\"cf\":[]}}','\"\"','2015-11-12 14:59:14','Success'),(461,31,'vote_id_56454a3dbb4d5','99.245.243.252','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[512],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2015-11-12 21:26:07','Success'),(462,31,'vote_id_56455fe2c0c61','184.144.102.232','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[513],\"answers\":[\"Pauline\"],\"cf\":[]}}','\"\"','2015-11-12 22:58:30','Success'),(463,29,'vote_id_5645c0ddd6396','65.93.201.147','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[514],\"answers\":[\"Linda x1\"],\"cf\":[]}}','\"\"','2015-11-13 05:52:15','Success'),(464,31,'vote_id_5645fd0ae7d11','137.122.64.25','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[485,515],\"answers\":[\"Write your NAME, hit SEND\",\"Gail\"],\"cf\":[]}}','\"\"','2015-11-13 10:08:59','Success'),(465,31,'vote_id_564606ee339f4','99.246.119.165','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[516],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2015-11-13 10:51:11','Success'),(466,29,'vote_id_564647519cabe','99.240.235.17','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[517],\"answers\":[\"Liz S one please\"],\"cf\":[]}}','\"\"','2015-11-13 15:25:54','Success'),(467,28,'vote_id_564660b80fbff','173.206.14.75','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[548],\"answers\":[\"Jo-Ann H - tuque\"],\"cf\":[]}}','\"\"','2015-11-13 17:14:16','Success'),(468,28,'vote_id_564678dad851a','99.224.14.80','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[549],\"answers\":[\"Lyse tuque and jacket\"],\"cf\":[]}}','\"\"','2015-11-13 18:57:15','Success'),(469,29,'vote_id_564693a4050e9','69.196.186.179','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[550],\"answers\":[\"Anne- one please\"],\"cf\":[]}}','\"\"','2015-11-13 20:51:33','Success'),(470,29,'vote_id_5646bb5898f99','184.144.102.232','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[551],\"answers\":[\"Pauline will order a second buff for Cary Willis. Thanks!\"],\"cf\":[]}}','\"\"','2015-11-13 23:40:57','Success'),(471,29,'vote_id_56475ddfa08f5','99.246.119.165','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[552],\"answers\":[\"Sandra-will order 1\"],\"cf\":[]}}','\"\"','2015-11-14 11:14:25','Success'),(472,29,'vote_id_56488d478c07f','99.224.14.80','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[553],\"answers\":[\"Lyse I will order one more\"],\"cf\":[]}}','\"\"','2015-11-15 08:48:56','Success'),(473,28,'vote_id_564893e289060','76.66.86.43','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[554],\"answers\":[\"Susan NY tuque and jacket\"],\"cf\":[]}}','\"\"','2015-11-15 09:17:07','Success'),(474,28,'vote_id_56491baacec08','70.31.29.78','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[555],\"answers\":[\"Ila jacket - not sure of size until I try them on\"],\"cf\":[]}}','\"\"','2015-11-15 18:56:27','Success'),(475,34,'vote_id_56492f85ea694','173.206.14.75','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[558],\"answers\":[\"Jo-Ann, her weights, mat, poles and med balls.\"],\"cf\":[]}}','\"\"','2015-11-15 20:21:11','Success'),(476,28,'vote_id_56492faf75eb7','67.230.128.42','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[559],\"answers\":[\"Darlene - tuque\"],\"cf\":[]}}','\"\"','2015-11-15 20:21:51','Success'),(477,29,'vote_id_564a19aab97af','173.206.14.75','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[560],\"answers\":[\"Cary, 1\"],\"cf\":[]}}','\"\"','2015-11-16 13:00:12','Success'),(478,29,'vote_id_564a4ddeeedcd','70.54.61.248','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[561],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-11-16 16:42:55','Success'),(479,34,'vote_id_564a4e55adcf3','70.54.61.248','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[562],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-11-16 16:44:54','Success'),(480,34,'vote_id_564a5d01794f8','70.54.57.86','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[563],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-11-16 17:47:30','Success'),(481,34,'vote_id_564a70be9e882','173.177.227.6','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[564],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2015-11-16 19:11:43','Success'),(482,29,'vote_id_564a735d2be7a','173.206.14.75','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[565],\"answers\":[\"Judy O.    1 buff (ordered by Jo-Ann)\"],\"cf\":[]}}','\"\"','2015-11-16 19:22:53','Success'),(483,34,'vote_id_564a9cfe1dc1e','99.240.162.239','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[566],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-11-16 22:20:30','Success'),(484,34,'vote_id_564b2663aedfb','174.114.160.65','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[567],\"answers\":[\"Joanne B\"],\"cf\":[]}}','\"\"','2015-11-17 08:06:44','Success'),(485,34,'vote_id_564b8cdcdde6d','99.224.14.80','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[568],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2015-11-17 15:23:57','Success'),(486,34,'vote_id_564bcf22ef44b','173.206.4.234','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[569],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2015-11-17 20:06:44','Success'),(487,35,'vote_id_564bcf8c8fc33','184.144.150.4','0','anonymous','','{\"q-35\":{\"question\":\"Away Nov 20?\",\"id\":35,\"a\":[570],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-11-17 20:08:29','Success'),(488,35,'vote_id_564bedfd58b48','76.71.49.217','0','anonymous','','{\"q-35\":{\"question\":\"Away Nov 20?\",\"id\":35,\"a\":[557,571],\"answers\":[\"Write your NAME and a few words, hit SEND\",\"Susan my-away\"],\"cf\":[]}}','\"\"','2015-11-17 22:18:22','Success'),(489,28,'vote_id_564bee7dac2c7','76.71.49.217','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[554,572],\"answers\":[\"Susan NY tuque and jacket\",\"XS, woman\\\\\'s\"],\"cf\":[]}}','\"\"','2015-11-17 22:20:29','Success'),(490,34,'vote_id_564c6fa6ca1da','174.91.34.176','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[573],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-11-18 07:31:35','Success'),(491,34,'vote_id_564cea59d38a3','206.47.101.39','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[574],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-11-18 16:15:06','Success'),(492,34,'vote_id_564d0c4c306b2','70.29.54.182','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[575],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-11-18 18:39:56','Success'),(493,35,'vote_id_564d0f5067578','108.162.170.98','0','anonymous','','{\"q-35\":{\"question\":\"Away Nov 20?\",\"id\":35,\"a\":[576],\"answers\":[\"Jennifer - may attend. Waiting for a technician...\"],\"cf\":[]}}','\"\"','2015-11-18 18:52:50','Success'),(494,34,'vote_id_564d0fa076876','108.63.200.51','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[577],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-11-18 18:54:08','Success'),(495,34,'vote_id_564d11b60d52b','67.230.128.86','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[578],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-11-18 19:03:02','Success'),(496,34,'vote_id_564dbf4038249','99.240.235.17','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[579],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-11-19 07:23:30','Success'),(497,34,'vote_id_564dd57d5a5f8','70.31.29.78','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[580],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-11-19 08:58:21','Success'),(498,34,'vote_id_564de5b356b93','99.246.71.56','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[581],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-11-19 10:07:33','Success'),(499,34,'vote_id_564df022bdf07','206.132.178.78','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[582],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-11-19 10:52:04','Success'),(500,34,'vote_id_564dff7dda338','69.196.186.179','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[583],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-11-19 11:57:35','Success'),(501,34,'vote_id_564e12fb36bcd','70.26.234.172','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[584],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2015-11-19 13:20:44','Success'),(502,34,'vote_id_564e15884775c','99.248.98.53','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[585],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-11-19 13:31:37','Success'),(503,35,'vote_id_564e2dbd8fcf9','99.240.171.186','0','anonymous','','{\"q-35\":{\"question\":\"Away Nov 20?\",\"id\":35,\"a\":[557,586],\"answers\":[\"Write your NAME and a few words, hit SEND\",\"Gail\"],\"cf\":[]}}','\"\"','2015-11-19 15:14:55','Success'),(504,34,'vote_id_564e2f7c63a05','174.92.89.87','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[587],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-11-19 15:22:22','Success'),(505,34,'vote_id_564e31414fd80','99.246.66.128','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[588],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-11-19 15:29:55','Success'),(506,34,'vote_id_564e4021a2d4a','24.114.93.204','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[589],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2015-11-19 16:33:22','Success'),(507,28,'vote_id_564f9419f0cae','174.95.239.34','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[590],\"answers\":[\"Ellie  1 tuque- ladies small\"],\"cf\":[]}}','\"\"','2015-11-20 16:43:54','Success'),(508,28,'vote_id_5651c080d343f','99.245.243.252','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[591],\"answers\":[\"Barbara - jacket ladies small\"],\"cf\":[]}}','\"\"','2015-11-22 08:17:53','Success'),(509,28,'vote_id_5651dfc17acea','67.230.128.45','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[592],\"answers\":[\"Darlene - jacket\"],\"cf\":[]}}','\"\"','2015-11-22 10:31:14','Success'),(510,36,'vote_id_565256432b57e','173.206.14.75','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[595],\"answers\":[\"Jo-Ann and her STUFF\"],\"cf\":[]}}','\"\"','2015-11-22 18:56:51','Success'),(511,36,'vote_id_5653921ac34e2','76.71.238.36','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[596],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-11-23 17:24:27','Success'),(512,36,'vote_id_5653c92db180a','99.246.10.81','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[597],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-11-23 21:19:29','Success'),(513,36,'vote_id_5653dac1ce3ed','184.144.102.232','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[598],\"answers\":[\"Pauline\"],\"cf\":[]}}','\"\"','2015-11-23 22:34:27','Success'),(514,36,'vote_id_5654615f77199','206.47.100.82','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[599],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-11-24 08:08:52','Success'),(515,28,'vote_id_565461cc8ce11','206.47.100.82','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[600],\"answers\":[\"Fay - jacket - large & tuque\"],\"cf\":[]}}','\"\"','2015-11-24 08:10:36','Success'),(516,36,'vote_id_5654c5e6be7ca','108.63.135.220','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[601],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2015-11-24 15:17:48','Success'),(517,36,'vote_id_5654f7ed9276b','99.240.162.239','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[602],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-11-24 18:51:10','Success'),(518,36,'vote_id_56553ea5d84cf','199.119.233.213','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[603],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2015-11-24 23:53:11','Success'),(519,28,'vote_id_5655a78e3aa69','76.71.238.36','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[604],\"answers\":[\"Janey  -  tuque\"],\"cf\":[]}}','\"\"','2015-11-25 07:20:30','Success'),(520,37,'vote_id_5655b48b7f492','173.177.227.6','0','anonymous','','{\"q-37\":{\"question\":\"AWAY Nov 27?\",\"id\":37,\"a\":[605],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2015-11-25 08:15:58','Success'),(521,36,'vote_id_5655b6a97e764','99.240.171.186','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[593,606],\"answers\":[\"Write your NAME, click SEND\",\"Gail\"],\"cf\":[]}}','\"\"','2015-11-25 08:24:58','Success'),(522,36,'vote_id_5655c49a4560b','70.31.29.78','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[608],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-11-25 09:24:27','Success'),(523,36,'vote_id_5655c49a2d74a','108.162.170.98','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[607],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2015-11-25 09:24:27','Success'),(524,36,'vote_id_5655c5ef79eba','174.92.94.131','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[609],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-11-25 09:30:10','Success'),(525,36,'vote_id_5655c78f12bf7','108.63.192.222','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[610],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-11-25 09:37:03','Success'),(526,36,'vote_id_5655c81b171d0','99.248.98.53','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[611],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-11-25 09:39:23','Success'),(527,36,'vote_id_5655cff1a0276','99.246.71.56','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[612],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-11-25 10:12:50','Success'),(528,36,'vote_id_5655dcb7b9748','99.245.243.252','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[613],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2015-11-25 11:07:21','Success'),(529,36,'vote_id_5655efd999863','76.10.164.105','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[614],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-11-25 12:28:58','Success'),(530,36,'vote_id_5655fc65de846','70.29.54.182','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[615],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-11-25 13:22:30','Success'),(531,37,'vote_id_565616c88dc98','206.132.178.78','0','anonymous','','{\"q-37\":{\"question\":\"AWAY Nov 27?\",\"id\":37,\"a\":[616],\"answers\":[\"Cyndy cannot attend\"],\"cf\":[]}}','\"\"','2015-11-25 15:15:05','Success'),(532,36,'vote_id_56561c14dd36c','70.52.160.196','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[617],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-11-25 15:37:43','Success'),(533,36,'vote_id_56564030029df','204.101.156.53','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[618],\"answers\":[\"Fay -- I may be late\"],\"cf\":[]}}','\"\"','2015-11-25 18:11:45','Success'),(534,36,'vote_id_56564a958af6a','70.54.61.248','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[619],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-11-25 18:56:06','Success'),(535,36,'vote_id_56564bd65acd4','99.240.235.17','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[620],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-11-25 19:01:26','Success'),(536,36,'vote_id_56564c05e6e43','70.54.57.86','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[621],\"answers\":[\"margaret mclaren\"],\"cf\":[]}}','\"\"','2015-11-25 19:02:16','Success'),(537,36,'vote_id_56565e7832570','76.71.49.217','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[622],\"answers\":[\"Susan ny\"],\"cf\":[]}}','\"\"','2015-11-25 20:20:57','Success'),(538,36,'vote_id_56567564bfb13','65.93.201.147','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[623],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2015-11-25 21:58:47','Success'),(539,28,'vote_id_56567fb5dacad','70.54.57.86','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[624],\"answers\":[\"Margaret McLaren- Jacket\"],\"cf\":[]}}','\"\"','2015-11-25 22:42:46','Success'),(540,37,'vote_id_565698ba24584','174.114.160.65','0','anonymous','','{\"q-37\":{\"question\":\"AWAY Nov 27?\",\"id\":37,\"a\":[625],\"answers\":[\"Joanne, still stuck with building plans.  Darn!\"],\"cf\":[]}}','\"\"','2015-11-26 00:29:30','Success'),(541,36,'vote_id_56571013ee8f7','174.95.187.91','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[626],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2015-11-26 08:58:45','Success'),(542,36,'vote_id_565710d5a4fbc','69.157.115.86','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[627],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-11-26 09:01:58','Success'),(543,28,'vote_id_565711910b987','70.54.57.86','0','anonymous','','','\"\"','2015-11-26 09:05:05','Run out of votes'),(544,28,'vote_id_565711a43544d','70.54.57.86','0','anonymous','','','\"\"','2015-11-26 09:05:24','Run out of votes'),(545,36,'vote_id_56571f500f712','67.230.128.90','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[628],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-11-26 10:03:44','Success'),(546,28,'vote_id_56571f5ac51e8','70.54.57.86','0','anonymous','','','\"\"','2015-11-26 10:03:54','Run out of votes'),(547,28,'vote_id_56571f66529ea','70.54.57.86','0','anonymous','','','\"\"','2015-11-26 10:04:06','Run out of votes'),(548,37,'vote_id_5657b8e516e82','199.7.157.75','0','anonymous','','{\"q-37\":{\"question\":\"AWAY Nov 27?\",\"id\":37,\"a\":[629],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2015-11-26 20:59:02','Success'),(549,37,'vote_id_565869e59d1be','99.246.119.165','0','anonymous','','{\"q-37\":{\"question\":\"AWAY Nov 27?\",\"id\":37,\"a\":[630],\"answers\":[\"Sandra-in Montreal!\"],\"cf\":[]}}','\"\"','2015-11-27 09:34:16','Success'),(550,38,'vote_id_565e13b2a1119','99.240.162.239','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[633],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-12-01 16:40:03','Success'),(551,38,'vote_id_565e13ee81bda','173.206.29.152','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[634],\"answers\":[\"Jo-Ann (will time the 6-6-6-6-6-6 group)\"],\"cf\":[]}}','\"\"','2015-12-01 16:41:03','Success'),(552,38,'vote_id_565e1764b45bb','70.29.54.182','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[635],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-12-01 16:55:49','Success'),(553,38,'vote_id_565e1765b7bbd','70.26.32.43','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[636],\"answers\":[\"Rosy - probably a bit late\"],\"cf\":[]}}','\"\"','2015-12-01 16:55:50','Success'),(554,38,'vote_id_565e1a6ae3df9','184.148.24.110','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[637],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-12-01 17:08:44','Success'),(555,38,'vote_id_565e1c0b9be77','99.224.14.80','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[638],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2015-12-01 17:15:40','Success'),(556,39,'vote_id_565e24c9d9097','205.250.156.84','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[639],\"answers\":[\"Anne - away hiking in BC\"],\"cf\":[]}}','\"\"','2015-12-01 17:52:58','Success'),(557,38,'vote_id_565e2c5b6a3f8','76.71.239.26','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[640],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-12-01 18:25:15','Success'),(558,39,'vote_id_565e2c807811a','76.71.239.26','0','anonymous','','','\"\"','2015-12-01 18:25:52','No answer selected for question 1'),(559,38,'vote_id_565e33030dd74','99.246.71.56','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[641],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-12-01 18:53:39','Success'),(560,38,'vote_id_565e6413ac8de','108.162.170.98','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[642],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2015-12-01 22:23:02','Success'),(561,38,'vote_id_565efc0b837b3','173.177.227.6','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[643],\"answers\":[\"Marie-France-I have a timer for intervals\"],\"cf\":[]}}','\"\"','2015-12-02 09:11:24','Success'),(562,38,'vote_id_565f052ce4f8c','99.246.119.165','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[644],\"answers\":[\"sandra\"],\"cf\":[]}}','\"\"','2015-12-02 09:50:22','Success'),(563,38,'vote_id_565f33aec66d7','99.248.98.53','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[645],\"answers\":[\"maggie - i can be a timer in my group\"],\"cf\":[]}}','\"\"','2015-12-02 13:08:47','Success'),(564,38,'vote_id_565f33c51a978','99.248.98.53','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[646],\"answers\":[\"maggie - i can be a timer in my group\"],\"cf\":[]}}','\"\"','2015-12-02 13:09:09','Success'),(565,38,'vote_id_565f39bbe0d33','108.63.200.32','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[647],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-12-02 13:34:36','Success'),(566,38,'vote_id_565f59678073c','99.246.10.81','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[648],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-12-02 15:49:44','Success'),(567,38,'vote_id_565f7c5911182','70.31.31.212','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[649],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-12-02 18:18:49','Success'),(568,38,'vote_id_565f9beb94178','99.245.243.252','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[650],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2015-12-02 20:33:32','Success'),(569,38,'vote_id_565ff2fbb26e7','206.47.116.4','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[651],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-12-03 02:45:00','Success'),(570,38,'vote_id_56603455a7662','99.240.235.17','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[652],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-12-03 07:23:50','Success'),(571,38,'vote_id_56603bddef5f1','70.53.63.242','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[653],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-12-03 07:55:58','Success'),(572,38,'vote_id_5660498a5aed6','65.93.201.170','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[654],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-12-03 08:54:20','Success'),(573,39,'vote_id_56608a690ec3b','108.63.193.16','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[655],\"answers\":[\"Susan R - Oops. Won\\\\\'t be there after all. Work.\"],\"cf\":[]}}','\"\"','2015-12-03 13:31:06','Success'),(574,38,'vote_id_566095e9dc01b','64.229.253.54','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[656],\"answers\":[\"SUsan o\"],\"cf\":[]}}','\"\"','2015-12-03 14:20:10','Success'),(575,38,'vote_id_566096082268c','64.229.253.54','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[657],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-12-03 14:20:40','Success'),(576,39,'vote_id_5660a092c0639','70.52.160.196','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[658],\"answers\":[\"Penny...more oops.  Can\\\\\'t make it...injured:-(\"],\"cf\":[]}}','\"\"','2015-12-03 15:05:39','Success'),(577,39,'vote_id_5660ae9ee9849','174.95.187.91','0','anonymous','','','\"\"','2015-12-03 16:05:34','No answer selected for question 1'),(578,39,'vote_id_5660aeabc16d4','174.95.187.91','0','anonymous','','','\"\"','2015-12-03 16:05:47','No answer selected for question 1'),(579,39,'vote_id_5660aeeba3270','174.95.187.91','0','anonymous','','','\"\"','2015-12-03 16:06:51','No answer selected for question 1'),(580,39,'vote_id_5660af0b09fa1','174.95.187.91','0','anonymous','','','\"\"','2015-12-03 16:07:23','No answer selected for question 1'),(581,39,'vote_id_5660af42f1ffc','174.95.187.91','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[659],\"answers\":[\"Ellie- getting over the flu. Damn!\"],\"cf\":[]}}','\"\"','2015-12-03 16:08:19','Success'),(582,39,'vote_id_5660c0f4adcb6','99.246.119.165','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[660],\"answers\":[\"Sandra- another oops--I injured my foot--\"],\"cf\":[]}}','\"\"','2015-12-03 17:23:49','Success'),(583,39,'vote_id_5660c169de167','70.31.31.212','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[661],\"answers\":[\"Ila - yet more ooops - surprise daughter visit\"],\"cf\":[]}}','\"\"','2015-12-03 17:25:46','Success'),(584,38,'vote_id_5660f8609ce76','99.240.231.193','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[662],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2015-12-03 21:20:17','Success'),(585,38,'vote_id_5660f8cce24e8','99.240.231.193','0','anonymous','','','\"\"','2015-12-03 21:22:04','Run out of votes'),(586,38,'vote_id_5660f8dfa5b44','99.240.231.193','0','anonymous','','','\"\"','2015-12-03 21:22:23','Run out of votes'),(587,38,'vote_id_5660f8f76a5ad','99.240.231.193','0','anonymous','','','\"\"','2015-12-03 21:22:47','Run out of votes'),(588,38,'vote_id_5660f9136ae2d','99.240.231.193','0','anonymous','','','\"\"','2015-12-03 21:23:15','Run out of votes'),(589,38,'vote_id_5660f9506bfb7','99.240.231.193','0','anonymous','','','\"\"','2015-12-03 21:24:16','Run out of votes'),(590,38,'vote_id_5660f9ad46dff','99.240.231.193','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[663],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-12-03 21:25:50','Success'),(591,38,'vote_id_566105b9ee405','99.246.66.128','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[664],\"answers\":[\"Mary Lou\"],\"cf\":[]}}','\"\"','2015-12-03 22:17:14','Success'),(592,38,'vote_id_5661852f83f8e','137.122.64.81','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[665],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2015-12-04 07:21:04','Success'),(593,38,'vote_id_56618a5030af7','173.206.37.201','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[666],\"answers\":[\"julie\"],\"cf\":[]}}','\"\"','2015-12-04 07:42:56','Success'),(594,39,'vote_id_5661a6a0b5118','99.248.98.53','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[667],\"answers\":[\"Maggie-won\\\\\'t make it today\"],\"cf\":[]}}','\"\"','2015-12-04 09:43:46','Success'),(595,39,'vote_id_5661b4d29e5af','76.71.49.217','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[668],\"answers\":[\"Susan ny\"],\"cf\":[]}}','\"\"','2015-12-04 10:44:20','Success'),(596,40,'vote_id_5666c1aa87de9','173.206.19.202','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[671],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2015-12-08 06:40:27','Success'),(597,40,'vote_id_5666cba306099','99.224.14.80','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[672],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2015-12-08 07:22:59','Success'),(598,40,'vote_id_5666cf4655464','76.71.239.26','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[673],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-12-08 07:38:30','Success'),(599,40,'vote_id_5666db17bac92','108.63.200.65','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[674],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-12-08 08:28:57','Success'),(600,40,'vote_id_5666e80058911','108.162.170.98','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[675],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2015-12-08 09:24:01','Success'),(601,41,'vote_id_5666ef0d0ab5a','173.177.227.6','0','anonymous','','{\"q-41\":{\"question\":\"AWAY on DEC 11?\",\"id\":41,\"a\":[676],\"answers\":[\"Marie-France busy with retirement procedures\"],\"cf\":[]}}','\"\"','2015-12-08 09:54:05','Success'),(602,40,'vote_id_56670bf475f26','99.240.231.193','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[677],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-12-08 11:57:25','Success'),(603,40,'vote_id_5667337569321','174.92.94.136','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[678],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-12-08 14:45:58','Success'),(604,40,'vote_id_5667519660b56','192.171.38.243','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[679],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-12-08 16:54:32','Success'),(605,40,'vote_id_56675475cc341','173.206.29.152','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[680],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-12-08 17:06:46','Success'),(606,40,'vote_id_566758c6582ac','99.246.71.56','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[681],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-12-08 17:25:14','Success'),(607,41,'vote_id_56675cedba81b','70.31.31.212','0','anonymous','','{\"q-41\":{\"question\":\"AWAY on DEC 11?\",\"id\":41,\"a\":[682],\"answers\":[\"Ila - can\\\\\'t make it this week\"],\"cf\":[]}}','\"\"','2015-12-08 17:42:54','Success'),(608,40,'vote_id_56676e8a720f2','206.47.94.157','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[683],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-12-08 18:58:04','Success'),(609,41,'vote_id_5668280a37f11','99.240.235.17','0','anonymous','','{\"q-41\":{\"question\":\"AWAY on DEC 11?\",\"id\":41,\"a\":[684],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-12-09 08:09:31','Success'),(610,41,'vote_id_566831d03f02f','99.246.119.165','0','anonymous','','{\"q-41\":{\"question\":\"AWAY on DEC 11?\",\"id\":41,\"a\":[685],\"answers\":[\"Sandra- injured foot\"],\"cf\":[]}}','\"\"','2015-12-09 08:51:13','Success'),(611,40,'vote_id_56688cdbc6aaa','64.229.253.54','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[686],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-12-09 15:19:40','Success'),(612,41,'vote_id_5668943ab2247','70.52.160.196','0','anonymous','','{\"q-41\":{\"question\":\"AWAY on DEC 11?\",\"id\":41,\"a\":[687],\"answers\":[\"Penny. Toe still too tender :-(\"],\"cf\":[]}}','\"\"','2015-12-09 15:51:07','Success'),(613,40,'vote_id_56689fc659790','70.29.54.182','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[688],\"answers\":[\"MERYL\"],\"cf\":[]}}','\"\"','2015-12-09 16:40:23','Success'),(614,40,'vote_id_5668a98998cfc','184.144.122.31','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[689],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-12-09 17:22:02','Success'),(615,40,'vote_id_5668bcf719e76','65.93.201.170','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[690],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-12-09 18:44:55','Success'),(616,40,'vote_id_5668eb9a1aae4','99.240.162.239','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[691],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-12-09 22:03:55','Success'),(617,40,'vote_id_5668f68196f81','99.248.98.53','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[692],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-12-09 22:50:26','Success'),(618,40,'vote_id_5669abf45571a','99.246.66.128','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[693],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-12-10 11:44:37','Success'),(619,40,'vote_id_5669c5319f243','99.246.10.81','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[694],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-12-10 13:32:18','Success'),(620,40,'vote_id_5669d77b9d497','67.230.128.76','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[695],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-12-10 14:50:20','Success'),(621,40,'vote_id_5669f343595eb','173.177.227.6','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[696],\"answers\":[\"Marie-France will be in. please delete absence below due to change of plans. sorry for any inconveniences\"],\"cf\":[]}}','\"\"','2015-12-10 16:48:55','Success'),(622,41,'vote_id_566a0ca86da2d','99.224.14.80','0','anonymous','','{\"q-41\":{\"question\":\"AWAY on DEC 11?\",\"id\":41,\"a\":[670,697],\"answers\":[\"Write your name and a few words, hit send.\",\"Lyse, not sure. Have to move my mom from the hospital.\"],\"cf\":[]}}','\"\"','2015-12-10 18:37:13','Success'),(623,40,'vote_id_566a285012a7e','99.240.231.193','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[698],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2015-12-10 20:35:15','Success'),(624,40,'vote_id_566a2b6a91e21','99.240.171.186','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[699],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2015-12-10 20:48:27','Success'),(625,40,'vote_id_566af38e22a08','24.114.94.159','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[700],\"answers\":[\"Pauline -- may be late\"],\"cf\":[]}}','\"\"','2015-12-11 11:02:23','Success'),(626,40,'vote_id_566b3e43873ed','76.69.154.126','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[701],\"answers\":[\"Susan ny came\"],\"cf\":[]}}','\"\"','2015-12-11 16:21:08','Success'),(627,42,'vote_id_566d6dcc17a8e','206.47.31.229','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[705],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-12-13 08:08:29','Success'),(628,42,'vote_id_5670ab8d62b48','108.63.158.57','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[706],\"answers\":[\"Jo-Ann - could start at 11:00 or 11:55.\"],\"cf\":[]}}','\"\"','2015-12-15 19:08:46','Success'),(629,42,'vote_id_5670becd4db7a','70.31.31.212','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[707],\"answers\":[\"Ila - can start at 11:00 or 11:55\"],\"cf\":[]}}','\"\"','2015-12-15 20:30:53','Success'),(630,42,'vote_id_5670bf643ca09','99.224.14.80','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[708],\"answers\":[\"Lyse- Will start at 11:00\"],\"cf\":[]}}','\"\"','2015-12-15 20:33:26','Success'),(631,42,'vote_id_5670bfd7cea4f','108.63.200.114','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[709],\"answers\":[\"Susan Riley: Can start at either time.\"],\"cf\":[]}}','\"\"','2015-12-15 20:35:20','Success'),(632,42,'vote_id_5670c73b01202','69.158.170.209','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[710],\"answers\":[\"Rosy - Will start at 11:55.\"],\"cf\":[]}}','\"\"','2015-12-15 21:06:51','Success'),(633,42,'vote_id_5670d3da80e14','99.246.71.56','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[711],\"answers\":[\"Pat - either time\"],\"cf\":[]}}','\"\"','2015-12-15 22:00:44','Success'),(634,42,'vote_id_5670d6045ca53','108.162.170.98','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[712],\"answers\":[\"Jennifer (can start at either time)\"],\"cf\":[]}}','\"\"','2015-12-15 22:09:59','Success'),(635,44,'vote_id_5670d68b3ba11','184.148.17.120','0','anonymous','','{\"q-44\":{\"question\":\"Away December 18?\",\"id\":44,\"a\":[713],\"answers\":[\"Penny-toes and knee not co-operating...sorry\"],\"cf\":[]}}','\"\"','2015-12-15 22:12:13','Success'),(636,42,'vote_id_5670dcd09804f','108.63.158.57','0','anonymous','','','\"\"','2015-12-15 22:38:56','Run out of votes'),(637,42,'vote_id_5671558a1da19','99.240.171.186','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[714],\"answers\":[\"Gail - Will start at 11:55\"],\"cf\":[]}}','\"\"','2015-12-16 07:14:03','Success'),(638,42,'vote_id_567157088b857','184.144.150.232','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[715],\"answers\":[\"Janey can start early\"],\"cf\":[]}}','\"\"','2015-12-16 07:20:26','Success'),(639,42,'vote_id_567157ff1ccf4','173.206.3.55','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[716],\"answers\":[\"Julie - not sure yet if i can attend but if so, then later start\"],\"cf\":[]}}','\"\"','2015-12-16 07:24:32','Success'),(640,42,'vote_id_5671644490f89','142.113.157.26','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[717],\"answers\":[\"Liz R can start either time\"],\"cf\":[]}}','\"\"','2015-12-16 08:16:53','Success'),(641,42,'vote_id_5671772264086','64.229.253.54','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[718],\"answers\":[\"Susan o 11:00\"],\"cf\":[]}}','\"\"','2015-12-16 09:37:23','Success'),(642,42,'vote_id_5671ac8d4741d','173.177.227.6','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[719],\"answers\":[\"Marie-France later start\"],\"cf\":[]}}','\"\"','2015-12-16 13:25:18','Success'),(643,42,'vote_id_5671d13e94199','206.47.31.229','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[705,720],\"answers\":[\"Fay\",\"Fay - I\\\\\'ll be late - don\\\\\'t wait for me either time. I\\\\\'ll head up when I can.\"],\"cf\":[]}}','\"\"','2015-12-16 16:01:52','Success'),(644,42,'vote_id_5671f2f109e1e','76.69.120.92','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[721],\"answers\":[\"Margaret McLaren at 11:55\"],\"cf\":[]}}','\"\"','2015-12-16 18:25:37','Success'),(645,42,'vote_id_5671fbe3cf3b9','99.246.10.81','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[722],\"answers\":[\"Janice 11:00\"],\"cf\":[]}}','\"\"','2015-12-16 19:03:48','Success'),(646,42,'vote_id_567206916ed04','99.240.231.193','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[723],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-12-16 19:49:22','Success'),(647,42,'vote_id_567285b2ba0e1','142.113.157.31','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[724],\"answers\":[\"Linda 11:55\"],\"cf\":[]}}','\"\"','2015-12-17 04:51:47','Success'),(648,42,'vote_id_5672e3991ff0a','67.230.128.15','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[725],\"answers\":[\"Darlene - can start either time\"],\"cf\":[]}}','\"\"','2015-12-17 11:32:25','Success'),(649,42,'vote_id_567301a9b51f2','99.240.162.239','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[726],\"answers\":[\"Carol 11:00\"],\"cf\":[]}}','\"\"','2015-12-17 13:40:42','Success'),(650,42,'vote_id_5673319508e96','99.246.66.128','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[727],\"answers\":[\"Lou  Thought I had answered this  I will be there at 11:55.\"],\"cf\":[]}}','\"\"','2015-12-17 17:05:09','Success'),(651,42,'vote_id_567337769ff0d','174.95.187.91','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[728],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2015-12-17 17:30:15','Success'),(652,42,'vote_id_56734861756f8','99.240.235.17','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[729],\"answers\":[\"Liz S at 11:55\"],\"cf\":[]}}','\"\"','2015-12-17 18:42:26','Success'),(653,42,'vote_id_567354c0da585','199.7.157.5','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[730],\"answers\":[\"Maggie 11:55\"],\"cf\":[]}}','\"\"','2015-12-17 19:35:15','Success'),(654,42,'vote_id_56736cbea9fbc','70.29.54.182','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[731],\"answers\":[\"Meryl 11:00\"],\"cf\":[]}}','\"\"','2015-12-17 21:17:35','Success'),(655,44,'vote_id_567373cde0966','99.246.119.165','0','anonymous','','{\"q-44\":{\"question\":\"Away December 18?\",\"id\":44,\"a\":[732],\"answers\":[\"Sandra--still out with an injured foot!-- Merry Christmas and seasons greetings to all of you!\"],\"cf\":[]}}','\"\"','2015-12-17 21:47:44','Success'),(656,42,'vote_id_56737f2dc68c6','184.175.8.89','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[733],\"answers\":[\"Anne- not sure if I can make. Will head up on my own if I do. Merry Christmas to you all  if I miss out on the fun!\"],\"cf\":[]}}','\"\"','2015-12-17 22:36:15','Success'),(657,44,'vote_id_5673f6559f759','76.69.154.126','0','anonymous','','{\"q-44\":{\"question\":\"Away December 18?\",\"id\":44,\"a\":[734],\"answers\":[\"Susan ny last day before holiday so have to work :(\"],\"cf\":[]}}','\"\"','2015-12-18 07:04:38','Success'),(658,42,'vote_id_5673fdced8323','99.245.243.252','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[735],\"answers\":[\"Barbara attending. not sure what time time yet, depends on my driver :)\"],\"cf\":[]}}','\"\"','2015-12-18 07:36:31','Success'),(659,44,'vote_id_56741739c6605','99.240.231.193','0','anonymous','','{\"q-44\":{\"question\":\"Away December 18?\",\"id\":44,\"a\":[736],\"answers\":[\"Cary - I have last minute doctor\\\\\'s appointment -- have a wonderful Christmas everyone!\"],\"cf\":[]}}','\"\"','2015-12-18 09:24:58','Success'),(660,45,'vote_id_568a935edb7b7','108.63.158.57','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 Classic Refresher and Classic Continues\",\"id\":45,\"a\":[738],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2016-01-04 10:44:31','Success'),(661,47,'vote_id_568a960f40946','108.63.158.57','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI 12:00 to 2:00\",\"id\":47,\"a\":[742],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2016-01-04 10:56:00','Success'),(662,45,'vote_id_568aa540438d7','173.34.159.176','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER & CLASSIC CONTINUES\",\"id\":45,\"a\":[743],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-01-04 12:00:51','Success'),(663,46,'vote_id_568aa56f32e48','174.92.84.126','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC CONTINUES at  12:00\",\"id\":46,\"a\":[744],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2016-01-04 12:01:47','Success'),(664,47,'vote_id_568adc1694b35','184.144.137.196','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI 12:00 to 2:00\",\"id\":47,\"a\":[745],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2016-01-04 15:54:47','Success'),(665,45,'vote_id_568ae3cbe10eb','99.224.14.80','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER & CLASSIC CONTINUES\",\"id\":45,\"a\":[737,746],\"answers\":[\"Write NAME and hit SEND\",\"Lyse\"],\"cf\":[]}}','\"\"','2016-01-04 16:27:40','Success'),(666,46,'vote_id_568ae3db7cf0f','99.224.14.80','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC CONTINUES at  12:00\",\"id\":46,\"a\":[747],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-01-04 16:27:57','Success'),(667,47,'vote_id_568ae3e863222','99.224.14.80','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI 12:00 to 2:00\",\"id\":47,\"a\":[748],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-01-04 16:28:08','Success'),(668,45,'vote_id_568ae7ac3a187','64.229.253.54','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER & CLASSIC CONTINUES\",\"id\":45,\"a\":[749],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2016-01-04 16:44:12','Success'),(669,47,'vote_id_568ae7bdad406','64.229.253.54','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI 12:00 to 2:00\",\"id\":47,\"a\":[750],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2016-01-04 16:44:31','Success'),(670,47,'vote_id_568ae8ea27f7f','69.158.15.97','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI 12:00 to 2:00\",\"id\":47,\"a\":[751],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2016-01-04 16:49:33','Success'),(671,47,'vote_id_568af1004c12e','99.246.71.56','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI 12:00 to 2:00\",\"id\":47,\"a\":[752],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2016-01-04 17:24:00','Success'),(672,45,'vote_id_568af3dea6816','173.0.204.130','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER & CLASSIC CONTINUES\",\"id\":45,\"a\":[753],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2016-01-04 17:36:15','Success'),(673,46,'vote_id_568aff7760107','23.91.135.38','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC CONTINUES at  12:00\",\"id\":46,\"a\":[739,754],\"answers\":[\"Write NAME and hit SEND\",\"Anne\"],\"cf\":[]}}','\"\"','2016-01-04 18:25:44','Success'),(674,45,'vote_id_568b29930f1e5','184.151.246.75','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[756],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2016-01-04 21:25:23','Success'),(675,46,'vote_id_568bcb471526b','206.132.178.43','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[757],\"answers\":[\"Cyndy - I have an eye appointment at 10:30 in Orleans so I may be late for the noon session but I will try and find you.  Any idea which trail the blue group will be on?\"],\"cf\":[]}}','\"\"','2016-01-05 08:55:20','Success'),(676,45,'vote_id_568bccad5340f','174.95.237.22','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[758],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-01-05 09:01:18','Success'),(677,46,'vote_id_568bccd734d7c','174.95.237.22','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[759],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-01-05 09:02:00','Success'),(678,46,'vote_id_568be9245e62a','99.246.66.128','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[760],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2016-01-05 11:02:46','Success'),(679,45,'vote_id_568c3d891a3bf','184.148.18.195','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[761],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-01-05 17:02:51','Success'),(680,46,'vote_id_568c3da2d5a16','184.148.18.195','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[762],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-01-05 17:03:15','Success'),(681,45,'vote_id_568c45c1be5ea','99.240.235.17','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[763],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2016-01-05 17:37:55','Success'),(682,46,'vote_id_568c45ccb5f52','99.240.235.17','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[764],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2016-01-05 17:38:05','Success'),(683,47,'vote_id_568c53d4e2c95','108.63.130.55','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[765],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2016-01-05 18:37:57','Success'),(684,45,'vote_id_568c751bcebd4','99.240.231.193','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[766],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2016-01-05 20:59:56','Success'),(685,45,'vote_id_568d47d969078','99.246.30.245','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[767],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2016-01-06 11:59:06','Success'),(686,47,'vote_id_568d47eb49717','99.246.30.245','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[768],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2016-01-06 11:59:24','Success'),(687,45,'vote_id_568d71ae2c34c','69.157.115.144','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[769],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2016-01-06 14:57:35','Success'),(688,45,'vote_id_568d907963787','70.55.25.217','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[770],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-01-06 17:08:59','Success'),(689,47,'vote_id_568d909d1086c','70.55.25.217','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[771],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-01-06 17:09:33','Success'),(690,47,'vote_id_568dad9788eae','67.230.128.37','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[772],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2016-01-06 19:13:12','Success'),(691,45,'vote_id_568dce45b7d61','76.69.154.126','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[773],\"answers\":[\"susan ny\"],\"cf\":[]}}','\"\"','2016-01-06 21:32:39','Success'),(692,47,'vote_id_568e74c38407c','206.47.116.14','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[774],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2016-01-07 09:23:00','Success'),(693,47,'vote_id_568e77c20de63','108.63.196.219','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[775],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2016-01-07 09:35:49','Success'),(694,45,'vote_id_568e7d46e4ccf','64.229.253.54','0','anonymous','','','\"\"','2016-01-07 09:59:18','Run out of votes'),(695,45,'vote_id_568e7d4c7e531','64.229.253.54','0','anonymous','','','\"\"','2016-01-07 09:59:24','Run out of votes'),(696,46,'vote_id_568e8572e19fc','70.55.25.217','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[776],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-01-07 10:34:12','Success'),(697,47,'vote_id_568ec1c700aa2','99.248.98.53','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[777],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2016-01-07 14:51:36','Success'),(698,46,'vote_id_568eea78d4b4d','99.224.14.80','0','anonymous','','','\"\"','2016-01-07 17:45:12','Run out of votes'),(699,48,'vote_id_568f132334ad6','69.158.172.115','0','anonymous','','{\"q-48\":{\"question\":\"WILL BE AWAY\",\"id\":48,\"a\":[778],\"answers\":[\"Rosy - Sorry, at the last minute, I can\\\\\'t make it!\"],\"cf\":[]}}','\"\"','2016-01-07 20:38:43','Success'),(700,47,'vote_id_568f1fc7ac47b','99.246.10.81','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[779],\"answers\":[\"Janice Moe\"],\"cf\":[]}}','\"\"','2016-01-07 21:32:40','Success'),(701,46,'vote_id_568fbba5e1111','99.246.134.29','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[780],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2016-01-08 08:37:42','Success'),(702,47,'vote_id_568fbbda45cdb','173.34.159.176','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[781],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-01-08 08:38:34','Success'),(703,47,'vote_id_568fc315cbd27','174.95.237.22','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[782],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-01-08 09:09:27','Success'),(704,45,'vote_id_568fc5587df6e','70.31.28.47','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[783],\"answers\":[\"pauline\"],\"cf\":[]}}','\"\"','2016-01-08 09:19:05','Success'),(705,46,'vote_id_568fc56e6da0e','70.31.28.47','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[784],\"answers\":[\"pauline\"],\"cf\":[]}}','\"\"','2016-01-08 09:19:26','Success'),(706,49,'vote_id_5696a515f39f2','184.144.140.21','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[787],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2016-01-13 14:27:19','Success'),(707,49,'vote_id_5696a7be437f2','99.240.208.142','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[788],\"answers\":[\"penny\"],\"cf\":[]}}','\"\"','2016-01-13 14:38:41','Success'),(708,50,'vote_id_5696ac2018052','173.34.159.176','0','anonymous','','{\"q-50\":{\"question\":\"Away Jan 15?\",\"id\":50,\"a\":[789],\"answers\":[\"Annemarieke - in Toronto this weekend) Will miss all that fresh snow.\"],\"cf\":[]}}','\"\"','2016-01-13 14:57:22','Success'),(709,49,'vote_id_5696ae4d0a96a','99.246.66.128','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[790],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2016-01-13 15:06:37','Success'),(710,49,'vote_id_5696aece8650e','99.224.14.80','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[791],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-01-13 15:08:47','Success'),(711,49,'vote_id_5696b2c450ac1','99.240.162.239','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[792],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2016-01-13 15:25:40','Success'),(712,49,'vote_id_5696b6c34ebb4','173.177.227.6','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[793],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2016-01-13 15:42:44','Success'),(713,49,'vote_id_5696ba7a67897','173.206.146.182','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[794],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2016-01-13 15:58:35','Success'),(714,49,'vote_id_5696bb4e2f980','206.47.112.10','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[795],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2016-01-13 16:02:07','Success'),(715,49,'vote_id_5696bfe5df50c','108.162.170.98','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[796],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-01-13 16:21:42','Success'),(716,49,'vote_id_5696c8516466a','64.229.253.54','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[797],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2016-01-13 16:57:38','Success'),(717,49,'vote_id_5696cbefb9d31','184.144.122.67','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[798],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-01-13 17:13:04','Success'),(718,49,'vote_id_5696e4b21957e','99.240.235.17','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[799],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2016-01-13 18:58:42','Success'),(719,49,'vote_id_5696ec5472088','70.29.105.251','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[800],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2016-01-13 19:31:17','Success'),(720,50,'vote_id_56979cef46060','99.246.134.29','0','anonymous','','{\"q-50\":{\"question\":\"Away Jan 15?\",\"id\":50,\"a\":[801],\"answers\":[\"Sandra- working\"],\"cf\":[]}}','\"\"','2016-01-14 08:04:47','Success'),(721,49,'vote_id_5697a6272a87b','65.93.203.125','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[802],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2016-01-14 08:44:07','Success'),(722,49,'vote_id_5697b55a83d9a','108.63.197.92','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[803],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2016-01-14 09:49:01','Success'),(723,49,'vote_id_5697bd27e8929','69.158.15.97','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[804],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2016-01-14 10:22:17','Success'),(724,49,'vote_id_5697be2d241be','99.240.171.186','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[805],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2016-01-14 10:26:37','Success'),(725,49,'vote_id_5697c1ce4dfbc','70.53.214.17','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[806],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-01-14 10:42:06','Success'),(726,50,'vote_id_5697cf8f64379','142.165.205.168','0','anonymous','','{\"q-50\":{\"question\":\"Away Jan 15?\",\"id\":50,\"a\":[807],\"answers\":[\"Cyndy - in SK again. Hopefully next week I can join you!\"],\"cf\":[]}}','\"\"','2016-01-14 11:40:48','Success'),(727,49,'vote_id_5697e17b2d1df','67.230.128.16','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[808],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2016-01-14 12:57:16','Success'),(728,49,'vote_id_5697ecad15781','99.240.231.193','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[809],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2016-01-14 13:45:02','Success'),(729,49,'vote_id_5697f89fd6b51','99.246.10.81','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[810],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-01-14 14:36:00','Success'),(730,49,'vote_id_569830109a5ef','24.114.106.109','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[811],\"answers\":[\"Pauline\"],\"cf\":[]}}','\"\"','2016-01-14 18:32:33','Success'),(731,50,'vote_id_5698500d4e631','23.91.135.38','0','anonymous','','{\"q-50\":{\"question\":\"Away Jan 15?\",\"id\":50,\"a\":[812],\"answers\":[\"Anne- sorry can\\\\\'t make the early start this week. I will ski in the afternoon. Enjoy!\"],\"cf\":[]}}','\"\"','2016-01-14 20:49:02','Success'),(732,49,'vote_id_569851c106a1e','99.246.30.245','0','anonymous','','','\"\"','2016-01-14 20:56:17','Other answer from question 1 is empty'),(733,49,'vote_id_569851c676842','99.246.30.245','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[813],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2016-01-14 20:56:23','Success'),(734,49,'vote_id_56985d592587a','99.248.98.53','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[814],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2016-01-14 21:45:46','Success'),(735,50,'vote_id_5698612d69558','70.31.51.166','0','anonymous','','{\"q-50\":{\"question\":\"Away Jan 15?\",\"id\":50,\"a\":[815],\"answers\":[\"Susan ny- sadly I am working, need to retire soon\"],\"cf\":[]}}','\"\"','2016-01-14 22:02:08','Success'),(736,49,'vote_id_569868207187f','108.63.163.57','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[816],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2016-01-14 22:31:47','Success'),(737,50,'vote_id_5698f99fd0ff3','99.246.71.56','0','anonymous','','{\"q-50\":{\"question\":\"Away Jan 15?\",\"id\":50,\"a\":[817],\"answers\":[\"Pat- sorry to miss this week\"],\"cf\":[]}}','\"\"','2016-01-15 08:52:32','Success'),(738,49,'vote_id_56990693a32ec','69.158.12.126','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[818],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2016-01-15 09:47:48','Success'),(739,51,'vote_id_569ef2906af0c','108.63.163.57','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[821],\"answers\":[\"Jo-Ann H\"],\"cf\":[]}}','\"\"','2016-01-19 21:36:01','Success'),(740,51,'vote_id_569ef3c499d36','99.240.208.142','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[822],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-01-19 21:41:10','Success'),(741,51,'vote_id_569f73f708780','69.158.12.126','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[823],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2016-01-20 06:48:08','Success'),(742,52,'vote_id_569f82cdd3a1c','65.93.203.125','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[824],\"answers\":[\"Liz R - sorry to miss this week.\"],\"cf\":[]}}','\"\"','2016-01-20 07:51:26','Success'),(743,51,'vote_id_569f8d4ce6e56','184.144.122.67','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[825],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-01-20 08:36:13','Success'),(744,51,'vote_id_569f90197550c','108.63.174.53','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[826],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2016-01-20 08:48:11','Success'),(745,52,'vote_id_569f98f7ca96e','199.7.157.105','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[827],\"answers\":[\"Lyse- away on holidays for the week,\"],\"cf\":[]}}','\"\"','2016-01-20 09:26:00','Success'),(746,52,'vote_id_569fa76c4fd7b','99.246.30.245','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[828],\"answers\":[\"Family commitment, will have to miss this week.\"],\"cf\":[]}}','\"\"','2016-01-20 10:27:41','Success'),(747,52,'vote_id_569fa7af718d7','99.246.30.245','0','anonymous','','','\"\"','2016-01-20 10:28:47','Run out of votes'),(748,52,'vote_id_569fa7b71449c','99.246.30.245','0','anonymous','','','\"\"','2016-01-20 10:28:55','Run out of votes'),(749,51,'vote_id_569fa7f57a82b','99.246.30.245','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[829],\"answers\":[\"Barbara - that was me who just wrote I won\\\\\'t be attending this week due to family commitmen, and forgot to write my name.\"],\"cf\":[]}}','\"\"','2016-01-20 10:29:59','Success'),(750,52,'vote_id_569fb30f0896c','187.217.115.244','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[830],\"answers\":[\"Susan ny away\"],\"cf\":[]}}','\"\"','2016-01-20 11:17:21','Success'),(751,51,'vote_id_569fc01e20b0a','99.246.134.29','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[831],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2016-01-20 12:13:02','Success'),(752,51,'vote_id_569fd8dc85913','108.162.170.98','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[832],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-01-20 13:58:36','Success'),(753,51,'vote_id_569fdf116d9aa','64.229.253.54','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[833],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2016-01-20 14:25:08','Success'),(754,51,'vote_id_569fefdb7b3ae','99.240.235.17','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[834],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2016-01-20 15:36:44','Success'),(755,51,'vote_id_56a004934f90d','173.177.227.6','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[835],\"answers\":[\"Marie-FRance\"],\"cf\":[]}}','\"\"','2016-01-20 17:05:11','Success'),(756,52,'vote_id_56a0482992db1','70.53.214.17','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[836],\"answers\":[\"Ellie- Sorry I have to miss this week. Tuesday was great!\"],\"cf\":[]}}','\"\"','2016-01-20 21:53:30','Success'),(757,51,'vote_id_56a0c37b33c84','206.132.178.19','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[837],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2016-01-21 06:39:40','Success'),(758,51,'vote_id_56a0d855b7813','99.246.10.81','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[838],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-01-21 08:08:38','Success'),(759,51,'vote_id_56a0e54448ad3','76.64.65.181','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[839],\"answers\":[\"pat\"],\"cf\":[]}}','\"\"','2016-01-21 09:03:49','Success'),(760,52,'vote_id_56a0eeced759c','69.158.15.97','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[840],\"answers\":[\"Ila - will be busy for the next week with my BC visitor\"],\"cf\":[]}}','\"\"','2016-01-21 09:44:31','Success'),(761,51,'vote_id_56a1022089a70','99.240.171.186','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[841],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2016-01-21 11:07:00','Success'),(762,51,'vote_id_56a12a8d53231','99.240.231.193','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[842],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2016-01-21 13:59:25','Success'),(763,51,'vote_id_56a138e423924','99.248.98.53','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[843],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2016-01-21 15:00:36','Success'),(764,51,'vote_id_56a172cd27aea','69.158.170.24','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[844],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2016-01-21 19:07:42','Success'),(765,51,'vote_id_56a18f136289d','107.179.156.72','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[845],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2016-01-21 21:08:21','Success'),(766,51,'vote_id_56a196fc40561','173.34.159.176','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[846],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-01-21 21:42:06','Success'),(767,52,'vote_id_56a19cd6e93d9','108.63.192.149','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[820,847],\"answers\":[\"Write your NAME and a few words, hit SEND\",\"Susan R\"],\"cf\":[]}}','\"\"','2016-01-21 22:07:06','Success'),(768,52,'vote_id_56a2218d31296','184.144.140.21','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[848],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2016-01-22 07:33:19','Success'),(769,52,'vote_id_56a23d1797b5c','67.230.128.81','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[849],\"answers\":[\"Darlene - will be missing this week\"],\"cf\":[]}}','\"\"','2016-01-22 09:30:52','Success'),(770,54,'vote_id_56a7e0591da57','173.34.159.176','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[853],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-01-26 16:08:41','Success'),(771,53,'vote_id_56a7ead55c36f','69.158.15.97','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[854],\"answers\":[\"Ila - I will be happy with either.  My preference depends on the conditions come Friday.\"],\"cf\":[]}}','\"\"','2016-01-26 16:53:26','Success'),(772,54,'vote_id_56a7eaf8de2a3','173.177.227.6','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[855],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2016-01-26 16:54:01','Success'),(773,55,'vote_id_56a7eb4a1aa8e','184.144.140.21','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[856],\"answers\":[\"Janey  -  sorry cannot make this outing.\"],\"cf\":[]}}','\"\"','2016-01-26 16:55:24','Success'),(774,53,'vote_id_56a7f0e58df34','108.162.170.98','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[857],\"answers\":[\"Jennifer - prefer skate unless conditions are cold...\"],\"cf\":[]}}','\"\"','2016-01-26 17:19:18','Success'),(775,54,'vote_id_56a7f0ffaae37','108.162.170.98','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[858],\"answers\":[\"Jennifer - whoops did that wrong. Definitely prefer skate...\"],\"cf\":[]}}','\"\"','2016-01-26 17:19:44','Success'),(776,53,'vote_id_56a7f7fda1e29','107.179.156.72','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[859],\"answers\":[\"Anne- classic for me\"],\"cf\":[]}}','\"\"','2016-01-26 17:49:33','Success'),(777,53,'vote_id_56a7fbd75f7aa','70.31.51.166','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[860],\"answers\":[\"Susan ny classic\"],\"cf\":[]}}','\"\"','2016-01-26 18:06:00','Success'),(778,54,'vote_id_56a7fe6631168','99.246.10.81','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[861],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-01-26 18:16:54','Success'),(779,55,'vote_id_56a800983d5ec','173.206.16.239','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[862],\"answers\":[\"Julie - sorry to have to miss this week\"],\"cf\":[]}}','\"\"','2016-01-26 18:26:17','Success'),(780,55,'vote_id_56a8085a10b73','99.240.208.142','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[863],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-01-26 18:59:32','Success'),(781,54,'vote_id_56a81011128e2','190.92.114.150','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[864],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-01-26 19:32:18','Success'),(782,54,'vote_id_56a89d7c65437','69.158.12.126','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[865],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2016-01-27 05:35:41','Success'),(783,53,'vote_id_56a8d2e8b343d','99.246.30.245','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[866],\"answers\":[\"Barbara - prefer skate\"],\"cf\":[]}}','\"\"','2016-01-27 09:23:37','Success'),(784,54,'vote_id_56a8d31607629','99.246.30.245','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[867],\"answers\":[\"Barbara - oops, also got that wrong. Prefer skate\"],\"cf\":[]}}','\"\"','2016-01-27 09:24:23','Success'),(785,54,'vote_id_56a8d3b628854','67.230.128.16','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[868],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2016-01-27 09:27:08','Success'),(786,53,'vote_id_56a8e4437fe4a','65.93.203.125','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[869],\"answers\":[\"Liz R - prefer classic\"],\"cf\":[]}}','\"\"','2016-01-27 10:37:40','Success'),(787,54,'vote_id_56a90ac8869cf','70.31.75.121','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[870],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-01-27 13:22:02','Success'),(788,53,'vote_id_56a90d07acd61','64.229.253.54','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[871],\"answers\":[\"Susan o classic\"],\"cf\":[]}}','\"\"','2016-01-27 13:31:36','Success'),(789,54,'vote_id_56a94e5f254be','142.113.150.171','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[872],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2016-01-27 18:10:25','Success'),(790,53,'vote_id_56aa39d44edc3','99.240.171.186','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[873],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2016-01-28 10:55:03','Success'),(791,53,'vote_id_56aa3b10d07b8','108.63.197.48','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[874],\"answers\":[\"Susan R _ either, depending on conditions but prefer classic\"],\"cf\":[]}}','\"\"','2016-01-28 11:00:17','Success'),(792,53,'vote_id_56aa7dd94ddc6','99.240.235.250','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[875],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2016-01-28 15:45:13','Success'),(793,55,'vote_id_56aa830412d4c','99.240.162.239','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[876],\"answers\":[\"Going to ski early morning because heading back up after dinner.. Sorry to miss, have fun!\"],\"cf\":[]}}','\"\"','2016-01-28 16:07:16','Success'),(794,55,'vote_id_56aa83364572d','99.240.162.239','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[876,877],\"answers\":[\"Going to ski early morning because heading back up after dinner.. Sorry to miss, have fun!\",\"Carol, oops forgot to post name beside early skiing\"],\"cf\":[]}}','\"\"','2016-01-28 16:08:06','Success'),(795,53,'vote_id_56aa857c2fa3b','184.146.39.233','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[878],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2016-01-28 16:17:48','Success'),(796,54,'vote_id_56aa85c161e23','70.53.214.17','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[879],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-01-28 16:18:58','Success'),(797,53,'vote_id_56aa9cf05bd8d','99.240.235.17','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[880],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2016-01-28 17:57:53','Success'),(798,55,'vote_id_56aa9ddc16ad3','108.63.197.48','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[881],\"answers\":[\"Susan R _ Unable to attend after all, owing to real estate obligation.\"],\"cf\":[]}}','\"\"','2016-01-28 18:01:49','Success'),(799,54,'vote_id_56aabfbdd7dd8','99.248.98.53','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[882],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2016-01-28 20:26:22','Success'),(800,53,'vote_id_56aac61d10367','173.34.159.176','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[883],\"answers\":[\"Annemarieke- changed my mind; will do classic\"],\"cf\":[]}}','\"\"','2016-01-28 20:53:33','Success'),(801,54,'vote_id_56aad17ef278c','99.246.10.81','0','anonymous','','','\"\"','2016-01-28 21:42:06','Run out of votes'),(802,54,'vote_id_56aad18367a7c','99.246.10.81','0','anonymous','','','\"\"','2016-01-28 21:42:11','Run out of votes'),(803,54,'vote_id_56aad18f328a2','99.246.10.81','0','anonymous','','','\"\"','2016-01-28 21:42:23','Run out of votes'),(804,53,'vote_id_56aad9171763a','108.63.163.57','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[884],\"answers\":[\"Jo-Ann H\"],\"cf\":[]}}','\"\"','2016-01-28 22:14:34','Success'),(805,53,'vote_id_56aadce20fcff','99.246.66.128','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[885],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2016-01-28 22:30:42','Success'),(806,53,'vote_id_56ab658e98183','99.246.134.29','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[886],\"answers\":[\"sandra\"],\"cf\":[]}}','\"\"','2016-01-29 08:13:51','Success'),(807,53,'vote_id_56ab76bd4725c','174.92.93.144','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[887],\"answers\":[\"Rosy - very easy classic\"],\"cf\":[]}}','\"\"','2016-01-29 09:27:11','Success'),(808,55,'vote_id_56ab8263290d6','70.30.87.106','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[888],\"answers\":[\"Pauline -- won\\\\\'t be there today; and will be away in Charlevoix, QC until end of February.Happy trails everyone!\"],\"cf\":[]}}','\"\"','2016-01-29 10:16:54','Success'),(809,56,'vote_id_56b1685f40739','108.63.180.66','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[891],\"answers\":[\"Jo-Ann H.\"],\"cf\":[]}}','\"\"','2016-02-02 21:39:29','Success'),(810,56,'vote_id_56b1696fb45dd','99.248.98.53','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[892],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2016-02-02 21:44:00','Success'),(811,56,'vote_id_56b16c89c553e','99.240.162.239','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[893],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2016-02-02 21:57:14','Success'),(812,57,'vote_id_56b1917fad8a5','99.248.98.53','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[894],\"answers\":[\"Maggie -  scheduled OFF training day:)\"],\"cf\":[]}}','\"\"','2016-02-03 00:34:56','Success'),(813,57,'vote_id_56b1f17aa527a','70.30.84.65','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[895],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2016-02-03 07:24:27','Success'),(814,56,'vote_id_56b2037e82839','99.246.10.81','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[896],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-02-03 08:41:19','Success'),(815,57,'vote_id_56b21a2a33585','99.240.208.142','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[897],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-02-03 10:18:03','Success'),(816,56,'vote_id_56b256ccf382c','108.162.170.98','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[898],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-02-03 14:36:45','Success'),(817,56,'vote_id_56b26a9364bef','184.146.39.233','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[899],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2016-02-03 16:01:09','Success'),(818,56,'vote_id_56b2a9e07b116','70.31.51.166','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[900],\"answers\":[\"Susan ny\"],\"cf\":[]}}','\"\"','2016-02-03 20:31:14','Success'),(819,56,'vote_id_56b2ac9bc3981','173.34.159.176','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[901],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-02-03 20:42:52','Success'),(820,56,'vote_id_56b35d8099168','174.95.238.190','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[902],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-02-04 09:17:38','Success'),(821,56,'vote_id_56b35f6ee64ff','70.53.62.91','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[903],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-02-04 09:25:52','Success'),(822,57,'vote_id_56b363ecd505b','69.158.15.97','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[904],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2016-02-04 09:45:01','Success'),(823,56,'vote_id_56b3719445574','206.132.178.12','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[905],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2016-02-04 10:43:16','Success'),(824,57,'vote_id_56b37bbb555b2','99.240.171.186','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[906],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2016-02-04 11:26:37','Success'),(825,56,'vote_id_56b3959d4e62a','107.179.156.72','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[907],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2016-02-04 13:17:02','Success'),(826,56,'vote_id_56b3b20093495','173.177.227.6','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[908],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2016-02-04 15:18:09','Success'),(827,56,'vote_id_56b3ba0fbf2f7','174.92.89.158','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[909],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2016-02-04 15:52:32','Success'),(828,56,'vote_id_56b3bb75c17c5','99.224.14.80','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[910],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-02-04 15:58:30','Success'),(829,56,'vote_id_56b3c2181bc9d','173.206.99.0','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[911],\"answers\":[\"Julie - if sore throat improves\"],\"cf\":[]}}','\"\"','2016-02-04 16:26:48','Success'),(830,57,'vote_id_56b3cd6e3968b','108.63.201.20','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[912],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2016-02-04 17:15:13','Success'),(831,57,'vote_id_56b3ce982b976','67.230.128.42','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[913],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2016-02-04 17:20:08','Success'),(832,56,'vote_id_56b3cea5064f4','70.54.62.204','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[914],\"answers\":[\"susan o\"],\"cf\":[]}}','\"\"','2016-02-04 17:20:21','Success'),(833,56,'vote_id_56b3cf2131a4f','99.240.235.17','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[915],\"answers\":[\"Liz S  I\\\\\'m one of those fair weather skiers\"],\"cf\":[]}}','\"\"','2016-02-04 17:22:25','Success'),(834,56,'vote_id_56b3d1a25dc82','99.240.235.250','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[916],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2016-02-04 17:33:07','Success'),(835,56,'vote_id_56b3d218afe16','99.246.30.245','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[917],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2016-02-04 17:35:05','Success'),(836,57,'vote_id_56b3e3f2ba903','99.246.66.128','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[918],\"answers\":[\"Swim only for me this week\"],\"cf\":[]}}','\"\"','2016-02-04 18:51:15','Success'),(837,57,'vote_id_56b3ec3aa9c30','69.158.12.126','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[919],\"answers\":[\"Linda off for the next 3 weeks\"],\"cf\":[]}}','\"\"','2016-02-04 19:26:35','Success'),(838,56,'vote_id_56b3ec46a112b','69.158.12.126','0','anonymous','','','\"\"','2016-02-04 19:26:46','No answer selected for question 1'),(839,57,'vote_id_56b4afab9308a','99.246.134.29','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[920],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2016-02-05 09:20:28','Success'),(840,57,'vote_id_56b4b9dc8df9d','206.248.129.152','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[921],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-02-05 10:03:57','Success'),(841,58,'vote_id_56ba541a91cdb','108.63.180.66','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[924],\"answers\":[\"Jo-Ann H.\"],\"cf\":[]}}','\"\"','2016-02-09 16:03:29','Success'),(842,59,'vote_id_56ba58b5760da','173.177.227.6','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[927],\"answers\":[\"Marie-France-Away Feb. 12 & 19\"],\"cf\":[]}}','\"\"','2016-02-09 16:23:02','Success'),(843,60,'vote_id_56ba59ca87acb','108.63.180.66','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[928],\"answers\":[\"Jo-Ann H  - interested in new guidelines for protein requirements for older adults, and how we know we are getting the right amount at the right time.\"],\"cf\":[]}}','\"\"','2016-02-09 16:27:38','Success'),(844,61,'vote_id_56ba59d61e901','108.63.180.66','0','anonymous','','{\"q-61\":{\"question\":\"I would attend on a Friday midday after the snow melts\",\"id\":61,\"a\":[929],\"answers\":[\"Jo-Ann H.  interested in new guidelines for protein requirements for older adults, and how we know we are getting the right amount at the right time\"],\"cf\":[]}}','\"\"','2016-02-09 16:27:50','Success'),(845,59,'vote_id_56ba5a4ec4d00','99.240.208.142','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[930],\"answers\":[\"Penny...still building to pre-op activity levels\"],\"cf\":[]}}','\"\"','2016-02-09 16:29:51','Success'),(846,61,'vote_id_56ba5e4a72e6f','173.177.227.6','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[931],\"answers\":[\"Marie-France After the snow melts and on a Friday is great for me. Needs: what to eat at what time before a Sofits training at noon\"],\"cf\":[]}}','\"\"','2016-02-09 16:46:51','Success'),(847,58,'vote_id_56ba682a601dd','173.34.159.176','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[932],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-02-09 17:28:59','Success'),(848,60,'vote_id_56ba6deb7569e','107.179.156.72','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[933],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2016-02-09 17:53:31','Success'),(849,60,'vote_id_56ba7d23a06fc','99.246.66.128','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[934],\"answers\":[\"Lou - Special Olympic ski cancelled due to the cold.  So I will be available after all.\"],\"cf\":[]}}','\"\"','2016-02-09 18:58:28','Success'),(850,59,'vote_id_56ba7d45d0661','70.53.62.91','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[935],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-02-09 18:59:02','Success'),(851,60,'vote_id_56ba868651817','99.240.162.239','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[936],\"answers\":[\"Carol - either option is good,with me!\"],\"cf\":[]}}','\"\"','2016-02-09 19:38:30','Success'),(852,61,'vote_id_56ba869b7476a','99.240.162.239','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[937],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2016-02-09 19:38:51','Success'),(853,58,'vote_id_56ba8a6d79d74','70.31.51.166','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[938],\"answers\":[\"Susan NY\"],\"cf\":[]}}','\"\"','2016-02-09 19:55:10','Success'),(854,61,'vote_id_56ba8d60bbe9a','108.63.200.247','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[939],\"answers\":[\"Susan Riley _Friday after the snow melts works for me!\"],\"cf\":[]}}','\"\"','2016-02-09 20:07:45','Success'),(855,61,'vote_id_56baa1951495e','189.165.105.114','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[940],\"answers\":[\"Pat will be back after Feb 16th.  Hope there is still snow for awhile though\"],\"cf\":[]}}','\"\"','2016-02-09 21:33:57','Success'),(856,61,'vote_id_56baa56e78eff','184.146.39.233','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[941],\"answers\":[\"Meryl - I\\\\\'m available on a Friday after snow melts.\"],\"cf\":[]}}','\"\"','2016-02-09 21:50:23','Success'),(857,60,'vote_id_56baa5b8bfc52','184.146.39.233','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[942],\"answers\":[\"Meryl - I\\\\\'m available this Saturday, but a Friday would be fine too.\"],\"cf\":[]}}','\"\"','2016-02-09 21:51:38','Success'),(858,61,'vote_id_56baa8ab61b4d','67.230.128.18','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[943],\"answers\":[\"Darlene - Fridays after the snow melts works best for me\"],\"cf\":[]}}','\"\"','2016-02-09 22:04:11','Success'),(859,60,'vote_id_56babcefd3596','99.240.208.142','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[944],\"answers\":[\"Penny, also available Friday-need to learn about fueling for multi day events\"],\"cf\":[]}}','\"\"','2016-02-09 23:30:40','Success'),(860,61,'vote_id_56babd099effc','99.240.208.142','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[945],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-02-09 23:31:05','Success'),(861,58,'vote_id_56bb2ee9e8ee4','206.132.178.12','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[946],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2016-02-10 07:36:58','Success'),(862,60,'vote_id_56bb30ffa64bf','99.246.10.81','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[947],\"answers\":[\"Janice Moe\"],\"cf\":[]}}','\"\"','2016-02-10 07:45:51','Success'),(863,61,'vote_id_56bb3158d7295','99.246.10.81','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[948],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-02-10 07:47:21','Success'),(864,58,'vote_id_56bb318ca88ec','99.246.10.81','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[949],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-02-10 07:48:13','Success'),(865,61,'vote_id_56bb31c5650b6','70.54.62.204','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[950],\"answers\":[\"Susan o that would be perfect\"],\"cf\":[]}}','\"\"','2016-02-10 07:49:09','Success'),(866,61,'vote_id_56bb3e5719b30','99.240.235.17','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[951],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2016-02-10 08:42:47','Success'),(867,58,'vote_id_56bb3e8ed5d4c','99.240.235.17','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[952],\"answers\":[\"Liz S I have work in the morning I may be late\"],\"cf\":[]}}','\"\"','2016-02-10 08:43:45','Success'),(868,58,'vote_id_56bb3eeb6302e','174.92.94.144','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[953],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2016-02-10 08:45:15','Success'),(869,61,'vote_id_56bb3f24d6946','174.92.94.144','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[954],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2016-02-10 08:46:13','Success'),(870,60,'vote_id_56bb3f783d3d2','174.92.94.144','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[955],\"answers\":[\"Rosy - I hope to be there. Timing of fueling during long endurance efforts.\"],\"cf\":[]}}','\"\"','2016-02-10 08:47:36','Success'),(871,58,'vote_id_56bb8637b1b71','99.248.98.53','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[956],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2016-02-10 13:49:28','Success'),(872,58,'vote_id_56bb8d065f0d2','184.146.39.233','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[957],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2016-02-10 14:18:31','Success'),(873,58,'vote_id_56bb9a138deb9','108.63.101.237','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[958],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2016-02-10 15:14:13','Success'),(874,58,'vote_id_56bbb1d14ffb6','107.179.156.72','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[959],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2016-02-10 16:55:31','Success'),(875,61,'vote_id_56bbc1428e64a','70.53.62.91','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[960],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-02-10 18:01:22','Success'),(876,58,'vote_id_56bc8b9680deb','99.246.134.29','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[961],\"answers\":[\"sandra\"],\"cf\":[]}}','\"\"','2016-02-11 08:24:39','Success'),(877,61,'vote_id_56bc8bbc14f5f','99.246.134.29','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[962],\"answers\":[\"sandra\"],\"cf\":[]}}','\"\"','2016-02-11 08:25:16','Success'),(878,58,'vote_id_56bc94fdeff81','174.95.238.190','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[963],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-02-11 09:04:46','Success'),(879,58,'vote_id_56bc9c24c5a83','99.240.171.186','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[964],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2016-02-11 09:35:18','Success'),(880,59,'vote_id_56bc9dbd5d566','184.145.139.18','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[965],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2016-02-11 09:42:06','Success'),(881,58,'vote_id_56bcaa94eda5a','99.246.20.200','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[966],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2016-02-11 10:36:54','Success'),(882,59,'vote_id_56bcad9b5ddeb','99.240.235.250','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[967],\"answers\":[\"Cary ... youngest offspring dropping in for lunch\"],\"cf\":[]}}','\"\"','2016-02-11 10:49:47','Success'),(883,58,'vote_id_56bcaf0caac12','192.171.45.154','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[968],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-02-11 10:55:57','Success'),(884,59,'vote_id_56bcfba238dee','70.30.84.82','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[969],\"answers\":[\"Liz R - have to leave for Montreal in the pm\"],\"cf\":[]}}','\"\"','2016-02-11 16:22:44','Success'),(885,59,'vote_id_56bd0f2b62772','67.230.128.83','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[970],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2016-02-11 17:46:04','Success'),(886,58,'vote_id_56bd14484993e','99.224.14.80','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[971],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-02-11 18:07:53','Success'),(887,59,'vote_id_56bd213ec1ef8','99.240.162.239','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[972],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2016-02-11 19:03:15','Success'),(888,59,'vote_id_56bdd0b9cedeb','99.246.66.128','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[973],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2016-02-12 07:31:54','Success'),(889,59,'vote_id_56bddc42a0234','108.63.200.95','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[974],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2016-02-12 08:21:07','Success'),(890,62,'vote_id_56c513e9effa1','108.63.180.66','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[977],\"answers\":[\"Jo-Ann H   30 minutes for 5 k?\"],\"cf\":[]}}','\"\"','2016-02-17 19:44:26','Success'),(891,62,'vote_id_56c51668cf494','76.10.162.45','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[978],\"answers\":[\"Jennifer - no idea really - 25 minutes for 5k?\"],\"cf\":[]}}','\"\"','2016-02-17 19:55:07','Success'),(892,62,'vote_id_56c51ca08c04a','70.26.33.150','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[979],\"answers\":[\"Rosy - relaxed, 40-45 min or so, or longer if enjoying the scenery\"],\"cf\":[]}}','\"\"','2016-02-17 20:21:36','Success'),(893,62,'vote_id_56c522927ffdf','99.224.14.80','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[980],\"answers\":[\"Lyse , possibly 28 minutes\"],\"cf\":[]}}','\"\"','2016-02-17 20:46:59','Success'),(894,62,'vote_id_56c522949e2fb','107.179.156.72','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[981],\"answers\":[\"Anne- I am nursing a sore back\\/ SI joint but hoping to be in shape to join you. Will have to be a relaxed ski for me.\"],\"cf\":[]}}','\"\"','2016-02-17 20:47:01','Success'),(895,62,'vote_id_56c52955c3999','184.145.139.18','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[982],\"answers\":[\"Ila - 45 minutes\"],\"cf\":[]}}','\"\"','2016-02-17 21:15:51','Success'),(896,63,'vote_id_56c5308db490f','70.31.51.166','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[983],\"answers\":[\"Susan ny, away skiing with my daughter\"],\"cf\":[]}}','\"\"','2016-02-17 21:46:44','Success'),(897,62,'vote_id_56c53cca1d601','173.34.159.176','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[984],\"answers\":[\"Annemarieke (I think 26 min)\"],\"cf\":[]}}','\"\"','2016-02-17 22:38:50','Success'),(898,62,'vote_id_56c5b23566ee5','99.240.171.186','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[985],\"answers\":[\"Gail - 40-45 min (no idea, but can keep up with Rosy)\"],\"cf\":[]}}','\"\"','2016-02-18 06:59:50','Success'),(899,63,'vote_id_56c5c6df83fa2','70.53.197.212','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[986],\"answers\":[\"Ellie at conference all day\"],\"cf\":[]}}','\"\"','2016-02-18 08:28:00','Success'),(900,62,'vote_id_56c5c7c6e66d3','50.101.56.100','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[987],\"answers\":[\"Susan O 30 min\"],\"cf\":[]}}','\"\"','2016-02-18 08:31:51','Success'),(901,63,'vote_id_56c5d7a884b30','184.144.120.120','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[988],\"answers\":[\"Margaret McLaren have fun. Son is in town for reading week.\"],\"cf\":[]}}','\"\"','2016-02-18 09:39:37','Success'),(902,63,'vote_id_56c5f9a0c346a','99.240.208.142','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[989],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-02-18 12:04:34','Success'),(903,62,'vote_id_56c60ff443747','173.206.88.99','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[990],\"answers\":[\"Julie - arriving late\"],\"cf\":[]}}','\"\"','2016-02-18 13:39:49','Success'),(904,62,'vote_id_56c61a7543db4','70.30.84.82','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[991],\"answers\":[\"Liz R - 43 minutes??\"],\"cf\":[]}}','\"\"','2016-02-18 14:24:39','Success'),(905,62,'vote_id_56c61ec131bf8','207.236.148.98','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[992],\"answers\":[\"Cyndy - 42 minutes (complete guess!)\"],\"cf\":[]}}','\"\"','2016-02-18 14:42:58','Success'),(906,62,'vote_id_56c62407d959e','99.240.235.250','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[993],\"answers\":[\"Cary - 40-60 min\"],\"cf\":[]}}','\"\"','2016-02-18 15:05:29','Success'),(907,62,'vote_id_56c63bd08d242','184.146.37.231','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[994],\"answers\":[\"Meryl - 31\"],\"cf\":[]}}','\"\"','2016-02-18 16:46:57','Success'),(908,62,'vote_id_56c64f1703817','142.113.150.171','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[995],\"answers\":[\"Pat-  30 min? or so.\"],\"cf\":[]}}','\"\"','2016-02-18 18:09:11','Success'),(909,63,'vote_id_56c66147a79ac','99.240.162.239','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[996],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2016-02-18 19:26:48','Success'),(910,63,'vote_id_56c6841e7d0f6','67.230.128.25','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[997],\"answers\":[\"Darlene - family commitments\"],\"cf\":[]}}','\"\"','2016-02-18 21:55:30','Success'),(911,62,'vote_id_56c686627c108','99.248.98.53','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[998],\"answers\":[\"Maggie-27\"],\"cf\":[]}}','\"\"','2016-02-18 22:05:26','Success'),(912,62,'vote_id_56c68f1b1da7d','99.246.10.81','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[999],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-02-18 22:42:19','Success'),(913,62,'vote_id_56c68ff1b041e','99.246.10.81','0','anonymous','','','\"\"','2016-02-18 22:45:53','Run out of votes'),(914,62,'vote_id_56c6901aecafa','99.246.10.81','0','anonymous','','','\"\"','2016-02-18 22:46:34','Run out of votes'),(915,62,'vote_id_56c6902a0adad','99.246.10.81','0','anonymous','','','\"\"','2016-02-18 22:46:50','Run out of votes'),(916,62,'vote_id_56c69049a9021','99.246.10.81','0','anonymous','','','\"\"','2016-02-18 22:47:21','Run out of votes'),(917,62,'vote_id_56c708a094f8b','99.246.134.29','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[1000],\"answers\":[\"Sandra-no idea 45-60?\"],\"cf\":[]}}','\"\"','2016-02-19 07:20:50','Success'),(918,57,'vote_id_56c7275750254','99.240.235.250','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[1001],\"answers\":[\"Cary - sorry change of plans - don\\\\\'t think I can finish marking in time\"],\"cf\":[]}}','\"\"','2016-02-19 09:31:52','Success'),(919,63,'vote_id_56c72f2a1fc48','108.63.192.154','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[1002],\"answers\":[\"Susan R - Sorry, thought I responded earlier. Other committments today.\"],\"cf\":[]}}','\"\"','2016-02-19 10:05:15','Success'),(920,61,'vote_id_56c777768a4b2','99.246.66.128','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[1003],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2016-02-19 15:13:42','Success'),(921,64,'vote_id_56cdb8528e011','108.63.171.230','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1006],\"answers\":[\"Jo-Ann H.\"],\"cf\":[]}}','\"\"','2016-02-24 09:04:12','Success'),(922,65,'vote_id_56cddcb2cc205','184.145.139.18','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1007],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2016-02-24 11:39:16','Success'),(923,64,'vote_id_56cde4f4c0ab1','99.248.98.53','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1008],\"answers\":[\"Maggie - very easy outing to test conditions\"],\"cf\":[]}}','\"\"','2016-02-24 12:14:29','Success'),(924,64,'vote_id_56cdfa98320d2','173.206.142.80','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1009],\"answers\":[\"Julie - easy outing as will be skiing that evening\"],\"cf\":[]}}','\"\"','2016-02-24 13:46:51','Success'),(925,65,'vote_id_56ce199bed070','184.144.120.120','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1010],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-02-24 15:59:10','Success'),(926,64,'vote_id_56ce2068b6420','206.132.179.49','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1011],\"answers\":[\"Cyndy - depending on conditions - but I love the idea of a relaxed ski!\"],\"cf\":[]}}','\"\"','2016-02-24 16:28:09','Success'),(927,64,'vote_id_56ce31ae41697','99.246.10.81','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1012],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-02-24 17:41:52','Success'),(928,64,'vote_id_56ce368b0add8','184.146.37.231','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1013],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2016-02-24 18:02:35','Success'),(929,64,'vote_id_56ce631d7b906','76.10.162.45','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1014],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-02-24 21:12:46','Success'),(930,64,'vote_id_56cf0dc265f63','173.177.227.6','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1015],\"answers\":[\"Marie-France: must leave at 13h30 to volunteer at Gatineau Loppett. I will attend if location not too far. Relais (P2) parking at stadium will likely be closed like Wed.\"],\"cf\":[]}}','\"\"','2016-02-25 09:20:57','Success'),(931,64,'vote_id_56cf6fd17d626','70.30.84.82','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1016],\"answers\":[\"Liz R - will depend on conditions\"],\"cf\":[]}}','\"\"','2016-02-25 16:19:14','Success'),(932,65,'vote_id_56cf74224b9f6','64.231.69.190','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1017],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2016-02-25 16:37:40','Success'),(933,64,'vote_id_56cf9891a12e5','184.145.136.63','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1018],\"answers\":[\"Linda easy from 11:00 to 1 - want help with waxing\"],\"cf\":[]}}','\"\"','2016-02-25 19:13:07','Success'),(934,65,'vote_id_56cfc0b3556b9','99.240.208.142','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1019],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-02-25 22:04:26','Success'),(935,65,'vote_id_56cfca5d91865','64.231.8.45','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1020],\"answers\":[\"Susan ny meeting at work :(\"],\"cf\":[]}}','\"\"','2016-02-25 22:45:34','Success'),(936,64,'vote_id_56d0413f6ad4b','173.34.159.176','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1021],\"answers\":[\"Annemarieke (easy and short)\"],\"cf\":[]}}','\"\"','2016-02-26 07:12:48','Success'),(937,64,'vote_id_56d04ab466bed','23.91.148.12','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1022],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2016-02-26 07:53:09','Success'),(938,65,'vote_id_56d04d246c60f','99.246.134.29','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1023],\"answers\":[\"sandra\"],\"cf\":[]}}','\"\"','2016-02-26 08:03:33','Success'),(939,64,'vote_id_56d04dbd760f9','99.240.162.239','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1024],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2016-02-26 08:06:06','Success'),(940,65,'vote_id_56d0596a7b60c','50.101.56.100','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1025],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2016-02-26 08:55:55','Success'),(941,64,'vote_id_56d06388bb0ad','174.92.94.17','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1026],\"answers\":[\"Rosy - easy and short\"],\"cf\":[]}}','\"\"','2016-02-26 09:39:06','Success'),(942,65,'vote_id_56d07c14bdb36','99.224.14.80','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1027],\"answers\":[\"lyse will be testing snow conditions at P2\"],\"cf\":[]}}','\"\"','2016-02-26 11:23:49','Success'),(943,65,'vote_id_56d085d03f744','70.53.197.212','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1028],\"answers\":[\"Ellie leaving for Mexico today and away next week\"],\"cf\":[]}}','\"\"','2016-02-26 12:05:21','Success'),(944,66,'vote_id_56d74b88547f0','184.146.37.231','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1031],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2016-03-02 15:22:32','Success'),(945,67,'vote_id_56d7555ed7ac0','108.63.150.32','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1032],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2016-03-02 16:04:31','Success'),(946,67,'vote_id_56d7579927f19','24.212.184.210','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1033],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-03-02 16:14:01','Success'),(947,67,'vote_id_56d75851e6f82','99.224.14.80','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1034],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-03-02 16:17:06','Success'),(948,66,'vote_id_56d76a7d9cb4c','70.30.84.82','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1035],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2016-03-02 17:34:38','Success'),(949,66,'vote_id_56d790ce387c1','67.230.128.65','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1036],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2016-03-02 20:18:06','Success'),(950,66,'vote_id_56d7a600bc480','184.145.139.18','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1037],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2016-03-02 21:48:32','Success'),(951,66,'vote_id_56d8b85c91383','99.248.98.53','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1038],\"answers\":[\"Maggie - will be skiing leaving from P7 but plan to start earlier may see you on the trail somewhere\"],\"cf\":[]}}','\"\"','2016-03-03 17:19:09','Success'),(952,66,'vote_id_56d8bab45441a','64.231.8.45','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1039],\"answers\":[\"Susan ny hoping to make but will be coming from work.\"],\"cf\":[]}}','\"\"','2016-03-03 17:29:08','Success'),(953,66,'vote_id_56d8ce536287d','99.240.162.239','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1040],\"answers\":[\"Carol - might also start  little earlier because have to be back in Ottawa before 3\"],\"cf\":[]}}','\"\"','2016-03-03 18:52:52','Success'),(954,67,'vote_id_56d8d843875ea','64.231.69.190','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1041],\"answers\":[\"pat\"],\"cf\":[]}}','\"\"','2016-03-03 19:35:15','Success'),(955,66,'vote_id_56d8ede8e11ca','99.240.235.250','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1042],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2016-03-03 21:07:37','Success'),(956,66,'vote_id_56d8fb1f95c8b','184.145.142.191','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1043],\"answers\":[\"Pauline\"],\"cf\":[]}}','\"\"','2016-03-03 22:04:00','Success'),(957,66,'vote_id_56d9899cdea10','50.101.56.100','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1044],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2016-03-04 08:11:57','Success'),(958,67,'vote_id_56d98e202eb80','99.246.10.81','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1045],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-03-04 08:31:13','Success'),(959,66,'vote_id_56d9974004611','99.240.171.186','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1046],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2016-03-04 09:10:08','Success'),(960,67,'vote_id_56d9987998e58','184.145.136.63','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1047],\"answers\":[\"linda\"],\"cf\":[]}}','\"\"','2016-03-04 09:15:22','Success'),(961,66,'vote_id_56d9ace1576ab','173.34.159.176','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1048],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-03-04 10:42:29','Success'),(962,67,'vote_id_56d9ad0d008d0','173.34.159.176','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1049],\"answers\":[\"Annemarieke ( above is wrong, going to skate ski)\"],\"cf\":[]}}','\"\"','2016-03-04 10:43:11','Success'),(963,68,'vote_id_56df329e9d4a6','108.63.171.230','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1051],\"answers\":[\"Jo-Ann, classic klister, Wakefield Triangle\"],\"cf\":[]}}','\"\"','2016-03-08 15:14:23','Success'),(964,68,'vote_id_56df3399b9c3e','24.212.184.210','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1052],\"answers\":[\"Jennifer - probably skate but trying to decide if I can handle klister...undecided...\"],\"cf\":[]}}','\"\"','2016-03-08 15:18:34','Success'),(965,68,'vote_id_56df3795ab789','173.177.227.6','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1053],\"answers\":[\"Marie-France= absent unexpected Italian language course sorry\"],\"cf\":[]}}','\"\"','2016-03-08 15:35:34','Success'),(966,68,'vote_id_56df51122b099','50.101.56.100','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1054],\"answers\":[\"Susan I - classic and Wakefield triangle\"],\"cf\":[]}}','\"\"','2016-03-08 17:24:19','Success'),(967,68,'vote_id_56df5141cf81a','50.101.56.100','0','anonymous','','','\"\"','2016-03-08 17:25:05','Run out of votes'),(968,68,'vote_id_56df514985869','50.101.56.100','0','anonymous','','','\"\"','2016-03-08 17:25:13','Run out of votes'),(969,68,'vote_id_56df514f501db','50.101.56.100','0','anonymous','','','\"\"','2016-03-08 17:25:19','Run out of votes'),(970,68,'vote_id_56df51643938a','50.101.56.100','0','anonymous','','','\"\"','2016-03-08 17:25:40','Run out of votes'),(971,68,'vote_id_56e08a9233ed9','184.145.139.18','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1055],\"answers\":[\"Ila - classic, probably waxless, destination tbd.\"],\"cf\":[]}}','\"\"','2016-03-09 15:41:55','Success'),(972,68,'vote_id_56e17ac794d23','174.93.57.228','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1056],\"answers\":[\"Meryl - classic\"],\"cf\":[]}}','\"\"','2016-03-10 08:46:48','Success'),(973,68,'vote_id_56e17caf2972e','70.30.84.82','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1057],\"answers\":[\"Liz R - classic wax less\"],\"cf\":[]}}','\"\"','2016-03-10 08:54:55','Success'),(974,68,'vote_id_56e1af5295e75','70.26.237.111','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1058],\"answers\":[\"Ellie - classic probably waxless\"],\"cf\":[]}}','\"\"','2016-03-10 12:30:59','Success'),(975,68,'vote_id_56e1cf38c18bf','99.240.162.239','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1059],\"answers\":[\"Carol - classic: going to try to make it but will confirm fri morning if can make P19 starting point on time.\"],\"cf\":[]}}','\"\"','2016-03-10 14:47:09','Success'),(976,68,'vote_id_56e1fe0194f40','99.246.10.81','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1060],\"answers\":[\"Janice classic klister\"],\"cf\":[]}}','\"\"','2016-03-10 18:06:42','Success'),(977,68,'vote_id_56e2057b09f7d','67.230.128.2','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1061],\"answers\":[\"Darlene - will decide between waxless and skate skis once I see the conditions tomorrow\"],\"cf\":[]}}','\"\"','2016-03-10 18:38:36','Success'),(978,68,'vote_id_56e23117eec97','173.206.32.4','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1062],\"answers\":[\"Julie - classic - will need someone\\\\\'s klister - hoping to be there on time but waiting for repair guy in the a.m.\"],\"cf\":[]}}','\"\"','2016-03-10 21:44:41','Success'),(979,68,'vote_id_56e234ed3562c','184.145.142.191','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1063],\"answers\":[\"Pauline - I think I will try skate skiing, heading out on 50\"],\"cf\":[]}}','\"\"','2016-03-10 22:01:05','Success'),(980,68,'vote_id_56e2356e512e1','99.240.235.250','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1064],\"answers\":[\"Cary - classic to Renaud.\"],\"cf\":[]}}','\"\"','2016-03-10 22:03:19','Success'),(981,68,'vote_id_56e2cf2d52416','99.240.162.239','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1065],\"answers\":[\"Carol classic\"],\"cf\":[]}}','\"\"','2016-03-11 08:59:11','Success'),(982,68,'vote_id_56e2cf8758db4','99.224.14.80','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1066],\"answers\":[\"Lyse classic\"],\"cf\":[]}}','\"\"','2016-03-11 09:00:40','Success'),(983,61,'vote_id_56e8729ad42eb','207.236.148.98','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[1067],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2016-03-15 16:37:47','Success');
/*!40000 ALTER TABLE `wp_yop2_poll_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop2_poll_questionmeta`
--

DROP TABLE IF EXISTS `wp_yop2_poll_questionmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop2_poll_questionmeta` (
  `meta_id` int(11) NOT NULL AUTO_INCREMENT,
  `yop_poll_question_id` int(11) NOT NULL,
  `meta_key` varchar(255) NOT NULL,
  `meta_value` longtext NOT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `yop_poll_question_id` (`yop_poll_question_id`)
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop2_poll_questionmeta`
--

LOCK TABLES `wp_yop2_poll_questionmeta` WRITE;
/*!40000 ALTER TABLE `wp_yop2_poll_questionmeta` DISABLE KEYS */;
INSERT INTO `wp_yop2_poll_questionmeta` VALUES (60,60,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";s:1:\"1\";s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";s:1:\"1\";s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";s:1:\"1\";s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:16:\"other_answers_id\";s:0:\"\";}'),(61,61,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";s:1:\"1\";s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";s:1:\"1\";s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";s:1:\"1\";s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:16:\"other_answers_id\";s:0:\"\";}'),(64,64,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";s:1:\"1\";s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";s:1:\"1\";s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";s:1:\"1\";s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:16:\"other_answers_id\";s:0:\"\";}'),(65,65,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";s:1:\"1\";s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";s:1:\"1\";s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";s:1:\"1\";s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:16:\"other_answers_id\";s:0:\"\";}'),(66,66,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";s:1:\"1\";s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";s:1:\"1\";s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";s:1:\"1\";s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:16:\"other_answers_id\";s:0:\"\";}'),(67,67,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";s:1:\"1\";s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";s:1:\"1\";s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";s:1:\"1\";s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:16:\"other_answers_id\";s:0:\"\";}'),(68,68,'options','a:96:{s:19:\"user_interface_type\";s:8:\"beginner\";s:17:\"is_default_answer\";s:2:\"no\";s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"01-01-1970 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:17:\"vote_button_label\";s:4:\"SEND\";s:14:\"template_width\";s:5:\"200px\";s:21:\"widget_template_width\";s:5:\"200px\";s:17:\"view_results_link\";s:3:\"yes\";s:23:\"view_results_link_label\";s:9:\"See Names\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:16:\"view_total_votes\";s:2:\"no\";s:22:\"view_total_votes_label\";s:30:\"Total Votes %POLL-TOTAL-VOTES%\";s:18:\"view_total_answers\";s:3:\"yes\";s:24:\"view_total_answers_label\";s:34:\"Total Answers %POLL-TOTAL-ANSWERS%\";s:18:\"message_after_vote\";s:13:\"See you soon!\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";i:30;s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";i:1;s:20:\"percentages_decimals\";s:1:\"0\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:17:\"loading_image_url\";s:0:\"\";s:19:\"redirect_after_vote\";s:2:\"no\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:11:\"date_format\";s:2:\"UE\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:23:\"is_default_other_answer\";s:3:\"yes\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";s:1:\"1\";s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";s:1:\"1\";s:15:\"sorting_results\";s:12:\"alphabetical\";s:15:\"sorting_answers\";s:10:\"as_defined\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:25:\"sorting_answers_direction\";s:3:\"asc\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";s:1:\"1\";s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";i:10;s:16:\"bar_border_color\";s:6:\"EDB918\";s:16:\"bar_border_width\";i:1;s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:11:\"archive_url\";b:0;s:18:\"archive_link_label\";s:17:\"View Poll Archive\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:18:\"poll_archive_order\";s:1:\"1\";s:22:\"archive_polls_per_page\";s:2:\"10\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";i:9999;s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:15:\"start_scheduler\";s:2:\"no\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:24:\"vote_permisions_facebook\";s:2:\"no\";s:30:\"vote_permisions_facebook_label\";s:21:\"Vote as Facebook User\";s:25:\"facebook_share_after_vote\";s:2:\"no\";s:26:\"facebook_share_description\";s:43:\"Just casted an YOP Poll vote on S.O.F.I.T.S\";s:22:\"vote_permisions_google\";s:2:\"no\";s:28:\"vote_permisions_google_label\";s:15:\"Vote as G+ User\";s:24:\"show_google_share_button\";s:2:\"no\";s:18:\"google_integration\";s:2:\"no\";s:20:\"facebook_integration\";s:2:\"no\";s:29:\"facebook_show_comments_widget\";s:2:\"no\";s:15:\"show_results_in\";s:3:\"bar\";s:24:\"yop_poll_archive_page_id\";s:2:\"29\";s:16:\"other_answers_id\";s:0:\"\";}');
/*!40000 ALTER TABLE `wp_yop2_poll_questionmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop2_poll_questions`
--

DROP TABLE IF EXISTS `wp_yop2_poll_questions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop2_poll_questions` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `poll_id` int(11) NOT NULL,
  `question` text NOT NULL,
  `type` text NOT NULL,
  `question_author` bigint(20) NOT NULL DEFAULT 0,
  `question_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `question_status` varchar(20) NOT NULL,
  `question_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `poll_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `poll_id` (`poll_id`)
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop2_poll_questions`
--

LOCK TABLES `wp_yop2_poll_questions` WRITE;
/*!40000 ALTER TABLE `wp_yop2_poll_questions` DISABLE KEYS */;
INSERT INTO `wp_yop2_poll_questions` VALUES (60,60,'I am able to attend this Saturday morning','text',7,'2016-02-09 16:16:52','active','2016-02-09 16:23:16',1),(61,61,'I am able to attend on a Friday (Sofits\\\' regular training time) after the snow melts','text',7,'2016-02-09 16:20:40','active','2016-02-09 16:29:09',1),(64,64,'ATTENDING FEBRUARY 26?','text',7,'2016-02-24 08:59:47','active','2016-02-24 08:59:47',1),(65,65,'AWAY FEBRUARY 26?','text',7,'2016-02-24 09:01:14','active','2016-02-24 09:01:14',1),(66,66,'ATTENDING CLASSIC SKI at P7?','text',7,'2016-03-02 10:27:54','active','2016-03-02 10:27:54',1),(67,67,'ATTENDING SKATE SKI at P6?','text',7,'2016-03-02 10:29:42','active','2016-03-02 10:33:25',1),(68,68,'Attending Friday March 11 at P19?','text',7,'2016-03-08 15:12:39','active','2016-03-08 15:12:39',1);
/*!40000 ALTER TABLE `wp_yop2_poll_questions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop2_poll_results`
--

DROP TABLE IF EXISTS `wp_yop2_poll_results`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop2_poll_results` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `poll_id` int(11) NOT NULL,
  `vote_id` varchar(256) NOT NULL,
  `ip` varchar(100) NOT NULL,
  `country` varchar(100) NOT NULL,
  `user_id` varchar(25) DEFAULT NULL,
  `user_type` enum('facebook','google','admin','wordpress','anonymous','default') NOT NULL DEFAULT 'default',
  `tr_id` varchar(256) DEFAULT NULL,
  `result_details` longtext DEFAULT NULL,
  `user_details` longtext DEFAULT NULL,
  `vote_date` datetime NOT NULL,
  PRIMARY KEY (`ID`),
  KEY `poll_id` (`poll_id`)
) ENGINE=InnoDB AUTO_INCREMENT=934 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop2_poll_results`
--

LOCK TABLES `wp_yop2_poll_results` WRITE;
/*!40000 ALTER TABLE `wp_yop2_poll_results` DISABLE KEYS */;
INSERT INTO `wp_yop2_poll_results` VALUES (1,0,'vote_id_544d4ea742100','173.206.160.237','','1','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 15:42:31'),(2,0,'vote_id_544d7b111f4c1','69.157.113.151','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 18:52:01'),(3,0,'vote_id_544d7e540dc95','99.240.147.167','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 19:05:56'),(4,0,'vote_id_544e2a7f67d52','184.148.18.7','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-27 07:20:31'),(5,0,'vote_id_54513dd082e9f','99.240.231.193','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-29 15:19:44'),(6,0,'vote_id_5451403c5cfba','99.246.66.128','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-29 15:30:04'),(7,0,'vote_id_5454eee941bb0','99.241.1.132','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-01 10:32:09'),(8,0,'vote_id_544d4eae67061','173.206.160.237','','1','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 15:42:38'),(9,0,'vote_id_544d7b16ee7ee','69.157.113.151','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 18:52:06'),(10,0,'vote_id_544d7e5f35f1e','99.240.147.167','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 19:06:07'),(11,0,'vote_id_544da0abb97b6','184.175.5.48','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-26 21:32:27'),(12,0,'vote_id_544e2a8a17e6a','184.148.18.7','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-27 07:20:42'),(13,0,'vote_id_5451339306bfa','173.206.129.45','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-29 14:36:03'),(14,0,'vote_id_5451406525471','99.246.66.128','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-29 15:30:45'),(15,0,'vote_id_545425dceb820','99.240.227.203','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-31 20:14:21'),(16,0,'vote_id_5454369c60d6f','99.240.146.197','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-10-31 21:25:48'),(17,0,'vote_id_5454eeff519be','99.241.1.132','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-01 10:32:31'),(18,0,'vote_id_5455430d129be','99.240.150.246','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-01 16:31:09'),(19,0,'vote_id_54562d692b6e7','184.144.138.68','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-02 08:11:05'),(20,0,'vote_id_545ac45413a3d','99.246.66.46','','0','default','','{\"q-0\":{\"question\":\"Interested? Type name and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-05 19:44:04'),(21,0,'vote_id_5460be7ad8088','184.144.138.68','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-10 08:32:48'),(22,0,'vote_id_546032d0f0006','173.206.144.232','','1','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-09 22:36:48'),(23,0,'vote_id_546130bb2c1cf','174.92.91.160','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-10 16:40:11'),(24,0,'vote_id_54627437c2169','99.241.1.132','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-11 15:40:23'),(25,0,'vote_id_5462de9a6b4ef','99.246.66.128','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-11 23:14:18'),(26,0,'vote_id_5463757c01844','99.246.66.46','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 09:58:04'),(27,0,'vote_id_5463d10f07a30','99.240.147.167','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 16:28:47'),(28,0,'vote_id_5463d3278fb64','64.229.223.94','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 16:37:43'),(29,0,'vote_id_54642096c662f','184.151.246.127','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:08:27'),(30,0,'vote_id_546420a821213','184.151.246.127','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:08:44'),(31,0,'vote_id_546420b1e9c32','184.151.246.127','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:08:46'),(32,0,'vote_id_546420d7d36ad','184.151.246.127','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:09:26'),(33,0,'vote_id_546420e1ef2ec','184.151.246.127','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:09:36'),(34,0,'vote_id_546420ec21ca8','184.151.246.127','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:09:44'),(35,0,'vote_id_54642bec9bcc4','99.246.42.219','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-12 22:56:28'),(36,0,'vote_id_546601f49c6b3','184.175.5.48','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-14 08:21:56'),(37,0,'vote_id_546634bc3e774','76.10.172.20','','0','default','','{\"q-0\":{\"question\":\"Write your name, event distance, Monday or Tuesday and hit  SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2014-11-14 11:58:36'),(38,0,'vote_id_54b493331e4bc','173.206.8.157','','1','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-12 22:38:27'),(39,0,'vote_id_54b50971ab58a','207.112.47.159','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 07:02:57'),(40,0,'vote_id_54b50983902cb','207.112.47.159','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 07:03:15'),(41,0,'vote_id_54b517a90a17e','99.240.146.197','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 08:03:37'),(42,0,'vote_id_54b51af1dc132','70.53.124.64','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 08:17:37'),(43,0,'vote_id_54b51d3a0e999','173.206.0.220','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 08:27:22'),(44,0,'vote_id_54b5214e7dd30','198.103.184.76','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 08:44:48'),(45,0,'vote_id_54b523e6e8e6e','70.31.28.120','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 08:55:50'),(46,0,'vote_id_54b52654a13d1','64.26.157.122','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 09:06:12'),(47,0,'vote_id_54b539c59068b','174.93.58.156','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 10:29:09'),(48,0,'vote_id_54b548072daed','173.206.137.4','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 11:29:59'),(49,0,'vote_id_54b54872193f9','99.241.171.139','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 11:31:46'),(50,0,'vote_id_54b55b90f0a06','69.158.173.105','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 12:53:21'),(51,0,'vote_id_54b563065eede','99.240.147.167','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 13:25:10'),(52,0,'vote_id_54b587d1063f1','69.156.1.2','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 16:02:09'),(53,0,'vote_id_54b5b8a7a5e66','75.119.224.240','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 19:30:31'),(54,0,'vote_id_54b67243bfeea','99.246.66.46','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-14 08:42:29'),(55,0,'vote_id_54b6c59b01550','99.246.118.96','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-14 14:38:03'),(56,0,'vote_id_54b71370aee96','99.241.135.224','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-14 20:10:08'),(57,0,'vote_id_54b7329758ebe','99.240.141.31','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-14 22:23:03'),(58,0,'vote_id_54b7b67c3a58e','99.240.235.17','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 07:45:48'),(59,0,'vote_id_54b7d4c216051','198.103.184.76','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 09:55:00'),(60,0,'vote_id_54b7de7b52e7d','99.246.66.128','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 10:36:27'),(61,0,'vote_id_54b7e56fbcdbe','184.145.139.119','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 11:06:07'),(62,0,'vote_id_54b7eefba9826','99.240.231.193','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 11:46:51'),(63,0,'vote_id_54b7fae465f58','99.246.42.219','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 12:37:40'),(64,0,'vote_id_54b83a7d649bd','99.241.1.132','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 17:09:01'),(65,0,'vote_id_54b83c84d5b84','70.53.60.175','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-15 17:17:40'),(66,0,'vote_id_54b57b2ff3b4c','69.158.169.132','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-13 15:08:16'),(67,0,'vote_id_54b66399074d6','184.144.137.74','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-14 07:39:53'),(68,0,'vote_id_54c25ff9c3db3','184.175.18.139','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-23 09:51:37'),(69,0,'vote_id_54c2699d958d8','69.156.1.2','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-23 10:32:45'),(70,0,'vote_id_54c272de8f56f','104.222.121.50','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-23 11:12:14'),(71,0,'vote_id_54c2a28ea9aad','50.66.94.54','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-23 14:35:42'),(72,0,'vote_id_54c179cec1438','184.145.139.119','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 17:29:34'),(73,0,'vote_id_54c0ff080cc21','64.26.157.122','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 08:45:44'),(74,0,'vote_id_54c0ba61747b8','206.47.116.177','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 03:52:49'),(75,0,'vote_id_54c026565964b','70.31.28.120','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 17:21:10'),(76,0,'vote_id_54c04abdab948','99.241.135.224','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 19:56:29'),(77,0,'vote_id_54bec0bdb8796','70.53.124.64','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-20 15:55:25'),(78,0,'vote_id_54c18ed821107','24.114.99.19','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 18:59:20'),(79,0,'vote_id_54c248746b8fd','184.145.142.37','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-23 08:11:16'),(80,0,'vote_id_54c166822a326','173.206.137.55','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 16:07:14'),(81,0,'vote_id_54c16ac26528b','99.246.118.96','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 16:25:22'),(82,0,'vote_id_54c14e433f145','69.158.169.132','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 14:23:47'),(83,0,'vote_id_54c13e22ae90d','99.240.147.167','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 13:14:58'),(84,0,'vote_id_54c13e43562d2','199.7.157.116','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 13:15:31'),(85,0,'vote_id_54c1024a167fb','70.53.60.175','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 08:59:38'),(86,0,'vote_id_54c11f795480c','64.26.157.122','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 11:04:09'),(87,0,'vote_id_54c12050d5b95','99.240.231.193','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 11:07:44'),(88,0,'vote_id_54c121a9eb500','64.56.228.129','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 11:13:30'),(89,0,'vote_id_54c0f60f94c37','184.144.137.74','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-22 08:07:27'),(90,0,'vote_id_54c07ef87aa92','99.240.141.31','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 23:39:20'),(91,0,'vote_id_54c057cb25a46','99.246.42.219','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 20:52:11'),(92,0,'vote_id_54c04aeb341a1','99.241.135.224','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 19:57:15'),(93,0,'vote_id_54bfa132a2260','198.103.184.76','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 07:53:08'),(94,0,'vote_id_54bfce5a963f8','99.240.235.17','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 11:05:46'),(95,0,'vote_id_54c0292d25508','69.157.22.213','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 17:33:17'),(96,0,'vote_id_54c0295878d0d','69.157.22.213','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-21 17:34:00'),(97,0,'vote_id_54be6319812ee','174.93.58.156','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-20 09:15:53'),(98,0,'vote_id_54be72e09bc26','99.241.171.139','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-20 10:23:12'),(99,0,'vote_id_54bebdbc27a5b','174.92.95.176','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-20 15:42:36'),(100,0,'vote_id_54bf102c2acbe','173.206.99.161','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-20 21:34:20'),(101,0,'vote_id_54be606e0a060','173.206.8.157','','1','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-20 09:04:30'),(102,0,'vote_id_54c5b67b3bb15','99.240.231.193','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-25 22:37:31'),(103,0,'vote_id_54c631e4445d1','70.54.49.2','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 07:24:04'),(104,0,'vote_id_54c6adebf338b','198.103.184.76','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 16:13:18'),(105,0,'vote_id_54c9008f084cc','184.145.139.119','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-28 10:30:23'),(106,0,'vote_id_54c943c15cb49','99.246.66.128','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-28 15:17:05'),(107,0,'vote_id_54c9453cb3e3a','104.222.121.50','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-28 15:23:24'),(108,0,'vote_id_54c9592fe400f','99.240.235.17','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-28 16:48:31'),(109,0,'vote_id_54c9ab240f88a','69.156.1.218','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-28 22:38:12'),(110,0,'vote_id_54ca60182b7e4','173.206.137.186','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 11:30:16'),(111,0,'vote_id_54c5a088b02e3','99.240.147.167','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-25 21:03:52'),(112,0,'vote_id_54c5a0fd94b44','70.26.28.57','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-25 21:05:49'),(113,0,'vote_id_54c646cfb5f8d','99.246.66.46','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 08:53:19'),(114,0,'vote_id_54c64bf0be0d2','64.56.253.57','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 09:15:12'),(115,0,'vote_id_54c6555f45f94','70.31.28.120','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 09:55:27'),(116,0,'vote_id_54c6888c61e1e','173.206.0.159','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 13:33:48'),(117,0,'vote_id_54c7fbfc4a981','64.26.157.122','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-27 15:58:36'),(118,0,'vote_id_54c7fc0b9596d','64.26.157.122','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-27 15:58:51'),(119,0,'vote_id_54c7fc5c8b5af','64.26.157.122','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-27 16:00:12'),(120,0,'vote_id_54c81f84a439a','99.241.135.224','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-27 18:30:12'),(121,0,'vote_id_54c83ce5d2b10','184.148.16.39','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-27 20:35:33'),(122,0,'vote_id_54ca37d75906f','199.7.157.76','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 08:38:31'),(123,0,'vote_id_54ca5729685b4','184.175.18.139','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 10:52:09'),(124,0,'vote_id_54ca683f68269','99.241.1.132','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 12:05:03'),(125,0,'vote_id_54cabcf5bdfe3','174.92.91.157','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 18:06:29'),(126,0,'vote_id_54c632c99655d','99.241.171.139','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-26 07:27:53'),(127,0,'vote_id_54c785da51574','99.246.118.96','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-27 07:34:34'),(128,0,'vote_id_54ca5737e763c','174.92.93.226','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 10:52:23'),(129,0,'vote_id_54cab22b71115','64.229.223.210','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 17:20:27'),(130,0,'vote_id_54cacd5744ffd','99.246.42.219','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-29 19:16:23'),(131,0,'vote_id_54cb7d2713dca','184.144.142.58','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-01-30 07:46:31'),(132,0,'vote_id_54f50b5b551b8','173.206.42.200','','1','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-02 20:16:11'),(133,0,'vote_id_54f50c9c55ce5','99.240.231.193','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-02 20:21:32'),(134,0,'vote_id_54f50cad40064','76.10.172.219','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-02 20:21:49'),(135,0,'vote_id_54f51820944ac','99.246.66.128','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-02 21:10:40'),(136,0,'vote_id_54f51af6af4fe','74.15.168.167','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-02 21:22:46'),(137,0,'vote_id_54f5b7c000a87','70.54.49.2','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-03 08:31:44'),(138,0,'vote_id_54f5c49f2cf21','99.241.1.132','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-03 09:26:39'),(139,0,'vote_id_54f61e47cf00d','70.52.148.204','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-03 15:49:11'),(140,0,'vote_id_54f61f922341e','198.103.184.76','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-03 15:54:42'),(141,0,'vote_id_54f664640f7ea','69.157.115.37','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-03 20:48:20'),(142,0,'vote_id_54f79548dff8d','173.206.95.122','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-04 18:29:12'),(143,0,'vote_id_54f79fdf161e0','99.241.135.224','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-04 19:14:23'),(144,0,'vote_id_54f87baf38a1f','64.229.220.99','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-05 10:52:15'),(145,0,'vote_id_54f8ae23014db','184.144.137.60','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-05 14:27:31'),(146,0,'vote_id_54f912ff1ee71','99.246.66.46','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-05 21:37:51'),(147,0,'vote_id_5500388f3d22b','64.56.224.88','','1','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 08:43:59'),(148,0,'vote_id_5500416766174','174.93.175.60','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 09:21:43'),(149,0,'vote_id_5500526db8910','70.53.127.15','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 10:34:21'),(150,0,'vote_id_55005844b785f','69.157.22.69','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 10:59:16'),(151,0,'vote_id_550073b4c1414','70.54.49.2','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 12:56:20'),(152,0,'vote_id_55009a7eeb151','69.157.115.37','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 15:41:50'),(153,0,'vote_id_5500a90c29773','64.229.220.99','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 16:43:56'),(154,0,'vote_id_5500b4fff3ee1','99.246.42.219','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 17:34:56'),(155,0,'vote_id_5500cabaaec42','99.246.66.128','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 19:07:38'),(156,0,'vote_id_5500dccd61c2f','76.10.172.219','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-11 20:24:45'),(157,0,'vote_id_550187b5ae2f6','216.254.163.24','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-12 08:33:57'),(158,0,'vote_id_5501b3b86eeb3','99.241.135.224','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-12 11:41:44'),(159,0,'vote_id_5501d81dc6ff7','99.240.147.167','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-12 14:17:01'),(160,0,'vote_id_5501db309bb6c','198.103.184.76','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-12 14:30:08'),(161,0,'vote_id_5501f19615436','207.112.111.63','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-12 16:05:42'),(162,0,'vote_id_5502e25805d28','69.158.15.247','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-13 09:12:56'),(163,0,'vote_id_5502ff6292ae3','99.240.231.193','','0','default','','{\"q-0\":{\"question\":\"Type NAME,  hit SEND\",\"id\":0,\"a\":[null],\"answers\":[\"\"]}}','','2015-03-13 11:16:50'),(165,2,'vote_id_55f9d0d828ad7','173.206.1.179','Canada','0','anonymous','','{\"q-2\":{\"question\":\"Who is Attending on Sept 25?\",\"id\":2,\"a\":[165],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-09-16 16:28:09'),(166,2,'vote_id_55faca13282c5','174.91.32.63','Canada','0','anonymous','','{\"q-2\":{\"question\":\"Who is Attending on Sept 25?\",\"id\":2,\"a\":[166],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-09-17 10:11:41'),(167,1,'vote_id_55facbed63018','174.91.32.63','Canada','0','anonymous','','{\"q-1\":{\"question\":\"Attending on September 25?\",\"id\":1,\"a\":[167],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-09-17 10:20:35'),(172,4,'vote_id_560061e7c4679','173.206.1.179','Canada','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[179],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-09-21 16:00:46'),(173,4,'vote_id_56014f955ba89','65.92.112.246','Canada','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[180],\"answers\":[\"Susan O\"],\"cf\":[]}}','\"\"','2015-09-22 08:54:52'),(174,4,'vote_id_5601846e9a2b2','99.240.162.239','Canada','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[177],\"answers\":[\"your name?\"],\"cf\":[]}}','\"\"','2015-09-22 12:42:24'),(175,4,'vote_id_560184c1e74cb','99.240.162.239','Canada','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[181],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-09-22 12:43:54'),(176,4,'vote_id_5601b8b541ac6','99.246.66.128','Canada','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[182],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-09-22 16:23:21'),(177,4,'vote_id_56028fc3a2cd2','173.206.163.24','Canada','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[183],\"answers\":[\"JANICE\"],\"cf\":[]}}','\"\"','2015-09-23 07:40:53'),(178,4,'vote_id_56033f6eb8c16','198.103.184.76','Canada','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[184],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2015-09-23 20:10:42'),(179,4,'vote_id_560346fb6b282','67.230.128.20','Canada','0','anonymous','','{\"q-4\":{\"question\":\"Are you coming to the Sept. 25 practice?\",\"id\":4,\"a\":[177,185],\"answers\":[\"your name?\",\"Darlene Pearson\"],\"cf\":[]}}','\"\"','2015-09-23 20:42:51'),(180,5,'vote_id_5606ac8a6117a','108.63.102.247','Canada','0','anonymous','','{\"q-5\":{\"question\":\"Are you coming to the October 2  practice?\",\"id\":5,\"a\":[204],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-09-26 10:32:43'),(181,6,'vote_id_5606c72aaf410','108.63.102.247','Canada','0','anonymous','','{\"q-6\":{\"question\":\"Will you be AWAY October 2?\",\"id\":6,\"a\":[197],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-09-26 12:26:20'),(182,9,'vote_id_5606cb383fb5c','108.63.102.247','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[210],\"answers\":[\"Jo-Ann H\"],\"cf\":[]}}','\"\"','2015-09-26 12:43:37'),(183,9,'vote_id_56095d8f4bd39','184.145.30.118','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[211],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-09-28 11:32:39'),(184,9,'vote_id_560961b95379a','24.52.238.141','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[212],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-09-28 11:50:19'),(185,9,'vote_id_5609690e38840','99.246.42.219','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[213],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-09-28 12:21:39'),(186,9,'vote_id_56096a1967c0f','104.247.234.213','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[214],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-09-28 12:26:05'),(187,9,'vote_id_56097857abf97','99.246.66.128','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[215],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-09-28 13:26:50'),(188,9,'vote_id_560978bd42df4','69.157.114.71','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[216],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-09-28 13:28:30'),(189,9,'vote_id_56097a36ce7a4','108.162.170.98','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[217],\"answers\":[\"Jennifer W\"],\"cf\":[]}}','\"\"','2015-09-28 13:35:13'),(190,11,'vote_id_56098710f1934','174.93.172.39','Canada','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[218],\"answers\":[\"Janey  - will be away\"],\"cf\":[]}}','\"\"','2015-09-28 14:29:48'),(191,9,'vote_id_560991c5aa3af','184.145.142.241','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[219],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-09-28 15:15:21'),(192,9,'vote_id_5609cc109dbce','65.92.112.246','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[220],\"answers\":[\"Susan O\"],\"cf\":[]}}','\"\"','2015-09-28 19:24:03'),(193,9,'vote_id_5609e50b16c79','99.240.162.239','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[221],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-09-28 21:10:37'),(194,11,'vote_id_5609f5ea3b671','74.214.227.134','United States','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[222],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-09-28 22:22:36'),(195,9,'vote_id_560a046d44433','173.206.79.35','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[223],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-09-28 23:24:33'),(196,9,'vote_id_560a873246b9f','137.122.64.32','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[224],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2015-09-29 08:42:31'),(197,9,'vote_id_560a8a7a49bf1','206.47.112.83','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[225],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-09-29 08:56:32'),(198,11,'vote_id_560ac35d250be','108.63.160.50','Canada','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[226],\"answers\":[\"Julie - in Utah\"],\"cf\":[]}}','\"\"','2015-09-29 12:59:11'),(199,9,'vote_id_560adc19c8b94','67.230.128.47','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[227],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-09-29 14:44:43'),(200,9,'vote_id_560aeb17db052','174.92.92.174','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[228],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-09-29 15:48:43'),(201,9,'vote_id_560b2c917709f','206.132.178.214','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[229],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-09-29 20:28:10'),(202,9,'vote_id_560bce22f12dd','198.103.184.76','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[230],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2015-09-30 07:57:27'),(203,9,'vote_id_560bd9760d547','99.240.235.17','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[231],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-09-30 08:45:43'),(204,11,'vote_id_560bf64069bdb','108.162.170.98','Canada','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[232],\"answers\":[\"Jennifer W\"],\"cf\":[]}}','\"\"','2015-09-30 10:48:34'),(205,9,'vote_id_560c094924451','174.95.240.30','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[233],\"answers\":[\"Ellie Wilkinson\"],\"cf\":[]}}','\"\"','2015-09-30 12:09:49'),(206,9,'vote_id_560c14fdef54a','99.248.98.53','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[234],\"answers\":[\"Maggie King\"],\"cf\":[]}}','\"\"','2015-09-30 12:59:43'),(207,11,'vote_id_560c50ad80d74','70.26.17.241','Canada','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[235],\"answers\":[\"Shelley\"],\"cf\":[]}}','\"\"','2015-09-30 17:14:22'),(208,9,'vote_id_560c90d445e2f','108.63.200.65','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[236],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-09-30 21:48:07'),(209,11,'vote_id_560c9705cc799','76.66.153.68','Canada','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[237],\"answers\":[\"Susan NY\"],\"cf\":[]}}','\"\"','2015-09-30 22:14:32'),(210,11,'vote_id_560ccc12bed82','99.240.141.31','Canada','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[238],\"answers\":[\"Joanne B\"],\"cf\":[]}}','\"\"','2015-10-01 02:00:51'),(211,9,'vote_id_560ddcae5392f','99.245.243.252','','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[239],\"answers\":[\"Barbara L\"],\"cf\":[]}}','\"\"','2015-10-01 21:24:59'),(212,11,'vote_id_560e6bd3acb1d','65.92.112.246','Canada','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[240],\"answers\":[\"Susan O - surprise out of town guests\"],\"cf\":[]}}','\"\"','2015-10-02 07:34:45'),(213,9,'vote_id_560e6f11860d5','65.93.71.190','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[241],\"answers\":[\"Pauline\"],\"cf\":[]}}','\"\"','2015-10-02 07:48:48'),(214,9,'vote_id_560e9291a173e','99.246.119.165','Canada','0','anonymous','','{\"q-9\":{\"question\":\"If you are ATTENDING Oct 2\",\"id\":9,\"a\":[242],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2015-10-02 10:20:06'),(215,11,'vote_id_560e94b3254f2','206.47.100.87','Canada','0','anonymous','','{\"q-11\":{\"question\":\"If you are AWAY on Oct 2\",\"id\":11,\"a\":[243],\"answers\":[\"Fay - company has arrived and I cannot make it afterall!\"],\"cf\":[]}}','\"\"','2015-10-02 10:29:17'),(216,12,'vote_id_560f14f1717d6','108.63.117.22','Canada','0','anonymous','','{\"q-12\":{\"question\":\"If you are attending October 9,\",\"id\":12,\"a\":[246],\"answers\":[\"Jo-Ann H\"],\"cf\":[]}}','\"\"','2015-10-02 19:36:18'),(217,13,'vote_id_5611192398ebb','70.31.76.178','Canada','0','anonymous','','{\"q-13\":{\"question\":\"AWAY on Oct 9?\",\"id\":13,\"a\":[247],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-10-04 08:18:44'),(218,13,'vote_id_56111b0fe8298','104.247.234.213','Canada','0','anonymous','','{\"q-13\":{\"question\":\"AWAY on Oct 9?\",\"id\":13,\"a\":[248],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-10-04 08:26:56'),(219,13,'vote_id_56111d15a58f4','69.157.114.71','Canada','0','anonymous','','{\"q-13\":{\"question\":\"AWAY on Oct 9?\",\"id\":13,\"a\":[249],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-10-04 08:35:35'),(220,12,'vote_id_56111d1e6b6a3','69.157.114.71','Canada','0','anonymous','','{\"q-12\":{\"question\":\"If you are attending October 9,\",\"id\":12,\"a\":[250],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-10-04 08:35:43'),(221,12,'vote_id_561122332ea84','99.240.162.239','Canada','0','anonymous','','{\"q-12\":{\"question\":\"If you are attending October 9,\",\"id\":12,\"a\":[251],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-10-04 08:57:24'),(222,12,'vote_id_561128dc4a57b','99.245.243.252','Canada','0','anonymous','','{\"q-12\":{\"question\":\"If you are attending October 9,\",\"id\":12,\"a\":[244,252],\"answers\":[\"Write your NAME and click SEND.\",\"Barbara L\"],\"cf\":[]}}','\"\"','2015-10-04 09:25:49'),(223,12,'vote_id_561141cb08db6','69.158.168.219','Canada','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[253],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-10-04 11:12:12'),(224,12,'vote_id_561148c6d4150','24.121.109.247','United States','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[254],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-10-04 11:42:00'),(225,12,'vote_id_561151f86fcb3','174.93.172.182','Canada','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[255],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-10-04 12:21:15'),(226,12,'vote_id_56115521796ed','184.145.142.241','Canada','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[256],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-10-04 12:34:44'),(227,12,'vote_id_56116a531d23b','99.246.42.219','Canada','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[257],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-10-04 14:05:08'),(228,12,'vote_id_561183b055503','206.132.178.214','Canada','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[258],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-10-04 15:53:22'),(229,12,'vote_id_56118e549ae20','198.103.184.76','Canada','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[259],\"answers\":[\"Marie-France=undecided sorry\"],\"cf\":[]}}','\"\"','2015-10-04 16:38:47'),(230,12,'vote_id_5611d6bd16381','76.66.153.68','Canada','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[260],\"answers\":[\"Susan ny\"],\"cf\":[]}}','\"\"','2015-10-04 21:47:43'),(231,12,'vote_id_5611dd9e4b2ec','99.240.231.193','Canada','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[261],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-10-04 22:17:08'),(232,12,'vote_id_561277b20d350','67.230.128.12','Canada','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[262],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-10-05 09:14:30'),(233,13,'vote_id_561289d9abfc1','184.151.246.97','Canada','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[263],\"answers\":[\"Joanne\"],\"cf\":[]}}','\"\"','2015-10-05 10:31:57'),(234,12,'vote_id_5612cd70ac1cc','184.145.30.118','','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[264],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-10-05 15:21:26'),(235,12,'vote_id_561300f77ef39','108.63.193.62','','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[265],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-10-05 19:01:09'),(236,12,'vote_id_561320229ca4a','108.162.170.98','','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[266],\"answers\":[\"Jennifer (still not sure...)\"],\"cf\":[]}}','\"\"','2015-10-05 21:14:08'),(237,12,'vote_id_5613cf2da42d8','70.55.27.176','','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[267],\"answers\":[\"Margaret McLaren  (1 attending )\"],\"cf\":[]}}','\"\"','2015-10-06 09:41:01'),(238,12,'vote_id_5613e46646315','99.246.66.128','','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[268],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-10-06 11:11:33'),(239,12,'vote_id_561418381afdf','99.240.171.186','','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[244,269],\"answers\":[\"Write your NAME, click SEND.\",\"Gail\"],\"cf\":[]}}','\"\"','2015-10-06 14:52:47'),(240,12,'vote_id_5614620389b11','99.240.235.17','','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[270],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-10-06 20:07:28'),(241,12,'vote_id_56156ca45d664','174.95.184.165','Canada','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[271],\"answers\":[\"Ellie Wilkinson\"],\"cf\":[]}}','\"\"','2015-10-07 15:04:13'),(242,13,'vote_id_5615c99abc72f','99.248.98.53','Canada','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[272],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-10-07 21:40:44'),(243,13,'vote_id_561676bf5165b','24.114.81.173','Canada','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[273],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2015-10-08 09:59:34'),(244,12,'vote_id_5616cc94ebe58','65.92.112.246','Canada','0','anonymous','','{\"q-12\":{\"question\":\"ATTENDING October 9?\",\"id\":12,\"a\":[274],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-10-08 16:05:52'),(245,13,'vote_id_5617271a7e9c2','67.230.128.11','Canada','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[275],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-10-08 22:31:56'),(246,13,'vote_id_5617c68aa696c','69.157.115.124','Canada','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[276],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2015-10-09 09:52:13'),(247,13,'vote_id_5617c8a2dbfdf','65.92.112.246','Canada','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[277],\"answers\":[\"Susan o recovering from cold\"],\"cf\":[]}}','\"\"','2015-10-09 10:01:13'),(248,13,'vote_id_5617cf289343d','184.145.142.241','Canada','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[278],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-10-09 10:28:57'),(249,13,'vote_id_5617d32f3c1db','99.245.243.252','Canada','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[279],\"answers\":[\"barbara l - feeling under the weather\"],\"cf\":[]}}','\"\"','2015-10-09 10:46:09'),(250,13,'vote_id_5617d405ac4c2','174.95.236.107','Canada','0','anonymous','','{\"q-13\":{\"question\":\"AWAY  Oct 9?\",\"id\":13,\"a\":[280],\"answers\":[\"Ellie received very bad news. Must be with friend.\"],\"cf\":[]}}','\"\"','2015-10-09 10:49:42'),(251,14,'vote_id_56180e0f4852c','173.206.19.180','Canada','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-09 14:57:20'),(252,16,'vote_id_561811550a3b3','173.206.19.180','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[286],\"answers\":[\"Jo-Ann H.\"],\"cf\":[]}}','\"\"','2015-10-09 15:11:19'),(253,14,'vote_id_561820bb53402','99.246.42.219','Canada','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-09 16:17:00'),(254,14,'vote_id_561820d135bb9','76.10.172.239','Canada','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-09 16:17:22'),(255,16,'vote_id_561820d2245e5','99.246.42.219','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[287],\"answers\":[\"pat\"],\"cf\":[]}}','\"\"','2015-10-09 16:17:22'),(256,16,'vote_id_56182160595ef','174.93.172.182','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[288],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-10-09 16:19:47'),(257,14,'vote_id_56182178579da','174.93.172.182','Canada','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-09 16:20:09'),(258,16,'vote_id_5618674782d59','184.148.10.145','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[289],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-10-09 21:18:01'),(259,14,'vote_id_56186cc84ec73','69.158.171.10','Canada','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-09 21:41:29'),(260,16,'vote_id_56186cd7390de','69.158.171.10','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[290],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-10-09 21:41:44'),(261,16,'vote_id_561871ebed822','70.55.27.176','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[291],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-10-09 22:03:25'),(262,14,'vote_id_5618721710a0c','70.55.27.176','Canada','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-09 22:04:07'),(263,16,'vote_id_56198171d864f','76.66.153.68','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[292],\"answers\":[\"susan NY\"],\"cf\":[]}}','\"\"','2015-10-10 17:21:57'),(264,14,'vote_id_56198184bd6a4','76.66.153.68','Canada','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[282],\"answers\":[\"Mooney\'s Bay\"],\"cf\":[]}}','\"\"','2015-10-10 17:22:14'),(266,16,'vote_id_561bdb157956a','99.240.171.186','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[294],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2015-10-12 12:08:58'),(267,14,'vote_id_561bdb34ad4e0','99.240.171.186','Canada','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[282],\"answers\":[\"Mooney\'s Bay\"],\"cf\":[]}}','\"\"','2015-10-12 12:09:28'),(268,14,'vote_id_561be32b07518','198.103.184.76','Canada','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-12 12:43:26'),(269,17,'vote_id_561be370df8e8','198.103.184.76','Canada','0','anonymous','','{\"q-17\":{\"question\":\"AWAY October 16?\",\"id\":17,\"a\":[285,295],\"answers\":[\"Write NAME and hit SEND\",\"Marie-France\"],\"cf\":[]}}','\"\"','2015-10-12 12:44:34'),(270,14,'vote_id_561c3bc5bd972','99.248.98.53','Canada','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-12 19:01:30'),(271,16,'vote_id_561c3bd142a8c','99.248.98.53','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[296],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-10-12 19:01:40'),(272,16,'vote_id_561cee4eb1280','108.63.163.120','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[297],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-10-13 07:43:13'),(273,14,'vote_id_561cee833949f','108.63.163.120','Canada','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[281],\"answers\":[\"Gatineau Park\"],\"cf\":[]}}','\"\"','2015-10-13 07:44:05'),(274,16,'vote_id_561ceeaa52249','173.206.81.118','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[298],\"answers\":[\"Julie McInnes\"],\"cf\":[]}}','\"\"','2015-10-13 07:44:45'),(275,17,'vote_id_561d36f60b728','108.63.196.195','Canada','0','anonymous','','{\"q-17\":{\"question\":\"AWAY October 16?\",\"id\":17,\"a\":[285,299],\"answers\":[\"Write NAME and hit SEND\",\"Susan Riley _ wedding in Kitchener, alas.\"],\"cf\":[]}}','\"\"','2015-10-13 12:53:11'),(276,14,'vote_id_561e40e570ec0','99.240.235.17','Canada','0','anonymous','','{\"q-14\":{\"question\":\"Gatineau Park or Mooney\'s Bay?\",\"id\":14,\"a\":[282],\"answers\":[\"Mooney\'s Bay\"],\"cf\":[]}}','\"\"','2015-10-14 07:47:51'),(277,16,'vote_id_561e40ff2bf7a','99.240.235.17','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[300],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-10-14 07:48:16'),(278,16,'vote_id_561e9ce609a4e','99.246.119.165','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[301],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2015-10-14 14:20:24'),(279,16,'vote_id_561eb19e5de46','99.246.66.128','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[302],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-10-14 15:48:53'),(280,16,'vote_id_561ebadc38f70','184.145.30.118','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[303],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-10-14 16:28:19'),(281,16,'vote_id_561ec1f822bf2','69.165.135.41','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[304],\"answers\":[\"anne\"],\"cf\":[]}}','\"\"','2015-10-14 16:58:33'),(282,16,'vote_id_561ed566d4358','69.157.114.71','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[305],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-10-14 18:21:31'),(283,16,'vote_id_561efe9e7cbea','69.157.115.86','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[306],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-10-14 21:17:20'),(284,17,'vote_id_561f0cf546d4e','70.55.27.176','Canada','0','anonymous','','{\"q-17\":{\"question\":\"AWAY October 16?\",\"id\":17,\"a\":[307],\"answers\":[\"Margaret McLaren  Sorry I can\\\\\'t make it this week\"],\"cf\":[]}}','\"\"','2015-10-14 22:18:34'),(285,16,'vote_id_561fa166942f1','206.132.178.214','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[308],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-10-15 08:51:53'),(286,16,'vote_id_561fb2437c93d','206.47.116.169','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[309],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-10-15 10:03:59'),(287,17,'vote_id_561fb26253c86','174.95.238.101','Canada','0','anonymous','','{\"q-17\":{\"question\":\"AWAY October 16?\",\"id\":17,\"a\":[310],\"answers\":[\"Ellie Wilkinson : sorry I\\\\\'m away this weekend and have to leave mid morning.\"],\"cf\":[]}}','\"\"','2015-10-15 10:04:27'),(288,16,'vote_id_5620158f5d0c6','99.240.231.193','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[311],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-10-15 17:07:32'),(289,16,'vote_id_56203b370717f','65.92.112.246','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[312],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-10-15 19:48:09'),(290,16,'vote_id_5620432f8e0f5','99.245.243.252','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[313],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2015-10-15 20:22:11'),(291,16,'vote_id_56205a2fb9a34','99.240.162.239','Canada','0','anonymous','','{\"q-16\":{\"question\":\"ATTENDING October 16?\",\"id\":16,\"a\":[314],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-10-15 22:00:17'),(292,17,'vote_id_56205e4d0865d','174.114.160.65','Canada','0','anonymous','','{\"q-17\":{\"question\":\"AWAY October 16?\",\"id\":17,\"a\":[315],\"answers\":[\"Joanne- Looking at rentals, to find a roof for over our heads!\"],\"cf\":[]}}','\"\"','2015-10-15 22:17:53'),(293,20,'vote_id_5624478889922','173.206.36.36','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[349],\"answers\":[\"Jo-Ann H\"],\"cf\":[]}}','\"\"','2015-10-18 21:29:47'),(295,23,'vote_id_56244bf0b8384','173.206.36.36','Canada','0','anonymous','','{\"q-23\":{\"question\":\"Which of these can you bring to practice starting in 2 weeks?\",\"id\":23,\"a\":[354],\"answers\":[\"Jo-Ann H: 6lb, 8lb and 10lb medicine balls\"],\"cf\":[]}}','\"\"','2015-10-18 21:48:34'),(296,23,'vote_id_56244c2730a9d','173.206.36.36','Canada','0','anonymous','','{\"q-23\":{\"question\":\"Which of these can you bring to practice starting in 2 weeks?\",\"id\":23,\"a\":[355],\"answers\":[\"Jo-Ann H:   2 large exercise balls and one medium sized.  ( (the ones with air)\"],\"cf\":[]}}','\"\"','2015-10-18 21:49:29'),(297,20,'vote_id_562452c87fa0b','99.240.231.193','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[356],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-10-18 22:17:46'),(298,23,'vote_id_5624557822074','184.148.28.111','Canada','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[357],\"answers\":[\"Penny: 1 air filled exercise ball\"],\"cf\":[]}}','\"\"','2015-10-18 22:29:14'),(299,20,'vote_id_56245591b13de','184.148.28.111','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[358],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-10-18 22:29:40'),(300,20,'vote_id_5624e28894bd3','184.145.30.118','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[359],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-10-19 08:31:09'),(301,20,'vote_id_5624e71192786','108.63.189.161','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[360],\"answers\":[\"Julie M\"],\"cf\":[]}}','\"\"','2015-10-19 08:50:29'),(302,20,'vote_id_5624ecae923bf','69.158.168.66','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[361],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-10-19 09:14:27'),(303,23,'vote_id_5624ed297de38','69.158.168.66','Canada','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[362],\"answers\":[\"Rosy: 10 lb medicine ball; 2 x 8 lb non-bouncing medicine balls; 1 medium air ball; several small balls (between the knees for squats etc)\"],\"cf\":[]}}','\"\"','2015-10-19 09:16:38'),(304,20,'vote_id_5625034da3aa6','70.55.27.176','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[363],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-10-19 10:50:54'),(305,20,'vote_id_56252c5a431a3','137.122.64.14','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[348,364],\"answers\":[\"Write your NAME and hit SEND\",\"Gail\"],\"cf\":[]}}','\"\"','2015-10-19 13:46:06'),(306,20,'vote_id_5625362e1656a','65.92.112.246','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[366],\"answers\":[\"Susan O\"],\"cf\":[]}}','\"\"','2015-10-19 14:28:04'),(307,20,'vote_id_5625362875fb1','65.92.112.246','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[365],\"answers\":[\"Susan O\"],\"cf\":[]}}','\"\"','2015-10-19 14:28:07'),(308,23,'vote_id_56253670baec8','65.92.112.246','Canada','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[367],\"answers\":[\"Susan O - 1 large 1 med Stability ball (attending)\"],\"cf\":[]}}','\"\"','2015-10-19 14:29:06'),(309,20,'vote_id_56254c9993a4d','99.240.162.239','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[368],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-10-19 16:03:47'),(310,20,'vote_id_5625579a8eac7','184.144.140.198','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[369],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-10-19 16:50:41'),(311,23,'vote_id_562557ee00ce8','184.144.140.198','Canada','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[370],\"answers\":[\"Janey,  i 10lb m\\u00e9decine ball\"],\"cf\":[]}}','\"\"','2015-10-19 16:52:01'),(312,20,'vote_id_56255f9a684f3','67.230.128.22','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[371],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-10-19 17:24:49'),(313,20,'vote_id_562563a2c2d5e','69.157.114.71','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[372],\"answers\":[\"ila\"],\"cf\":[]}}','\"\"','2015-10-19 17:41:59'),(314,22,'vote_id_5625752134380','99.245.243.252','Canada','0','anonymous','','{\"q-22\":{\"question\":\"AWAY Oct 23?\",\"id\":22,\"a\":[352,373],\"answers\":[\"Write your NAME and hit SEND.\",\"Barbara L - unable to attend this week. Rats!\"],\"cf\":[]}}','\"\"','2015-10-19 18:56:35'),(315,20,'vote_id_5625923e2e3fa','99.246.42.219','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[374],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-10-19 21:00:50'),(316,23,'vote_id_562629a2bbf69','198.103.184.76','Canada','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[375],\"answers\":[\"Marie-France -1 medecine ball of 8 pounds\"],\"cf\":[]}}','\"\"','2015-10-20 07:46:44'),(317,20,'vote_id_562629bf00862','198.103.184.76','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[376],\"answers\":[\"Marie-France but uncertain at the present moment\"],\"cf\":[]}}','\"\"','2015-10-20 07:47:11'),(318,20,'vote_id_56263740acc32','108.63.126.77','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[377],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-10-20 08:44:52'),(319,20,'vote_id_5626983d1e4ac','206.47.100.241','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[378],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-10-20 15:38:39'),(320,20,'vote_id_5626a658432e5','69.157.115.86','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[379],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-10-20 16:38:50'),(321,20,'vote_id_5626d3d9cb9df','206.132.178.214','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[380],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-10-20 19:52:58'),(322,20,'vote_id_5626d5211c341','108.63.200.148','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[381],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-10-20 19:58:28'),(323,20,'vote_id_5627abe69ee19','108.162.170.98','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[348,382],\"answers\":[\"Write your NAME and hit SEND\",\"Jennifer\"],\"cf\":[]}}','\"\"','2015-10-21 11:14:48'),(324,20,'vote_id_5627d90e3695a','99.240.235.17','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[383],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-10-21 14:27:28'),(325,22,'vote_id_562826eb12f2e','184.145.42.73','Canada','0','anonymous','','{\"q-22\":{\"question\":\"AWAY Oct 23?\",\"id\":22,\"a\":[384],\"answers\":[\"Susan Ny\"],\"cf\":[]}}','\"\"','2015-10-21 19:59:40'),(326,20,'vote_id_5628273c6e4d6','174.95.186.84','Canada','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[385],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2015-10-21 20:01:01'),(327,22,'vote_id_5628cef8734f2','99.246.119.165','Canada','0','anonymous','','{\"q-22\":{\"question\":\"AWAY Oct 23?\",\"id\":22,\"a\":[386],\"answers\":[\"Sandra -working!\"],\"cf\":[]}}','\"\"','2015-10-22 07:56:43'),(328,20,'vote_id_5629702bd71c9','69.157.115.124','','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[387],\"answers\":[\"Linda 1\"],\"cf\":[]}}','\"\"','2015-10-22 19:25:28'),(329,20,'vote_id_56298f8b48f0e','69.165.135.41','','0','anonymous','','{\"q-20\":{\"question\":\"Attending Oct 23?\",\"id\":20,\"a\":[388],\"answers\":[\"anne\"],\"cf\":[]}}','\"\"','2015-10-22 21:39:20'),(330,22,'vote_id_562a2d96708a8','69.157.115.86','Canada','0','anonymous','','{\"q-22\":{\"question\":\"AWAY Oct 23?\",\"id\":22,\"a\":[389],\"answers\":[\"Liz R - sick\"],\"cf\":[]}}','\"\"','2015-10-23 08:52:40'),(331,23,'vote_id_562ea2c30815b','206.47.113.84','Canada','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[390],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-10-26 18:01:41'),(332,23,'vote_id_56301cbf98800','99.246.42.219','Canada','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[391],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-10-27 20:54:26'),(333,23,'vote_id_563025dab5d8a','99.248.98.53','Canada','0','anonymous','','{\"q-23\":{\"question\":\"Who can bring a medicine ball or exercise ball to practice starting in 2 weeks?\",\"id\":23,\"a\":[392],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-10-27 21:33:16'),(334,24,'vote_id_5630bdc626ab7','173.206.36.36','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[394],\"answers\":[\"Jo-Ann H, 6 +8,+  8 +10 lb med balls.\"],\"cf\":[]}}','\"\"','2015-10-28 08:21:29'),(335,24,'vote_id_5630be745255e','173.206.84.124','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[395],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-10-28 08:24:24'),(336,24,'vote_id_5630c44c13e3d','69.157.114.71','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[396],\"answers\":[\"Ila - 8 lb ball\"],\"cf\":[]}}','\"\"','2015-10-28 08:49:17'),(337,24,'vote_id_5630d2f2069f3','198.103.184.76','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[398],\"answers\":[\"Marie-France, 8lbs ball probaly not weighted\"],\"cf\":[]}}','\"\"','2015-10-28 09:51:49'),(338,24,'vote_id_5630d3fa727f4','174.92.95.119','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[399],\"answers\":[\"Rosy, 10 lb ball which bounces, 8 lb non-bouncing, 8 lb non-bouncing\"],\"cf\":[]}}','\"\"','2015-10-28 09:56:17'),(339,25,'vote_id_5630d5004e2b1','142.169.78.107','Canada','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[400],\"answers\":[\"Cyndy will be exploring the area with friends. Enjoy the pirate theme!\"],\"cf\":[]}}','\"\"','2015-10-28 10:00:35'),(340,24,'vote_id_5630df1e9c7af','67.230.128.10','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[401],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-10-28 10:43:46'),(341,25,'vote_id_5630eecea93f2','99.246.66.128','Canada','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[402],\"answers\":[\"Lou.  Sorry have friends visiting.\"],\"cf\":[]}}','\"\"','2015-10-28 11:50:41'),(342,24,'vote_id_5630ffe314cac','99.240.231.193','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[403],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-10-28 13:03:32'),(343,24,'vote_id_56312375c6785','206.47.94.172','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[404],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-10-28 15:35:20'),(344,24,'vote_id_563126dfed3ee','108.63.192.252','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[405],\"answers\":[\"Susan R. One 10-lb heavy medicine ball, not filled with air.\"],\"cf\":[]}}','\"\"','2015-10-28 15:49:53'),(345,24,'vote_id_563134bb1a369','173.206.1.243','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[406],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2015-10-28 16:49:00'),(346,24,'vote_id_56313a0e4a063','142.113.144.31','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[407],\"answers\":[\"Susan O - may be coming but will arrive late\"],\"cf\":[]}}','\"\"','2015-10-28 17:11:51'),(347,24,'vote_id_56314085e9af6','69.165.135.41','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[408],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-10-28 17:39:21'),(348,24,'vote_id_563140f9ef715','184.144.100.114','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[409],\"answers\":[\"Pauline\"],\"cf\":[]}}','\"\"','2015-10-28 17:41:15'),(349,24,'vote_id_5631520bb2b8c','99.240.235.17','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[410],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-10-28 18:54:04'),(350,24,'vote_id_5631742b84d65','184.144.151.177','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[411],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-10-28 21:19:41'),(351,25,'vote_id_56321f395d2ec','99.240.162.239','Canada','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[412],\"answers\":[\"Carol, sorry to miss this  week\\\\\'s workout but I\\\\\'m sick.\"],\"cf\":[]}}','\"\"','2015-10-29 09:29:31'),(352,24,'vote_id_563222505e211','70.55.27.176','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[413],\"answers\":[\"Margaret M.\"],\"cf\":[]}}','\"\"','2015-10-29 09:42:41'),(353,24,'vote_id_563243791ab8d','184.151.246.228','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[414],\"answers\":[\"Linda Lafrance\"],\"cf\":[]}}','\"\"','2015-10-29 12:04:10'),(354,24,'vote_id_563257f1f0f55','69.157.115.86','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[415],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-10-29 13:31:31'),(355,24,'vote_id_5632666667907','184.145.30.118','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[416],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-10-29 14:33:17'),(356,25,'vote_id_56327c121efdd','184.148.19.74','Canada','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[417],\"answers\":[\"Penny..babying my knee this week.\"],\"cf\":[]}}','\"\"','2015-10-29 16:05:40'),(357,24,'vote_id_5632860195e25','76.10.172.46','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[418],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2015-10-29 16:48:02'),(358,24,'vote_id_563289697a928','184.145.42.73','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[419],\"answers\":[\"Susan ny\"],\"cf\":[]}}','\"\"','2015-10-29 17:02:34'),(359,25,'vote_id_56329ec9ea150','70.55.27.176','Canada','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[420],\"answers\":[\"Margaret McLaren, Sorry I have contractors. Enjoy the pirates.\"],\"cf\":[]}}','\"\"','2015-10-29 18:33:46'),(360,24,'vote_id_5632d98a789ac','174.95.186.84','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[421],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2015-10-29 22:44:28'),(361,25,'vote_id_563358f4abed7','99.245.243.252','Canada','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[422],\"answers\":[\"Barbara - heading to physio this morning for my lower calf - feeling very torn about not joining you for a hardy-har good time.\"],\"cf\":[]}}','\"\"','2015-10-30 07:48:05'),(362,24,'vote_id_5633640e7ed81','99.246.119.165','Canada','0','anonymous','','{\"q-24\":{\"question\":\"Attending Oct 29?\",\"id\":24,\"a\":[423],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2015-10-30 08:35:27'),(363,25,'vote_id_56336a0219a76','174.92.88.19','Canada','0','anonymous','','{\"q-25\":{\"question\":\"AWAY OCTOBER 30?\",\"id\":25,\"a\":[424],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2015-10-30 09:00:51'),(364,26,'vote_id_5638202ea67e3','173.206.14.75','Canada','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[427],\"answers\":[\"Jo-Ann H and a pile of medicine balls\"],\"cf\":[]}}','\"\"','2015-11-02 21:47:13'),(365,27,'vote_id_563834c6e430a','99.246.10.81','Canada','0','anonymous','','{\"q-27\":{\"question\":\"AWAY NOV 6?\",\"id\":27,\"a\":[428],\"answers\":[\"Janice away for the next 3 weeks\"],\"cf\":[]}}','\"\"','2015-11-02 23:15:03'),(366,26,'vote_id_56383ac683605','99.246.66.128','Canada','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[429],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-11-02 23:40:41'),(367,26,'vote_id_563898e0a544b','206.132.178.214','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[430],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-11-03 06:23:09'),(368,26,'vote_id_56389bffeaec2','99.240.231.193','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[431],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-11-03 06:36:28'),(369,26,'vote_id_5638a718b74f8','69.165.135.41','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[432],\"answers\":[\"anne\"],\"cf\":[]}}','\"\"','2015-11-03 07:23:49'),(370,26,'vote_id_5638a981958d7','99.240.235.17','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[433],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-11-03 07:34:06'),(371,26,'vote_id_5638ac8f7f689','198.103.184.76','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[434],\"answers\":[\"Marie-France but if heavy rain no Marie-France\"],\"cf\":[]}}','\"\"','2015-11-03 07:47:08'),(372,26,'vote_id_5638aca76aa0b','69.157.114.71','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[435],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-11-03 07:47:31'),(373,26,'vote_id_5638b2d67eb6b','108.162.170.98','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[436],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2015-11-03 08:13:55'),(374,26,'vote_id_5638b47832105','142.113.144.31','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[437],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-11-03 08:20:53'),(375,26,'vote_id_5638c8c5d21d1','184.144.120.181','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[438],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-11-03 09:47:32'),(376,26,'vote_id_5638ff72e58d5','184.145.30.118','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[439],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-11-03 13:40:48'),(377,26,'vote_id_5639009051ce5','70.52.149.133','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[440],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-11-03 13:45:32'),(378,26,'vote_id_5639023ef2a5e','173.206.78.173','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[441],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2015-11-03 13:52:44'),(379,26,'vote_id_563902b23fba4','99.246.42.219','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[442],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-11-03 13:54:47'),(380,26,'vote_id_563926abbc574','174.92.89.91','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[443],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-11-03 16:28:09'),(381,27,'vote_id_563926cfd9d3b','174.92.89.91','','0','anonymous','','{\"q-27\":{\"question\":\"AWAY NOV 6?\",\"id\":27,\"a\":[444],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2015-11-03 16:28:44'),(382,26,'vote_id_563939346ca72','108.63.197.82','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[445],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-11-03 17:47:14'),(383,26,'vote_id_56393a355a85f','184.144.148.197','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[446],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-11-03 17:51:29'),(384,26,'vote_id_563940ac1eb0a','99.245.243.252','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[447],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2015-11-03 18:19:04'),(385,26,'vote_id_563a0345744a2','67.230.128.91','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[448],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-11-04 08:09:22'),(386,26,'vote_id_563a0fff6bada','174.95.186.84','','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[449],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2015-11-04 09:03:41'),(387,26,'vote_id_563a87a6094ec','184.145.42.73','Canada','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[450],\"answers\":[\"Susan ny\"],\"cf\":[]}}','\"\"','2015-11-04 17:33:11'),(388,26,'vote_id_563ac86e7185e','99.248.98.53','Canada','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[451],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-11-04 22:09:35'),(389,26,'vote_id_563b2e1c20a28','206.47.14.34','Canada','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[452],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-11-05 05:23:26'),(390,26,'vote_id_563b58c9038e9','99.246.119.165','Canada','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[453],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2015-11-05 08:25:30'),(391,26,'vote_id_563bad1934844','99.240.162.239','Canada','0','anonymous','','{\"q-26\":{\"question\":\"ATTENDING NOV 6?\",\"id\":26,\"a\":[454],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-11-05 14:25:15'),(392,27,'vote_id_563bb1420f0db','70.52.160.196','Canada','0','anonymous','','{\"q-27\":{\"question\":\"AWAY NOV 6?\",\"id\":27,\"a\":[455],\"answers\":[\"Penny...knee not up to it\"],\"cf\":[]}}','\"\"','2015-11-05 14:43:01'),(393,29,'vote_id_563d218417c84','173.206.14.75','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[458],\"answers\":[\"Jo-Ann H.  I will buy one for sure (at $36.90) but if there are 100 orders I will buy 3 .\"],\"cf\":[]}}','\"\"','2015-11-06 16:54:13'),(394,29,'vote_id_563d23f166dff','173.206.14.75','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[459],\"answers\":[\"Jo-Ann H, and I would take 2 if we have 50 or more orders.\"],\"cf\":[]}}','\"\"','2015-11-06 17:04:38'),(395,29,'vote_id_563d265d94910','76.10.172.102','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[460],\"answers\":[\"Jennifer. I will buy one for sure and two if we have 50 or more orders.\"],\"cf\":[]}}','\"\"','2015-11-06 17:14:54'),(396,29,'vote_id_563d2730e96dc','108.63.200.52','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[461],\"answers\":[\"Susan R. I will buy one for sure and two if we have 50 or more orders.\"],\"cf\":[]}}','\"\"','2015-11-06 17:18:26'),(397,29,'vote_id_563d28148d93e','81.240.235.116','Belgium','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[462],\"answers\":[\"Elaine Hall\\u00e9. I will buy 1 for sure and if we can sell 50, I will take 2.\"],\"cf\":[]}}','\"\"','2015-11-06 17:22:13'),(398,29,'vote_id_563d28fc1ec3c','99.240.162.239','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[463],\"answers\":[\"Carol will buy 1 for sure & 2 if we\\\\\'re able to get an order of 50+\"],\"cf\":[]}}','\"\"','2015-11-06 17:26:05'),(399,29,'vote_id_563d2c6b91245','99.240.231.193','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[464],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-11-06 17:40:44'),(400,29,'vote_id_563d2cd97b2f3','99.240.231.193','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[465],\"answers\":[\"Janice Moe, Annemarieke put her name in. I am pretty sure she will want one but she cannot respond as she is in Chili at the moment\"],\"cf\":[]}}','\"\"','2015-11-06 17:42:34'),(401,29,'vote_id_563d2f2037766','99.224.14.80','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[466],\"answers\":[\"Lyse I will buy 1.\"],\"cf\":[]}}','\"\"','2015-11-06 17:52:17'),(402,29,'vote_id_563d3f9734fc6','99.246.66.128','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[467],\"answers\":[\"I will\"],\"cf\":[]}}','\"\"','2015-11-06 19:02:32'),(403,29,'vote_id_563d44bb803ca','206.132.178.214','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[468],\"answers\":[\"Cyndy.  I will buy one for sure and two if we get more than 50.  If we get up to 100 I might take several more and use them as Xmas gifts - but only if we will have them before Xmas.\"],\"cf\":[]}}','\"\"','2015-11-06 19:24:28'),(404,29,'vote_id_563d5f655a692','184.145.30.118','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[469],\"answers\":[\"Meryl will buy 1 for sure and 2 if we get over 50.\"],\"cf\":[]}}','\"\"','2015-11-06 21:18:14'),(405,29,'vote_id_563dfe878c066','206.47.14.169','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[470],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-11-07 08:37:15'),(406,29,'vote_id_563e08f63088b','99.240.227.203','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[471],\"answers\":[\"I will take 1 for sure\"],\"cf\":[]}}','\"\"','2015-11-07 09:21:56'),(407,29,'vote_id_563e096aba359','99.240.227.203','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[457,472],\"answers\":[\"Write your name, how many buffs you would like and then hit SEND..\",\"Ingrid will take 1\"],\"cf\":[]}}','\"\"','2015-11-07 09:23:45'),(408,29,'vote_id_563e62d440041','99.245.243.252','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[473],\"answers\":[\"Barbara will buy 1, 2 if we get over 50\"],\"cf\":[]}}','\"\"','2015-11-07 15:45:09'),(409,29,'vote_id_563e6d6eba6aa','70.53.60.169','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[474],\"answers\":[\"Margaret McLaren 3\"],\"cf\":[]}}','\"\"','2015-11-07 16:30:24'),(410,29,'vote_id_563e9c6b9f3e4','67.230.128.18','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[475],\"answers\":[\"Darlene will buy 1, 2 if we get over 50\"],\"cf\":[]}}','\"\"','2015-11-07 19:50:52'),(411,29,'vote_id_5640a92308b9f','70.31.29.78','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[476],\"answers\":[\"Ila - one please\"],\"cf\":[]}}','\"\"','2015-11-09 09:09:42'),(412,29,'vote_id_5640c8d607be4','184.148.30.147','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[477],\"answers\":[\"Penny. one for sure and two if we have 50 or more orders.\"],\"cf\":[]}}','\"\"','2015-11-09 11:24:55'),(413,29,'vote_id_5640fb125927b','99.246.66.128','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[478],\"answers\":[\"Lou will take one.\"],\"cf\":[]}}','\"\"','2015-11-09 14:59:17'),(414,29,'vote_id_5640fc37ca4c9','99.248.98.53','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[479],\"answers\":[\"Maggie - 1 or 2 (50+)\"],\"cf\":[]}}','\"\"','2015-11-09 15:04:10'),(415,29,'vote_id_5641018444d4c','184.144.102.232','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[480],\"answers\":[\"Pauline: one please. Thanks very much!\"],\"cf\":[]}}','\"\"','2015-11-09 15:26:45'),(416,29,'vote_id_56410585c9f76','184.144.102.232','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[481],\"answers\":[\"Joanne B would like just one please. Thanks!\"],\"cf\":[]}}','\"\"','2015-11-09 15:43:51'),(417,29,'vote_id_56413143e15c7','76.66.86.43','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[482],\"answers\":[\"Susan ny 1 for sure\"],\"cf\":[]}}','\"\"','2015-11-09 18:50:29'),(418,29,'vote_id_56414fcc49dc1','99.246.71.56','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[483],\"answers\":[\"Pat -1 please and 2 if over 50\"],\"cf\":[]}}','\"\"','2015-11-09 21:00:45'),(419,31,'vote_id_564394eded486','108.63.192.84','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[487],\"answers\":[\"Jo-Ann H and med balls\"],\"cf\":[]}}','\"\"','2015-11-11 14:20:17'),(420,31,'vote_id_5643962c25dd7','70.31.29.78','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[488],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-11-11 14:25:34'),(421,31,'vote_id_5643993e7c2ce','99.246.66.128','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[489],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-11-11 14:38:40'),(422,31,'vote_id_56439956ad735','108.63.193.110','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[490],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-11-11 14:39:04'),(423,31,'vote_id_5643a2c2ba804','184.145.30.118','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[491],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-11-11 15:19:15'),(424,31,'vote_id_5643a4107d19c','99.240.231.193','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[492],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-11-11 15:24:50'),(425,32,'vote_id_5643a9dc6cd46','76.10.172.128','Canada','0','anonymous','','{\"q-32\":{\"question\":\"AWAY NOV 13?\",\"id\":32,\"a\":[493],\"answers\":[\"Jennifer :(\"],\"cf\":[]}}','\"\"','2015-11-11 15:49:33'),(426,32,'vote_id_5643ad09463f2','198.103.184.76','Canada','0','anonymous','','{\"q-32\":{\"question\":\"AWAY NOV 13?\",\"id\":32,\"a\":[494],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2015-11-11 16:03:06'),(427,31,'vote_id_5643b60dc0641','99.240.162.239','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[495],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-11-11 16:41:35'),(428,31,'vote_id_5643ba8dac816','70.54.57.86','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[496],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-11-11 17:00:47'),(429,31,'vote_id_5643bb2abfc71','69.196.186.179','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[497],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-11-11 17:03:23'),(430,32,'vote_id_5643c04d900ba','67.230.128.70','Canada','0','anonymous','','{\"q-32\":{\"question\":\"AWAY NOV 13?\",\"id\":32,\"a\":[498],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-11-11 17:25:21'),(431,31,'vote_id_5643c17addb44','108.63.182.17','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[499],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2015-11-11 17:30:21'),(432,31,'vote_id_5643ce0e70a85','206.132.178.214','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[500],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-11-11 18:23:59'),(433,31,'vote_id_5643d344dae28','99.224.14.80','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[501],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2015-11-11 18:46:14'),(434,31,'vote_id_5643daecf1ab4','65.93.201.147','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[502],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2015-11-11 19:18:53'),(435,31,'vote_id_5643e4cd2b4ac','99.246.71.56','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[503],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-11-11 20:01:02'),(436,31,'vote_id_5643f8976f362','184.144.150.4','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[504],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-11-11 21:25:28'),(437,31,'vote_id_564413ce9058b','206.47.101.57','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[505],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-11-11 23:21:36'),(438,31,'vote_id_56448e2986482','99.240.235.17','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[506],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-11-12 08:03:38'),(439,29,'vote_id_5644a5f2280fb','70.26.234.172','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[507],\"answers\":[\"Ellie - one please\"],\"cf\":[]}}','\"\"','2015-11-12 09:45:07'),(440,31,'vote_id_5644aeaf415ab','70.54.61.248','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[508],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-11-12 10:22:27'),(441,31,'vote_id_5644b347a6ff4','70.26.29.41','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[509],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-11-12 10:42:00'),(442,31,'vote_id_5644d4685c48a','184.148.30.202','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[510],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-11-12 13:03:24'),(443,31,'vote_id_5644ef917e7f0','99.248.98.53','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[511],\"answers\":[\"Maggie - Will be quite late so will start on my own once there\"],\"cf\":[]}}','\"\"','2015-11-12 14:59:14'),(444,31,'vote_id_56454a3dbb4d5','99.245.243.252','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[512],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2015-11-12 21:26:07'),(445,31,'vote_id_56455fe2c0c61','184.144.102.232','Canada','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[513],\"answers\":[\"Pauline\"],\"cf\":[]}}','\"\"','2015-11-12 22:58:30'),(446,29,'vote_id_5645c0ddd6396','65.93.201.147','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[514],\"answers\":[\"Linda x1\"],\"cf\":[]}}','\"\"','2015-11-13 05:52:15'),(447,31,'vote_id_5645fd0ae7d11','137.122.64.25','','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[485,515],\"answers\":[\"Write your NAME, hit SEND\",\"Gail\"],\"cf\":[]}}','\"\"','2015-11-13 10:09:59'),(448,31,'vote_id_564606ee339f4','99.246.119.165','','0','anonymous','','{\"q-31\":{\"question\":\"Attending Nov 13?\",\"id\":31,\"a\":[516],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2015-11-13 10:52:11'),(449,29,'vote_id_564647519cabe','99.240.235.17','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[517],\"answers\":[\"Liz S one please\"],\"cf\":[]}}','\"\"','2015-11-13 15:25:56'),(450,28,'vote_id_564660b80fbff','173.206.14.75','Canada','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[548],\"answers\":[\"Jo-Ann H - tuque\"],\"cf\":[]}}','\"\"','2015-11-13 17:14:16'),(451,28,'vote_id_564678dad851a','99.224.14.80','Canada','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[549],\"answers\":[\"Lyse tuque and jacket\"],\"cf\":[]}}','\"\"','2015-11-13 18:57:15'),(452,29,'vote_id_564693a4050e9','69.196.186.179','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[550],\"answers\":[\"Anne- one please\"],\"cf\":[]}}','\"\"','2015-11-13 20:51:33'),(453,29,'vote_id_5646bb5898f99','184.144.102.232','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[551],\"answers\":[\"Pauline will order a second buff for Cary Willis. Thanks!\"],\"cf\":[]}}','\"\"','2015-11-13 23:40:58'),(454,29,'vote_id_56475ddfa08f5','99.246.119.165','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[552],\"answers\":[\"Sandra-will order 1\"],\"cf\":[]}}','\"\"','2015-11-14 11:14:25'),(455,29,'vote_id_56488d478c07f','99.224.14.80','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[553],\"answers\":[\"Lyse I will order one more\"],\"cf\":[]}}','\"\"','2015-11-15 08:48:57'),(456,28,'vote_id_564893e289060','76.66.86.43','Canada','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[554],\"answers\":[\"Susan NY tuque and jacket\"],\"cf\":[]}}','\"\"','2015-11-15 09:17:07'),(457,28,'vote_id_56491baacec08','70.31.29.78','Canada','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[555],\"answers\":[\"Ila jacket - not sure of size until I try them on\"],\"cf\":[]}}','\"\"','2015-11-15 18:56:28'),(458,34,'vote_id_56492f85ea694','173.206.14.75','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[558],\"answers\":[\"Jo-Ann, her weights, mat, poles and med balls.\"],\"cf\":[]}}','\"\"','2015-11-15 20:21:11'),(459,28,'vote_id_56492faf75eb7','67.230.128.42','Canada','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[559],\"answers\":[\"Darlene - tuque\"],\"cf\":[]}}','\"\"','2015-11-15 20:21:52'),(460,29,'vote_id_564a19aab97af','173.206.14.75','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[560],\"answers\":[\"Cary, 1\"],\"cf\":[]}}','\"\"','2015-11-16 13:00:12'),(461,29,'vote_id_564a4ddeeedcd','70.54.61.248','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[561],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-11-16 16:42:56'),(462,34,'vote_id_564a4e55adcf3','70.54.61.248','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[562],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-11-16 16:44:55'),(463,34,'vote_id_564a5d01794f8','70.54.57.86','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[563],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-11-16 17:47:30'),(464,34,'vote_id_564a70be9e882','173.177.227.6','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[564],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2015-11-16 19:11:43'),(465,29,'vote_id_564a735d2be7a','173.206.14.75','Canada','0','anonymous','','{\"q-29\":{\"question\":\"Like to buy a buff?\",\"id\":29,\"a\":[565],\"answers\":[\"Judy O.    1 buff (ordered by Jo-Ann)\"],\"cf\":[]}}','\"\"','2015-11-16 19:22:54'),(466,34,'vote_id_564a9cfe1dc1e','99.240.162.239','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[566],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-11-16 22:20:31'),(467,34,'vote_id_564b2663aedfb','174.114.160.65','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[567],\"answers\":[\"Joanne B\"],\"cf\":[]}}','\"\"','2015-11-17 08:06:44'),(468,34,'vote_id_564b8cdcdde6d','99.224.14.80','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[568],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2015-11-17 15:23:57'),(469,34,'vote_id_564bcf22ef44b','173.206.4.234','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[569],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2015-11-17 20:06:44'),(470,35,'vote_id_564bcf8c8fc33','184.144.150.4','Canada','0','anonymous','','{\"q-35\":{\"question\":\"Away Nov 20?\",\"id\":35,\"a\":[570],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-11-17 20:08:29'),(471,35,'vote_id_564bedfd58b48','76.71.49.217','Canada','0','anonymous','','{\"q-35\":{\"question\":\"Away Nov 20?\",\"id\":35,\"a\":[557,571],\"answers\":[\"Write your NAME and a few words, hit SEND\",\"Susan my-away\"],\"cf\":[]}}','\"\"','2015-11-17 22:18:22'),(472,28,'vote_id_564bee7dac2c7','76.71.49.217','Canada','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[554,572],\"answers\":[\"Susan NY tuque and jacket\",\"XS, woman\\\\\'s\"],\"cf\":[]}}','\"\"','2015-11-17 22:20:30'),(473,34,'vote_id_564c6fa6ca1da','174.91.34.176','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[573],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-11-18 07:31:36'),(474,34,'vote_id_564cea59d38a3','206.47.101.39','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[574],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-11-18 16:15:06'),(475,34,'vote_id_564d0c4c306b2','70.29.54.182','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[575],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-11-18 18:39:57'),(476,35,'vote_id_564d0f5067578','108.162.170.98','Canada','0','anonymous','','{\"q-35\":{\"question\":\"Away Nov 20?\",\"id\":35,\"a\":[576],\"answers\":[\"Jennifer - may attend. Waiting for a technician...\"],\"cf\":[]}}','\"\"','2015-11-18 18:52:50'),(477,34,'vote_id_564d0fa076876','108.63.200.51','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[577],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-11-18 18:54:09'),(478,34,'vote_id_564d11b60d52b','67.230.128.86','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[578],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-11-18 19:03:03'),(479,34,'vote_id_564dbf4038249','99.240.235.17','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[579],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-11-19 07:23:31'),(480,34,'vote_id_564dd57d5a5f8','70.31.29.78','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[580],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-11-19 08:58:22'),(481,34,'vote_id_564de5b356b93','99.246.71.56','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[581],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-11-19 10:07:33'),(482,34,'vote_id_564df022bdf07','206.132.178.78','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[582],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2015-11-19 10:52:05'),(483,34,'vote_id_564dff7dda338','69.196.186.179','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[583],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-11-19 11:57:35'),(484,34,'vote_id_564e12fb36bcd','70.26.234.172','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[584],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2015-11-19 13:20:44'),(485,34,'vote_id_564e15884775c','99.248.98.53','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[585],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-11-19 13:31:37'),(486,35,'vote_id_564e2dbd8fcf9','99.240.171.186','Canada','0','anonymous','','{\"q-35\":{\"question\":\"Away Nov 20?\",\"id\":35,\"a\":[557,586],\"answers\":[\"Write your NAME and a few words, hit SEND\",\"Gail\"],\"cf\":[]}}','\"\"','2015-11-19 15:14:55'),(487,34,'vote_id_564e2f7c63a05','174.92.89.87','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[587],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-11-19 15:22:23'),(488,34,'vote_id_564e31414fd80','99.246.66.128','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[588],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-11-19 15:29:56'),(489,34,'vote_id_564e4021a2d4a','24.114.93.204','Canada','0','anonymous','','{\"q-34\":{\"question\":\"ATTENDING November 20?\",\"id\":34,\"a\":[589],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2015-11-19 16:33:22'),(490,28,'vote_id_564f9419f0cae','174.95.239.34','Canada','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[590],\"answers\":[\"Ellie  1 tuque- ladies small\"],\"cf\":[]}}','\"\"','2015-11-20 16:43:54'),(491,28,'vote_id_5651c080d343f','99.245.243.252','Canada','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[591],\"answers\":[\"Barbara - jacket ladies small\"],\"cf\":[]}}','\"\"','2015-11-22 08:17:53'),(492,28,'vote_id_5651dfc17acea','67.230.128.45','Canada','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[592],\"answers\":[\"Darlene - jacket\"],\"cf\":[]}}','\"\"','2015-11-22 10:31:14'),(493,36,'vote_id_565256432b57e','173.206.14.75','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[595],\"answers\":[\"Jo-Ann and her STUFF\"],\"cf\":[]}}','\"\"','2015-11-22 18:56:52'),(494,36,'vote_id_5653921ac34e2','76.71.238.36','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[596],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-11-23 17:24:27'),(495,36,'vote_id_5653c92db180a','99.246.10.81','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[597],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-11-23 21:19:29'),(496,36,'vote_id_5653dac1ce3ed','184.144.102.232','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[598],\"answers\":[\"Pauline\"],\"cf\":[]}}','\"\"','2015-11-23 22:34:27'),(497,36,'vote_id_5654615f77199','206.47.100.82','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[599],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-11-24 08:08:52'),(498,28,'vote_id_565461cc8ce11','206.47.100.82','Canada','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[600],\"answers\":[\"Fay - jacket - large & tuque\"],\"cf\":[]}}','\"\"','2015-11-24 08:10:37'),(499,36,'vote_id_5654c5e6be7ca','108.63.135.220','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[601],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2015-11-24 15:17:48'),(500,36,'vote_id_5654f7ed9276b','99.240.162.239','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[602],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-11-24 18:51:10'),(501,36,'vote_id_56553ea5d84cf','199.119.233.213','','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[603],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2015-11-24 23:54:13'),(502,28,'vote_id_5655a78e3aa69','76.71.238.36','Canada','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[604],\"answers\":[\"Janey  -  tuque\"],\"cf\":[]}}','\"\"','2015-11-25 07:20:31'),(503,37,'vote_id_5655b48b7f492','173.177.227.6','Canada','0','anonymous','','{\"q-37\":{\"question\":\"AWAY Nov 27?\",\"id\":37,\"a\":[605],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2015-11-25 08:15:58'),(504,36,'vote_id_5655b6a97e764','99.240.171.186','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[593,606],\"answers\":[\"Write your NAME, click SEND\",\"Gail\"],\"cf\":[]}}','\"\"','2015-11-25 08:24:58'),(505,36,'vote_id_5655c49a4560b','70.31.29.78','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[608],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-11-25 09:24:27'),(506,36,'vote_id_5655c49a2d74a','108.162.170.98','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[607],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2015-11-25 09:24:27'),(507,36,'vote_id_5655c5ef79eba','174.92.94.131','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[609],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-11-25 09:30:11'),(508,36,'vote_id_5655c78f12bf7','108.63.192.222','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[610],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-11-25 09:37:03'),(509,36,'vote_id_5655c81b171d0','99.248.98.53','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[611],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-11-25 09:39:23'),(510,36,'vote_id_5655cff1a0276','99.246.71.56','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[612],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-11-25 10:12:50'),(511,36,'vote_id_5655dcb7b9748','99.245.243.252','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[613],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2015-11-25 11:07:21'),(512,36,'vote_id_5655efd999863','76.10.164.105','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[614],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-11-25 12:28:58'),(513,36,'vote_id_5655fc65de846','70.29.54.182','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[615],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-11-25 13:22:30'),(514,37,'vote_id_565616c88dc98','206.132.178.78','Canada','0','anonymous','','{\"q-37\":{\"question\":\"AWAY Nov 27?\",\"id\":37,\"a\":[616],\"answers\":[\"Cyndy cannot attend\"],\"cf\":[]}}','\"\"','2015-11-25 15:15:05'),(515,36,'vote_id_56561c14dd36c','70.52.160.196','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[617],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-11-25 15:37:44'),(516,36,'vote_id_56564030029df','204.101.156.53','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[618],\"answers\":[\"Fay -- I may be late\"],\"cf\":[]}}','\"\"','2015-11-25 18:11:45'),(517,36,'vote_id_56564a958af6a','70.54.61.248','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[619],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-11-25 18:56:07'),(518,36,'vote_id_56564bd65acd4','99.240.235.17','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[620],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-11-25 19:01:27'),(519,36,'vote_id_56564c05e6e43','70.54.57.86','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[621],\"answers\":[\"margaret mclaren\"],\"cf\":[]}}','\"\"','2015-11-25 19:02:16'),(520,36,'vote_id_56565e7832570','76.71.49.217','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[622],\"answers\":[\"Susan ny\"],\"cf\":[]}}','\"\"','2015-11-25 20:20:57'),(521,36,'vote_id_56567564bfb13','65.93.201.147','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[623],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2015-11-25 21:58:48'),(522,28,'vote_id_56567fb5dacad','70.54.57.86','Canada','0','anonymous','','{\"q-28\":{\"question\":\"Who would like to buy a Sofits jacket and\\/or tuque?\",\"id\":28,\"a\":[624],\"answers\":[\"Margaret McLaren- Jacket\"],\"cf\":[]}}','\"\"','2015-11-25 22:42:46'),(523,37,'vote_id_565698ba24584','174.114.160.65','Canada','0','anonymous','','{\"q-37\":{\"question\":\"AWAY Nov 27?\",\"id\":37,\"a\":[625],\"answers\":[\"Joanne, still stuck with building plans.  Darn!\"],\"cf\":[]}}','\"\"','2015-11-26 00:29:30'),(524,36,'vote_id_56571013ee8f7','174.95.187.91','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[626],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2015-11-26 08:58:46'),(525,36,'vote_id_565710d5a4fbc','69.157.115.86','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[627],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-11-26 09:01:58'),(526,36,'vote_id_56571f500f712','67.230.128.90','Canada','0','anonymous','','{\"q-36\":{\"question\":\"Attending November 27?\",\"id\":36,\"a\":[628],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-11-26 10:03:45'),(527,37,'vote_id_5657b8e516e82','199.7.157.75','Canada','0','anonymous','','{\"q-37\":{\"question\":\"AWAY Nov 27?\",\"id\":37,\"a\":[629],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2015-11-26 20:59:03'),(528,37,'vote_id_565869e59d1be','99.246.119.165','Canada','0','anonymous','','{\"q-37\":{\"question\":\"AWAY Nov 27?\",\"id\":37,\"a\":[630],\"answers\":[\"Sandra-in Montreal!\"],\"cf\":[]}}','\"\"','2015-11-27 09:34:16'),(529,38,'vote_id_565e13b2a1119','99.240.162.239','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[633],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-12-01 16:41:04'),(530,38,'vote_id_565e13ee81bda','173.206.29.152','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[634],\"answers\":[\"Jo-Ann (will time the 6-6-6-6-6-6 group)\"],\"cf\":[]}}','\"\"','2015-12-01 16:42:03'),(531,38,'vote_id_565e1764b45bb','70.29.54.182','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[635],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2015-12-01 16:56:49'),(532,38,'vote_id_565e1765b7bbd','70.26.32.43','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[636],\"answers\":[\"Rosy - probably a bit late\"],\"cf\":[]}}','\"\"','2015-12-01 16:56:50'),(533,38,'vote_id_565e1a6ae3df9','184.148.24.110','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[637],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2015-12-01 17:09:44'),(534,38,'vote_id_565e1c0b9be77','99.224.14.80','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[638],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2015-12-01 17:16:40'),(535,39,'vote_id_565e24c9d9097','205.250.156.84','','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[639],\"answers\":[\"Anne - away hiking in BC\"],\"cf\":[]}}','\"\"','2015-12-01 17:53:58'),(536,38,'vote_id_565e2c5b6a3f8','76.71.239.26','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[640],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-12-01 18:26:15'),(537,38,'vote_id_565e33030dd74','99.246.71.56','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[641],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-12-01 18:54:39'),(538,38,'vote_id_565e6413ac8de','108.162.170.98','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[642],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2015-12-01 22:24:02'),(539,38,'vote_id_565efc0b837b3','173.177.227.6','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[643],\"answers\":[\"Marie-France-I have a timer for intervals\"],\"cf\":[]}}','\"\"','2015-12-02 09:12:24'),(540,38,'vote_id_565f052ce4f8c','99.246.119.165','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[644],\"answers\":[\"sandra\"],\"cf\":[]}}','\"\"','2015-12-02 09:51:22'),(541,38,'vote_id_565f33aec66d7','99.248.98.53','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[645],\"answers\":[\"maggie - i can be a timer in my group\"],\"cf\":[]}}','\"\"','2015-12-02 13:09:47'),(542,38,'vote_id_565f33c51a978','99.248.98.53','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[646],\"answers\":[\"maggie - i can be a timer in my group\"],\"cf\":[]}}','\"\"','2015-12-02 13:10:09'),(543,38,'vote_id_565f39bbe0d33','108.63.200.32','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[647],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-12-02 13:35:37'),(544,38,'vote_id_565f59678073c','99.246.10.81','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[648],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-12-02 15:50:44'),(545,38,'vote_id_565f7c5911182','70.31.31.212','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[649],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2015-12-02 18:19:49'),(546,38,'vote_id_565f9beb94178','99.245.243.252','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[650],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2015-12-02 20:34:32'),(547,38,'vote_id_565ff2fbb26e7','206.47.116.4','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[651],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-12-03 02:46:00'),(548,38,'vote_id_56603455a7662','99.240.235.17','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[652],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-12-03 07:24:50'),(549,38,'vote_id_56603bddef5f1','70.53.63.242','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[653],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-12-03 07:56:58'),(550,38,'vote_id_5660498a5aed6','65.93.201.170','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[654],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-12-03 08:55:20'),(551,39,'vote_id_56608a690ec3b','108.63.193.16','','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[655],\"answers\":[\"Susan R - Oops. Won\\\\\'t be there after all. Work.\"],\"cf\":[]}}','\"\"','2015-12-03 13:32:06'),(552,38,'vote_id_566095e9dc01b','64.229.253.54','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[656],\"answers\":[\"SUsan o\"],\"cf\":[]}}','\"\"','2015-12-03 14:21:10'),(553,38,'vote_id_566096082268c','64.229.253.54','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[657],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-12-03 14:21:40'),(554,39,'vote_id_5660a092c0639','70.52.160.196','','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[658],\"answers\":[\"Penny...more oops.  Can\\\\\'t make it...injured:-(\"],\"cf\":[]}}','\"\"','2015-12-03 15:06:39'),(555,39,'vote_id_5660af42f1ffc','174.95.187.91','','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[659],\"answers\":[\"Ellie- getting over the flu. Damn!\"],\"cf\":[]}}','\"\"','2015-12-03 16:09:19'),(556,39,'vote_id_5660c0f4adcb6','99.246.119.165','','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[660],\"answers\":[\"Sandra- another oops--I injured my foot--\"],\"cf\":[]}}','\"\"','2015-12-03 17:24:49'),(557,39,'vote_id_5660c169de167','70.31.31.212','','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[661],\"answers\":[\"Ila - yet more ooops - surprise daughter visit\"],\"cf\":[]}}','\"\"','2015-12-03 17:26:46'),(558,38,'vote_id_5660f8609ce76','99.240.231.193','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[662],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2015-12-03 21:21:17'),(559,38,'vote_id_5660f9ad46dff','99.240.231.193','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[663],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-12-03 21:26:50'),(560,38,'vote_id_566105b9ee405','99.246.66.128','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[664],\"answers\":[\"Mary Lou\"],\"cf\":[]}}','\"\"','2015-12-03 22:18:14'),(561,38,'vote_id_5661852f83f8e','137.122.64.81','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[665],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2015-12-04 07:22:04'),(562,38,'vote_id_56618a5030af7','173.206.37.201','','0','anonymous','','{\"q-38\":{\"question\":\"Attending Dec 4 Stealth Workout?\",\"id\":38,\"a\":[666],\"answers\":[\"julie\"],\"cf\":[]}}','\"\"','2015-12-04 07:43:56'),(563,39,'vote_id_5661a6a0b5118','99.248.98.53','','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[667],\"answers\":[\"Maggie-won\\\\\'t make it today\"],\"cf\":[]}}','\"\"','2015-12-04 09:44:47'),(564,39,'vote_id_5661b4d29e5af','76.71.49.217','','0','anonymous','','{\"q-39\":{\"question\":\"AWAY DEC 4?\",\"id\":39,\"a\":[668],\"answers\":[\"Susan ny\"],\"cf\":[]}}','\"\"','2015-12-04 10:45:20'),(565,40,'vote_id_5666c1aa87de9','173.206.19.202','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[671],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2015-12-08 06:40:27'),(566,40,'vote_id_5666cba306099','99.224.14.80','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[672],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2015-12-08 07:22:59'),(567,40,'vote_id_5666cf4655464','76.71.239.26','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[673],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2015-12-08 07:38:31'),(568,40,'vote_id_5666db17bac92','108.63.200.65','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[674],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2015-12-08 08:28:57'),(569,40,'vote_id_5666e80058911','108.162.170.98','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[675],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2015-12-08 09:24:01'),(570,41,'vote_id_5666ef0d0ab5a','173.177.227.6','Canada','0','anonymous','','{\"q-41\":{\"question\":\"AWAY on DEC 11?\",\"id\":41,\"a\":[676],\"answers\":[\"Marie-France busy with retirement procedures\"],\"cf\":[]}}','\"\"','2015-12-08 09:54:06'),(571,40,'vote_id_56670bf475f26','99.240.231.193','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[677],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-12-08 11:57:25'),(572,40,'vote_id_5667337569321','174.92.94.136','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[678],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2015-12-08 14:45:58'),(573,40,'vote_id_5667519660b56','192.171.38.243','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[679],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2015-12-08 16:54:32'),(574,40,'vote_id_56675475cc341','173.206.29.152','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[680],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2015-12-08 17:06:46'),(575,40,'vote_id_566758c6582ac','99.246.71.56','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[681],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2015-12-08 17:25:14'),(576,41,'vote_id_56675cedba81b','70.31.31.212','Canada','0','anonymous','','{\"q-41\":{\"question\":\"AWAY on DEC 11?\",\"id\":41,\"a\":[682],\"answers\":[\"Ila - can\\\\\'t make it this week\"],\"cf\":[]}}','\"\"','2015-12-08 17:42:54'),(577,40,'vote_id_56676e8a720f2','206.47.94.157','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[683],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-12-08 18:58:04'),(578,41,'vote_id_5668280a37f11','99.240.235.17','Canada','0','anonymous','','{\"q-41\":{\"question\":\"AWAY on DEC 11?\",\"id\":41,\"a\":[684],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2015-12-09 08:09:31'),(579,41,'vote_id_566831d03f02f','99.246.119.165','Canada','0','anonymous','','{\"q-41\":{\"question\":\"AWAY on DEC 11?\",\"id\":41,\"a\":[685],\"answers\":[\"Sandra- injured foot\"],\"cf\":[]}}','\"\"','2015-12-09 08:51:14'),(580,40,'vote_id_56688cdbc6aaa','64.229.253.54','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[686],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2015-12-09 15:19:41'),(581,41,'vote_id_5668943ab2247','70.52.160.196','Canada','0','anonymous','','{\"q-41\":{\"question\":\"AWAY on DEC 11?\",\"id\":41,\"a\":[687],\"answers\":[\"Penny. Toe still too tender :-(\"],\"cf\":[]}}','\"\"','2015-12-09 15:51:07'),(582,40,'vote_id_56689fc659790','70.29.54.182','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[688],\"answers\":[\"MERYL\"],\"cf\":[]}}','\"\"','2015-12-09 16:40:23'),(583,40,'vote_id_5668a98998cfc','184.144.122.31','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[689],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2015-12-09 17:22:03'),(584,40,'vote_id_5668bcf719e76','65.93.201.170','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[690],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2015-12-09 18:44:55'),(585,40,'vote_id_5668eb9a1aae4','99.240.162.239','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[691],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2015-12-09 22:03:56'),(586,40,'vote_id_5668f68196f81','99.248.98.53','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[692],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2015-12-09 22:50:27'),(587,40,'vote_id_5669abf45571a','99.246.66.128','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[693],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2015-12-10 11:44:37'),(588,40,'vote_id_5669c5319f243','99.246.10.81','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[694],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2015-12-10 13:32:18'),(589,40,'vote_id_5669d77b9d497','67.230.128.76','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[695],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2015-12-10 14:50:20'),(590,40,'vote_id_5669f343595eb','173.177.227.6','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[696],\"answers\":[\"Marie-France will be in. please delete absence below due to change of plans. sorry for any inconveniences\"],\"cf\":[]}}','\"\"','2015-12-10 16:48:55'),(591,41,'vote_id_566a0ca86da2d','99.224.14.80','Canada','0','anonymous','','{\"q-41\":{\"question\":\"AWAY on DEC 11?\",\"id\":41,\"a\":[670,697],\"answers\":[\"Write your name and a few words, hit send.\",\"Lyse, not sure. Have to move my mom from the hospital.\"],\"cf\":[]}}','\"\"','2015-12-10 18:37:13'),(592,40,'vote_id_566a285012a7e','99.240.231.193','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[698],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2015-12-10 20:35:15'),(593,40,'vote_id_566a2b6a91e21','99.240.171.186','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[699],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2015-12-10 20:48:28'),(594,40,'vote_id_566af38e22a08','24.114.94.159','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[700],\"answers\":[\"Pauline -- may be late\"],\"cf\":[]}}','\"\"','2015-12-11 11:02:23'),(595,40,'vote_id_566b3e43873ed','76.69.154.126','Canada','0','anonymous','','{\"q-40\":{\"question\":\"ATTENDING DEC 11?\",\"id\":40,\"a\":[701],\"answers\":[\"Susan ny came\"],\"cf\":[]}}','\"\"','2015-12-11 16:21:09'),(596,42,'vote_id_566d6dcc17a8e','206.47.31.229','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[705],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2015-12-13 08:08:30'),(597,42,'vote_id_5670ab8d62b48','108.63.158.57','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[706],\"answers\":[\"Jo-Ann - could start at 11:00 or 11:55.\"],\"cf\":[]}}','\"\"','2015-12-15 19:08:46'),(598,42,'vote_id_5670becd4db7a','70.31.31.212','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[707],\"answers\":[\"Ila - can start at 11:00 or 11:55\"],\"cf\":[]}}','\"\"','2015-12-15 20:30:54'),(599,42,'vote_id_5670bf643ca09','99.224.14.80','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[708],\"answers\":[\"Lyse- Will start at 11:00\"],\"cf\":[]}}','\"\"','2015-12-15 20:33:26'),(600,42,'vote_id_5670bfd7cea4f','108.63.200.114','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[709],\"answers\":[\"Susan Riley: Can start at either time.\"],\"cf\":[]}}','\"\"','2015-12-15 20:35:21'),(601,42,'vote_id_5670c73b01202','69.158.170.209','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[710],\"answers\":[\"Rosy - Will start at 11:55.\"],\"cf\":[]}}','\"\"','2015-12-15 21:06:52'),(602,42,'vote_id_5670d3da80e14','99.246.71.56','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[711],\"answers\":[\"Pat - either time\"],\"cf\":[]}}','\"\"','2015-12-15 22:00:44'),(603,42,'vote_id_5670d6045ca53','108.162.170.98','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[712],\"answers\":[\"Jennifer (can start at either time)\"],\"cf\":[]}}','\"\"','2015-12-15 22:10:00'),(604,44,'vote_id_5670d68b3ba11','184.148.17.120','Canada','0','anonymous','','{\"q-44\":{\"question\":\"Away December 18?\",\"id\":44,\"a\":[713],\"answers\":[\"Penny-toes and knee not co-operating...sorry\"],\"cf\":[]}}','\"\"','2015-12-15 22:12:14'),(605,42,'vote_id_5671558a1da19','99.240.171.186','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[714],\"answers\":[\"Gail - Will start at 11:55\"],\"cf\":[]}}','\"\"','2015-12-16 07:14:03'),(606,42,'vote_id_567157088b857','184.144.150.232','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[715],\"answers\":[\"Janey can start early\"],\"cf\":[]}}','\"\"','2015-12-16 07:20:26'),(607,42,'vote_id_567157ff1ccf4','173.206.3.55','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[716],\"answers\":[\"Julie - not sure yet if i can attend but if so, then later start\"],\"cf\":[]}}','\"\"','2015-12-16 07:24:32'),(608,42,'vote_id_5671644490f89','142.113.157.26','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[717],\"answers\":[\"Liz R can start either time\"],\"cf\":[]}}','\"\"','2015-12-16 08:16:53'),(609,42,'vote_id_5671772264086','64.229.253.54','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[718],\"answers\":[\"Susan o 11:00\"],\"cf\":[]}}','\"\"','2015-12-16 09:37:23'),(610,42,'vote_id_5671ac8d4741d','173.177.227.6','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[719],\"answers\":[\"Marie-France later start\"],\"cf\":[]}}','\"\"','2015-12-16 13:25:18'),(611,42,'vote_id_5671d13e94199','206.47.31.229','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[705,720],\"answers\":[\"Fay\",\"Fay - I\\\\\'ll be late - don\\\\\'t wait for me either time. I\\\\\'ll head up when I can.\"],\"cf\":[]}}','\"\"','2015-12-16 16:01:52'),(612,42,'vote_id_5671f2f109e1e','76.69.120.92','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[721],\"answers\":[\"Margaret McLaren at 11:55\"],\"cf\":[]}}','\"\"','2015-12-16 18:25:38'),(613,42,'vote_id_5671fbe3cf3b9','99.246.10.81','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[722],\"answers\":[\"Janice 11:00\"],\"cf\":[]}}','\"\"','2015-12-16 19:03:49'),(614,42,'vote_id_567206916ed04','99.240.231.193','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[723],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2015-12-16 19:49:22'),(615,42,'vote_id_567285b2ba0e1','142.113.157.31','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[724],\"answers\":[\"Linda 11:55\"],\"cf\":[]}}','\"\"','2015-12-17 04:51:48'),(616,42,'vote_id_5672e3991ff0a','67.230.128.15','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[725],\"answers\":[\"Darlene - can start either time\"],\"cf\":[]}}','\"\"','2015-12-17 11:32:26'),(617,42,'vote_id_567301a9b51f2','99.240.162.239','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[726],\"answers\":[\"Carol 11:00\"],\"cf\":[]}}','\"\"','2015-12-17 13:40:42'),(618,42,'vote_id_5673319508e96','99.246.66.128','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[727],\"answers\":[\"Lou  Thought I had answered this  I will be there at 11:55.\"],\"cf\":[]}}','\"\"','2015-12-17 17:05:09'),(619,42,'vote_id_567337769ff0d','174.95.187.91','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[728],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2015-12-17 17:30:15'),(620,42,'vote_id_56734861756f8','99.240.235.17','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[729],\"answers\":[\"Liz S at 11:55\"],\"cf\":[]}}','\"\"','2015-12-17 18:42:27'),(621,42,'vote_id_567354c0da585','199.7.157.5','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[730],\"answers\":[\"Maggie 11:55\"],\"cf\":[]}}','\"\"','2015-12-17 19:35:15'),(622,42,'vote_id_56736cbea9fbc','70.29.54.182','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[731],\"answers\":[\"Meryl 11:00\"],\"cf\":[]}}','\"\"','2015-12-17 21:17:35'),(623,44,'vote_id_567373cde0966','99.246.119.165','Canada','0','anonymous','','{\"q-44\":{\"question\":\"Away December 18?\",\"id\":44,\"a\":[732],\"answers\":[\"Sandra--still out with an injured foot!-- Merry Christmas and seasons greetings to all of you!\"],\"cf\":[]}}','\"\"','2015-12-17 21:47:44'),(624,42,'vote_id_56737f2dc68c6','184.175.8.89','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[733],\"answers\":[\"Anne- not sure if I can make. Will head up on my own if I do. Merry Christmas to you all  if I miss out on the fun!\"],\"cf\":[]}}','\"\"','2015-12-17 22:36:15'),(625,44,'vote_id_5673f6559f759','76.69.154.126','Canada','0','anonymous','','{\"q-44\":{\"question\":\"Away December 18?\",\"id\":44,\"a\":[734],\"answers\":[\"Susan ny last day before holiday so have to work :(\"],\"cf\":[]}}','\"\"','2015-12-18 07:04:39'),(626,42,'vote_id_5673fdced8323','99.245.243.252','Canada','0','anonymous','','{\"q-42\":{\"question\":\"ATTENDING DECEMBER 18?\",\"id\":42,\"a\":[735],\"answers\":[\"Barbara attending. not sure what time time yet, depends on my driver :)\"],\"cf\":[]}}','\"\"','2015-12-18 07:36:31'),(627,44,'vote_id_56741739c6605','99.240.231.193','Canada','0','anonymous','','{\"q-44\":{\"question\":\"Away December 18?\",\"id\":44,\"a\":[736],\"answers\":[\"Cary - I have last minute doctor\\\\\'s appointment -- have a wonderful Christmas everyone!\"],\"cf\":[]}}','\"\"','2015-12-18 09:24:58'),(628,45,'vote_id_568a935edb7b7','108.63.158.57','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 Classic Refresher and Classic Continues\",\"id\":45,\"a\":[738],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2016-01-04 10:44:32'),(629,47,'vote_id_568a960f40946','108.63.158.57','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI 12:00 to 2:00\",\"id\":47,\"a\":[742],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2016-01-04 10:56:00'),(630,45,'vote_id_568aa540438d7','173.34.159.176','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER & CLASSIC CONTINUES\",\"id\":45,\"a\":[743],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-01-04 12:00:52'),(631,46,'vote_id_568aa56f32e48','174.92.84.126','Canada','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC CONTINUES at  12:00\",\"id\":46,\"a\":[744],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2016-01-04 12:01:48'),(632,47,'vote_id_568adc1694b35','184.144.137.196','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI 12:00 to 2:00\",\"id\":47,\"a\":[745],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2016-01-04 15:54:47'),(633,45,'vote_id_568ae3cbe10eb','99.224.14.80','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER & CLASSIC CONTINUES\",\"id\":45,\"a\":[737,746],\"answers\":[\"Write NAME and hit SEND\",\"Lyse\"],\"cf\":[]}}','\"\"','2016-01-04 16:27:41'),(634,46,'vote_id_568ae3db7cf0f','99.224.14.80','Canada','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC CONTINUES at  12:00\",\"id\":46,\"a\":[747],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-01-04 16:27:57'),(635,47,'vote_id_568ae3e863222','99.224.14.80','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI 12:00 to 2:00\",\"id\":47,\"a\":[748],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-01-04 16:28:09'),(636,45,'vote_id_568ae7ac3a187','64.229.253.54','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER & CLASSIC CONTINUES\",\"id\":45,\"a\":[749],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2016-01-04 16:44:12'),(637,47,'vote_id_568ae7bdad406','64.229.253.54','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI 12:00 to 2:00\",\"id\":47,\"a\":[750],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2016-01-04 16:44:31'),(638,47,'vote_id_568ae8ea27f7f','69.158.15.97','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI 12:00 to 2:00\",\"id\":47,\"a\":[751],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2016-01-04 16:49:34'),(639,47,'vote_id_568af1004c12e','99.246.71.56','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI 12:00 to 2:00\",\"id\":47,\"a\":[752],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2016-01-04 17:24:01'),(640,45,'vote_id_568af3dea6816','173.0.204.130','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER & CLASSIC CONTINUES\",\"id\":45,\"a\":[753],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2016-01-04 17:36:15'),(641,46,'vote_id_568aff7760107','23.91.135.38','Canada','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC CONTINUES at  12:00\",\"id\":46,\"a\":[739,754],\"answers\":[\"Write NAME and hit SEND\",\"Anne\"],\"cf\":[]}}','\"\"','2016-01-04 18:25:44'),(642,45,'vote_id_568b29930f1e5','184.151.246.75','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[756],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2016-01-04 21:25:24'),(643,46,'vote_id_568bcb471526b','206.132.178.43','Canada','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[757],\"answers\":[\"Cyndy - I have an eye appointment at 10:30 in Orleans so I may be late for the noon session but I will try and find you.  Any idea which trail the blue group will be on?\"],\"cf\":[]}}','\"\"','2016-01-05 08:55:20'),(644,45,'vote_id_568bccad5340f','174.95.237.22','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[758],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-01-05 09:01:18'),(645,46,'vote_id_568bccd734d7c','174.95.237.22','Canada','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[759],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-01-05 09:02:00'),(646,46,'vote_id_568be9245e62a','99.246.66.128','Canada','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[760],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2016-01-05 11:02:47'),(647,45,'vote_id_568c3d891a3bf','184.148.18.195','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[761],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-01-05 17:02:51'),(648,46,'vote_id_568c3da2d5a16','184.148.18.195','Canada','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[762],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-01-05 17:03:15'),(649,45,'vote_id_568c45c1be5ea','99.240.235.17','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[763],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2016-01-05 17:37:55'),(650,46,'vote_id_568c45ccb5f52','99.240.235.17','Canada','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[764],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2016-01-05 17:38:05'),(651,47,'vote_id_568c53d4e2c95','108.63.130.55','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[765],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2016-01-05 18:37:58'),(652,45,'vote_id_568c751bcebd4','99.240.231.193','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[766],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2016-01-05 20:59:57'),(653,45,'vote_id_568d47d969078','99.246.30.245','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[767],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2016-01-06 11:59:06'),(654,47,'vote_id_568d47eb49717','99.246.30.245','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[768],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2016-01-06 11:59:24'),(655,45,'vote_id_568d71ae2c34c','69.157.115.144','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[769],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2016-01-06 14:57:36'),(656,45,'vote_id_568d907963787','70.55.25.217','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[770],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-01-06 17:08:59'),(657,47,'vote_id_568d909d1086c','70.55.25.217','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[771],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-01-06 17:09:33'),(658,47,'vote_id_568dad9788eae','67.230.128.37','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[772],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2016-01-06 19:13:13'),(659,45,'vote_id_568dce45b7d61','76.69.154.126','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[773],\"answers\":[\"susan ny\"],\"cf\":[]}}','\"\"','2016-01-06 21:32:40'),(660,47,'vote_id_568e74c38407c','206.47.116.14','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[774],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2016-01-07 09:23:00'),(661,47,'vote_id_568e77c20de63','108.63.196.219','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[775],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2016-01-07 09:35:50'),(662,46,'vote_id_568e8572e19fc','70.55.25.217','Canada','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[776],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-01-07 10:34:12'),(663,47,'vote_id_568ec1c700aa2','99.248.98.53','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[777],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2016-01-07 14:51:37'),(664,48,'vote_id_568f132334ad6','69.158.172.115','Canada','0','anonymous','','{\"q-48\":{\"question\":\"WILL BE AWAY\",\"id\":48,\"a\":[778],\"answers\":[\"Rosy - Sorry, at the last minute, I can\\\\\'t make it!\"],\"cf\":[]}}','\"\"','2016-01-07 20:38:44'),(665,47,'vote_id_568f1fc7ac47b','99.246.10.81','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[779],\"answers\":[\"Janice Moe\"],\"cf\":[]}}','\"\"','2016-01-07 21:32:41'),(666,46,'vote_id_568fbba5e1111','99.246.134.29','Canada','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[780],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2016-01-08 08:37:42'),(667,47,'vote_id_568fbbda45cdb','173.34.159.176','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[781],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-01-08 08:38:35'),(668,47,'vote_id_568fc315cbd27','174.95.237.22','Canada','0','anonymous','','{\"q-47\":{\"question\":\"ATTENDING SKATE SKI at NOON\",\"id\":47,\"a\":[782],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-01-08 09:09:27'),(669,45,'vote_id_568fc5587df6e','70.31.28.47','Canada','0','anonymous','','{\"q-45\":{\"question\":\"Attending 11:00 CLASSIC REFRESHER\",\"id\":45,\"a\":[783],\"answers\":[\"pauline\"],\"cf\":[]}}','\"\"','2016-01-08 09:19:05'),(670,46,'vote_id_568fc56e6da0e','70.31.28.47','Canada','0','anonymous','','{\"q-46\":{\"question\":\"ATTENDING CLASSIC at  NOON\",\"id\":46,\"a\":[784],\"answers\":[\"pauline\"],\"cf\":[]}}','\"\"','2016-01-08 09:19:27'),(671,49,'vote_id_5696a515f39f2','184.144.140.21','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[787],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2016-01-13 14:27:19'),(672,49,'vote_id_5696a7be437f2','99.240.208.142','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[788],\"answers\":[\"penny\"],\"cf\":[]}}','\"\"','2016-01-13 14:38:41'),(673,50,'vote_id_5696ac2018052','173.34.159.176','Canada','0','anonymous','','{\"q-50\":{\"question\":\"Away Jan 15?\",\"id\":50,\"a\":[789],\"answers\":[\"Annemarieke - in Toronto this weekend) Will miss all that fresh snow.\"],\"cf\":[]}}','\"\"','2016-01-13 14:57:23'),(674,49,'vote_id_5696ae4d0a96a','99.246.66.128','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[790],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2016-01-13 15:06:37'),(675,49,'vote_id_5696aece8650e','99.224.14.80','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[791],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-01-13 15:08:47'),(676,49,'vote_id_5696b2c450ac1','99.240.162.239','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[792],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2016-01-13 15:25:41'),(677,49,'vote_id_5696b6c34ebb4','173.177.227.6','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[793],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2016-01-13 15:42:45'),(678,49,'vote_id_5696ba7a67897','173.206.146.182','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[794],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2016-01-13 15:58:36'),(679,49,'vote_id_5696bb4e2f980','206.47.112.10','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[795],\"answers\":[\"Fay\"],\"cf\":[]}}','\"\"','2016-01-13 16:02:08'),(680,49,'vote_id_5696bfe5df50c','108.162.170.98','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[796],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-01-13 16:21:43'),(681,49,'vote_id_5696c8516466a','64.229.253.54','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[797],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2016-01-13 16:57:38'),(682,49,'vote_id_5696cbefb9d31','184.144.122.67','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[798],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-01-13 17:13:04'),(683,49,'vote_id_5696e4b21957e','99.240.235.17','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[799],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2016-01-13 18:58:42'),(684,49,'vote_id_5696ec5472088','70.29.105.251','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[800],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2016-01-13 19:31:17'),(685,50,'vote_id_56979cef46060','99.246.134.29','Canada','0','anonymous','','{\"q-50\":{\"question\":\"Away Jan 15?\",\"id\":50,\"a\":[801],\"answers\":[\"Sandra- working\"],\"cf\":[]}}','\"\"','2016-01-14 08:04:48'),(686,49,'vote_id_5697a6272a87b','65.93.203.125','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[802],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2016-01-14 08:44:07'),(687,49,'vote_id_5697b55a83d9a','108.63.197.92','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[803],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2016-01-14 09:49:02'),(688,49,'vote_id_5697bd27e8929','69.158.15.97','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[804],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2016-01-14 10:22:17'),(689,49,'vote_id_5697be2d241be','99.240.171.186','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[805],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2016-01-14 10:26:38'),(690,49,'vote_id_5697c1ce4dfbc','70.53.214.17','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[806],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-01-14 10:42:07'),(691,50,'vote_id_5697cf8f64379','142.165.205.168','Canada','0','anonymous','','{\"q-50\":{\"question\":\"Away Jan 15?\",\"id\":50,\"a\":[807],\"answers\":[\"Cyndy - in SK again. Hopefully next week I can join you!\"],\"cf\":[]}}','\"\"','2016-01-14 11:40:48'),(692,49,'vote_id_5697e17b2d1df','67.230.128.16','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[808],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2016-01-14 12:57:16'),(693,49,'vote_id_5697ecad15781','99.240.231.193','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[809],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2016-01-14 13:45:02'),(694,49,'vote_id_5697f89fd6b51','99.246.10.81','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[810],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-01-14 14:36:01'),(695,49,'vote_id_569830109a5ef','24.114.106.109','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[811],\"answers\":[\"Pauline\"],\"cf\":[]}}','\"\"','2016-01-14 18:32:33'),(696,50,'vote_id_5698500d4e631','23.91.135.38','Canada','0','anonymous','','{\"q-50\":{\"question\":\"Away Jan 15?\",\"id\":50,\"a\":[812],\"answers\":[\"Anne- sorry can\\\\\'t make the early start this week. I will ski in the afternoon. Enjoy!\"],\"cf\":[]}}','\"\"','2016-01-14 20:49:02'),(697,49,'vote_id_569851c676842','99.246.30.245','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[813],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2016-01-14 20:56:23'),(698,49,'vote_id_56985d592587a','99.248.98.53','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[814],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2016-01-14 21:45:46'),(699,50,'vote_id_5698612d69558','70.31.51.166','Canada','0','anonymous','','{\"q-50\":{\"question\":\"Away Jan 15?\",\"id\":50,\"a\":[815],\"answers\":[\"Susan ny- sadly I am working, need to retire soon\"],\"cf\":[]}}','\"\"','2016-01-14 22:02:08'),(700,49,'vote_id_569868207187f','108.63.163.57','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[816],\"answers\":[\"Jo-Ann\"],\"cf\":[]}}','\"\"','2016-01-14 22:31:48'),(701,50,'vote_id_5698f99fd0ff3','99.246.71.56','Canada','0','anonymous','','{\"q-50\":{\"question\":\"Away Jan 15?\",\"id\":50,\"a\":[817],\"answers\":[\"Pat- sorry to miss this week\"],\"cf\":[]}}','\"\"','2016-01-15 08:52:32'),(702,49,'vote_id_56990693a32ec','69.158.12.126','Canada','0','anonymous','','{\"q-49\":{\"question\":\"ATTENDING JANUARY 15?\",\"id\":49,\"a\":[818],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2016-01-15 09:47:48'),(703,51,'vote_id_569ef2906af0c','108.63.163.57','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[821],\"answers\":[\"Jo-Ann H\"],\"cf\":[]}}','\"\"','2016-01-19 21:36:01'),(704,51,'vote_id_569ef3c499d36','99.240.208.142','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[822],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-01-19 21:41:10'),(705,51,'vote_id_569f73f708780','69.158.12.126','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[823],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2016-01-20 06:48:08'),(706,52,'vote_id_569f82cdd3a1c','65.93.203.125','Canada','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[824],\"answers\":[\"Liz R - sorry to miss this week.\"],\"cf\":[]}}','\"\"','2016-01-20 07:51:26'),(707,51,'vote_id_569f8d4ce6e56','184.144.122.67','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[825],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-01-20 08:36:13'),(708,51,'vote_id_569f90197550c','108.63.174.53','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[826],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2016-01-20 08:48:11'),(709,52,'vote_id_569f98f7ca96e','199.7.157.105','Canada','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[827],\"answers\":[\"Lyse- away on holidays for the week,\"],\"cf\":[]}}','\"\"','2016-01-20 09:26:01'),(710,52,'vote_id_569fa76c4fd7b','99.246.30.245','Canada','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[828],\"answers\":[\"Family commitment, will have to miss this week.\"],\"cf\":[]}}','\"\"','2016-01-20 10:27:42'),(711,51,'vote_id_569fa7f57a82b','99.246.30.245','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[829],\"answers\":[\"Barbara - that was me who just wrote I won\\\\\'t be attending this week due to family commitmen, and forgot to write my name.\"],\"cf\":[]}}','\"\"','2016-01-20 10:29:59'),(712,52,'vote_id_569fb30f0896c','187.217.115.244','Mexico','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[830],\"answers\":[\"Susan ny away\"],\"cf\":[]}}','\"\"','2016-01-20 11:17:22'),(713,51,'vote_id_569fc01e20b0a','99.246.134.29','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[831],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2016-01-20 12:13:02'),(714,51,'vote_id_569fd8dc85913','108.162.170.98','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[832],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-01-20 13:58:37'),(715,51,'vote_id_569fdf116d9aa','64.229.253.54','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[833],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2016-01-20 14:25:09'),(716,51,'vote_id_569fefdb7b3ae','99.240.235.17','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[834],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2016-01-20 15:36:44'),(717,51,'vote_id_56a004934f90d','173.177.227.6','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[835],\"answers\":[\"Marie-FRance\"],\"cf\":[]}}','\"\"','2016-01-20 17:05:12'),(718,52,'vote_id_56a0482992db1','70.53.214.17','Canada','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[836],\"answers\":[\"Ellie- Sorry I have to miss this week. Tuesday was great!\"],\"cf\":[]}}','\"\"','2016-01-20 21:53:31'),(719,51,'vote_id_56a0c37b33c84','206.132.178.19','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[837],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2016-01-21 06:39:40'),(720,51,'vote_id_56a0d855b7813','99.246.10.81','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[838],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-01-21 08:08:39'),(721,51,'vote_id_56a0e54448ad3','76.64.65.181','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[839],\"answers\":[\"pat\"],\"cf\":[]}}','\"\"','2016-01-21 09:03:50'),(722,52,'vote_id_56a0eeced759c','69.158.15.97','Canada','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[840],\"answers\":[\"Ila - will be busy for the next week with my BC visitor\"],\"cf\":[]}}','\"\"','2016-01-21 09:44:32'),(723,51,'vote_id_56a1022089a70','99.240.171.186','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[841],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2016-01-21 11:07:00'),(724,51,'vote_id_56a12a8d53231','99.240.231.193','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[842],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2016-01-21 13:59:26'),(725,51,'vote_id_56a138e423924','99.248.98.53','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[843],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2016-01-21 15:00:37'),(726,51,'vote_id_56a172cd27aea','69.158.170.24','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[844],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2016-01-21 19:07:42'),(727,51,'vote_id_56a18f136289d','107.179.156.72','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[845],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2016-01-21 21:08:21'),(728,51,'vote_id_56a196fc40561','173.34.159.176','Canada','0','anonymous','','{\"q-51\":{\"question\":\"Attending January 22?\",\"id\":51,\"a\":[846],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-01-21 21:42:06'),(729,52,'vote_id_56a19cd6e93d9','108.63.192.149','Canada','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[820,847],\"answers\":[\"Write your NAME and a few words, hit SEND\",\"Susan R\"],\"cf\":[]}}','\"\"','2016-01-21 22:07:06'),(730,52,'vote_id_56a2218d31296','184.144.140.21','Canada','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[848],\"answers\":[\"Janey\"],\"cf\":[]}}','\"\"','2016-01-22 07:33:19'),(731,52,'vote_id_56a23d1797b5c','67.230.128.81','Canada','0','anonymous','','{\"q-52\":{\"question\":\"AWAY Jan 22?\",\"id\":52,\"a\":[849],\"answers\":[\"Darlene - will be missing this week\"],\"cf\":[]}}','\"\"','2016-01-22 09:30:52'),(732,54,'vote_id_56a7e0591da57','173.34.159.176','Canada','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[853],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-01-26 16:08:42'),(733,53,'vote_id_56a7ead55c36f','69.158.15.97','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[854],\"answers\":[\"Ila - I will be happy with either.  My preference depends on the conditions come Friday.\"],\"cf\":[]}}','\"\"','2016-01-26 16:53:26'),(734,54,'vote_id_56a7eaf8de2a3','173.177.227.6','Canada','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[855],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2016-01-26 16:54:01'),(735,55,'vote_id_56a7eb4a1aa8e','184.144.140.21','Canada','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[856],\"answers\":[\"Janey  -  sorry cannot make this outing.\"],\"cf\":[]}}','\"\"','2016-01-26 16:55:24'),(736,53,'vote_id_56a7f0e58df34','108.162.170.98','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[857],\"answers\":[\"Jennifer - prefer skate unless conditions are cold...\"],\"cf\":[]}}','\"\"','2016-01-26 17:19:18'),(737,54,'vote_id_56a7f0ffaae37','108.162.170.98','Canada','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[858],\"answers\":[\"Jennifer - whoops did that wrong. Definitely prefer skate...\"],\"cf\":[]}}','\"\"','2016-01-26 17:19:44'),(738,53,'vote_id_56a7f7fda1e29','107.179.156.72','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[859],\"answers\":[\"Anne- classic for me\"],\"cf\":[]}}','\"\"','2016-01-26 17:49:34'),(739,53,'vote_id_56a7fbd75f7aa','70.31.51.166','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[860],\"answers\":[\"Susan ny classic\"],\"cf\":[]}}','\"\"','2016-01-26 18:06:00'),(740,54,'vote_id_56a7fe6631168','99.246.10.81','Canada','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[861],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-01-26 18:16:54'),(741,55,'vote_id_56a800983d5ec','173.206.16.239','Canada','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[862],\"answers\":[\"Julie - sorry to have to miss this week\"],\"cf\":[]}}','\"\"','2016-01-26 18:26:17'),(742,55,'vote_id_56a8085a10b73','99.240.208.142','Canada','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[863],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-01-26 18:59:32'),(743,54,'vote_id_56a81011128e2','190.92.114.150','Cuba','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[864],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-01-26 19:32:18'),(744,54,'vote_id_56a89d7c65437','69.158.12.126','Canada','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[865],\"answers\":[\"Linda\"],\"cf\":[]}}','\"\"','2016-01-27 05:35:41'),(745,53,'vote_id_56a8d2e8b343d','99.246.30.245','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[866],\"answers\":[\"Barbara - prefer skate\"],\"cf\":[]}}','\"\"','2016-01-27 09:23:37'),(746,54,'vote_id_56a8d31607629','99.246.30.245','Canada','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[867],\"answers\":[\"Barbara - oops, also got that wrong. Prefer skate\"],\"cf\":[]}}','\"\"','2016-01-27 09:24:23'),(747,54,'vote_id_56a8d3b628854','67.230.128.16','Canada','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[868],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2016-01-27 09:27:08'),(748,53,'vote_id_56a8e4437fe4a','65.93.203.125','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[869],\"answers\":[\"Liz R - prefer classic\"],\"cf\":[]}}','\"\"','2016-01-27 10:37:40'),(749,54,'vote_id_56a90ac8869cf','70.31.75.121','Canada','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[870],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-01-27 13:22:03'),(750,53,'vote_id_56a90d07acd61','64.229.253.54','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[871],\"answers\":[\"Susan o classic\"],\"cf\":[]}}','\"\"','2016-01-27 13:31:37'),(751,54,'vote_id_56a94e5f254be','142.113.150.171','Canada','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[872],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2016-01-27 18:10:27'),(752,53,'vote_id_56aa39d44edc3','99.240.171.186','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[873],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2016-01-28 10:55:03'),(753,53,'vote_id_56aa3b10d07b8','108.63.197.48','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[874],\"answers\":[\"Susan R _ either, depending on conditions but prefer classic\"],\"cf\":[]}}','\"\"','2016-01-28 11:00:17'),(754,53,'vote_id_56aa7dd94ddc6','99.240.235.250','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[875],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2016-01-28 15:45:14'),(755,55,'vote_id_56aa830412d4c','99.240.162.239','Canada','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[876],\"answers\":[\"Going to ski early morning because heading back up after dinner.. Sorry to miss, have fun!\"],\"cf\":[]}}','\"\"','2016-01-28 16:07:16'),(756,55,'vote_id_56aa83364572d','99.240.162.239','Canada','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[876,877],\"answers\":[\"Going to ski early morning because heading back up after dinner.. Sorry to miss, have fun!\",\"Carol, oops forgot to post name beside early skiing\"],\"cf\":[]}}','\"\"','2016-01-28 16:08:07'),(757,53,'vote_id_56aa857c2fa3b','184.146.39.233','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[878],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2016-01-28 16:17:49'),(758,54,'vote_id_56aa85c161e23','70.53.214.17','Canada','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[879],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-01-28 16:18:58'),(759,53,'vote_id_56aa9cf05bd8d','99.240.235.17','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[880],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2016-01-28 17:57:53'),(760,55,'vote_id_56aa9ddc16ad3','108.63.197.48','Canada','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[881],\"answers\":[\"Susan R _ Unable to attend after all, owing to real estate obligation.\"],\"cf\":[]}}','\"\"','2016-01-28 18:01:49'),(761,54,'vote_id_56aabfbdd7dd8','99.248.98.53','Canada','0','anonymous','','{\"q-54\":{\"question\":\"Prefer SKATE Jan 29?\",\"id\":54,\"a\":[882],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2016-01-28 20:26:22'),(762,53,'vote_id_56aac61d10367','173.34.159.176','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[883],\"answers\":[\"Annemarieke- changed my mind; will do classic\"],\"cf\":[]}}','\"\"','2016-01-28 20:53:34'),(763,53,'vote_id_56aad9171763a','108.63.163.57','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[884],\"answers\":[\"Jo-Ann H\"],\"cf\":[]}}','\"\"','2016-01-28 22:14:35'),(764,53,'vote_id_56aadce20fcff','99.246.66.128','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[885],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2016-01-28 22:30:42'),(765,53,'vote_id_56ab658e98183','99.246.134.29','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[886],\"answers\":[\"sandra\"],\"cf\":[]}}','\"\"','2016-01-29 08:13:51'),(766,53,'vote_id_56ab76bd4725c','174.92.93.144','Canada','0','anonymous','','{\"q-53\":{\"question\":\"Prefer Classic on Jan 29?\",\"id\":53,\"a\":[887],\"answers\":[\"Rosy - very easy classic\"],\"cf\":[]}}','\"\"','2016-01-29 09:27:11'),(767,55,'vote_id_56ab8263290d6','70.30.87.106','Canada','0','anonymous','','{\"q-55\":{\"question\":\"AWAY Jan 29?\",\"id\":55,\"a\":[888],\"answers\":[\"Pauline -- won\\\\\'t be there today; and will be away in Charlevoix, QC until end of February.Happy trails everyone!\"],\"cf\":[]}}','\"\"','2016-01-29 10:16:55'),(768,56,'vote_id_56b1685f40739','108.63.180.66','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[891],\"answers\":[\"Jo-Ann H.\"],\"cf\":[]}}','\"\"','2016-02-02 21:39:29'),(769,56,'vote_id_56b1696fb45dd','99.248.98.53','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[892],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2016-02-02 21:44:00'),(770,56,'vote_id_56b16c89c553e','99.240.162.239','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[893],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2016-02-02 21:57:15'),(771,57,'vote_id_56b1917fad8a5','99.248.98.53','Canada','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[894],\"answers\":[\"Maggie -  scheduled OFF training day:)\"],\"cf\":[]}}','\"\"','2016-02-03 00:34:56'),(772,57,'vote_id_56b1f17aa527a','70.30.84.65','Canada','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[895],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2016-02-03 07:24:27'),(773,56,'vote_id_56b2037e82839','99.246.10.81','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[896],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-02-03 08:41:19'),(774,57,'vote_id_56b21a2a33585','99.240.208.142','Canada','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[897],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-02-03 10:18:03'),(775,56,'vote_id_56b256ccf382c','108.162.170.98','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[898],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-02-03 14:36:46'),(776,56,'vote_id_56b26a9364bef','184.146.39.233','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[899],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2016-02-03 16:01:09'),(777,56,'vote_id_56b2a9e07b116','70.31.51.166','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[900],\"answers\":[\"Susan ny\"],\"cf\":[]}}','\"\"','2016-02-03 20:31:14'),(778,56,'vote_id_56b2ac9bc3981','173.34.159.176','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[901],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-02-03 20:42:53'),(779,56,'vote_id_56b35d8099168','174.95.238.190','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[902],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-02-04 09:17:39'),(780,56,'vote_id_56b35f6ee64ff','70.53.62.91','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[903],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-02-04 09:25:53'),(781,57,'vote_id_56b363ecd505b','69.158.15.97','Canada','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[904],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2016-02-04 09:45:02'),(782,56,'vote_id_56b3719445574','206.132.178.12','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[905],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2016-02-04 10:43:17'),(783,57,'vote_id_56b37bbb555b2','99.240.171.186','Canada','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[906],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2016-02-04 11:26:37'),(784,56,'vote_id_56b3959d4e62a','107.179.156.72','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[907],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2016-02-04 13:17:03'),(785,56,'vote_id_56b3b20093495','173.177.227.6','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[908],\"answers\":[\"Marie-France\"],\"cf\":[]}}','\"\"','2016-02-04 15:18:10'),(786,56,'vote_id_56b3ba0fbf2f7','174.92.89.158','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[909],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2016-02-04 15:52:42'),(787,56,'vote_id_56b3bb75c17c5','99.224.14.80','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[910],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-02-04 15:58:40'),(788,56,'vote_id_56b3c2181bc9d','173.206.99.0','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[911],\"answers\":[\"Julie - if sore throat improves\"],\"cf\":[]}}','\"\"','2016-02-04 16:26:49'),(789,57,'vote_id_56b3cd6e3968b','108.63.201.20','Canada','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[912],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2016-02-04 17:15:13'),(790,57,'vote_id_56b3ce982b976','67.230.128.42','Canada','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[913],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2016-02-04 17:20:09'),(791,56,'vote_id_56b3cea5064f4','70.54.62.204','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[914],\"answers\":[\"susan o\"],\"cf\":[]}}','\"\"','2016-02-04 17:20:21'),(792,56,'vote_id_56b3cf2131a4f','99.240.235.17','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[915],\"answers\":[\"Liz S  I\\\\\'m one of those fair weather skiers\"],\"cf\":[]}}','\"\"','2016-02-04 17:22:26'),(793,56,'vote_id_56b3d1a25dc82','99.240.235.250','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[916],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2016-02-04 17:33:07'),(794,56,'vote_id_56b3d218afe16','99.246.30.245','Canada','0','anonymous','','{\"q-56\":{\"question\":\"Attending Feb. 5?\",\"id\":56,\"a\":[917],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2016-02-04 17:35:05'),(795,57,'vote_id_56b3e3f2ba903','99.246.66.128','Canada','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[918],\"answers\":[\"Swim only for me this week\"],\"cf\":[]}}','\"\"','2016-02-04 18:51:15'),(796,57,'vote_id_56b3ec3aa9c30','69.158.12.126','Canada','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[919],\"answers\":[\"Linda off for the next 3 weeks\"],\"cf\":[]}}','\"\"','2016-02-04 19:26:36'),(797,57,'vote_id_56b4afab9308a','99.246.134.29','Canada','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[920],\"answers\":[\"Sandra\"],\"cf\":[]}}','\"\"','2016-02-05 09:20:29'),(798,57,'vote_id_56b4b9dc8df9d','206.248.129.152','Canada','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[921],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-02-05 10:03:58'),(799,58,'vote_id_56ba541a91cdb','108.63.180.66','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[924],\"answers\":[\"Jo-Ann H.\"],\"cf\":[]}}','\"\"','2016-02-09 16:03:31'),(800,59,'vote_id_56ba58b5760da','173.177.227.6','Canada','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[927],\"answers\":[\"Marie-France-Away Feb. 12 & 19\"],\"cf\":[]}}','\"\"','2016-02-09 16:23:03'),(801,60,'vote_id_56ba59ca87acb','108.63.180.66','Canada','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[928],\"answers\":[\"Jo-Ann H  - interested in new guidelines for protein requirements for older adults, and how we know we are getting the right amount at the right time.\"],\"cf\":[]}}','\"\"','2016-02-09 16:27:38'),(802,61,'vote_id_56ba59d61e901','108.63.180.66','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I would attend on a Friday midday after the snow melts\",\"id\":61,\"a\":[929],\"answers\":[\"Jo-Ann H.  interested in new guidelines for protein requirements for older adults, and how we know we are getting the right amount at the right time\"],\"cf\":[]}}','\"\"','2016-02-09 16:27:51'),(803,59,'vote_id_56ba5a4ec4d00','99.240.208.142','Canada','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[930],\"answers\":[\"Penny...still building to pre-op activity levels\"],\"cf\":[]}}','\"\"','2016-02-09 16:29:52'),(804,61,'vote_id_56ba5e4a72e6f','173.177.227.6','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[931],\"answers\":[\"Marie-France After the snow melts and on a Friday is great for me. Needs: what to eat at what time before a Sofits training at noon\"],\"cf\":[]}}','\"\"','2016-02-09 16:46:51'),(805,58,'vote_id_56ba682a601dd','173.34.159.176','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[932],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-02-09 17:29:00'),(806,60,'vote_id_56ba6deb7569e','107.179.156.72','Canada','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[933],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2016-02-09 17:53:32'),(807,60,'vote_id_56ba7d23a06fc','99.246.66.128','Canada','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[934],\"answers\":[\"Lou - Special Olympic ski cancelled due to the cold.  So I will be available after all.\"],\"cf\":[]}}','\"\"','2016-02-09 18:58:28'),(808,59,'vote_id_56ba7d45d0661','70.53.62.91','Canada','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[935],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-02-09 18:59:02'),(809,60,'vote_id_56ba868651817','99.240.162.239','Canada','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[936],\"answers\":[\"Carol - either option is good,with me!\"],\"cf\":[]}}','\"\"','2016-02-09 19:38:31'),(810,61,'vote_id_56ba869b7476a','99.240.162.239','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[937],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2016-02-09 19:38:52'),(811,58,'vote_id_56ba8a6d79d74','70.31.51.166','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[938],\"answers\":[\"Susan NY\"],\"cf\":[]}}','\"\"','2016-02-09 19:55:10'),(812,61,'vote_id_56ba8d60bbe9a','108.63.200.247','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[939],\"answers\":[\"Susan Riley _Friday after the snow melts works for me!\"],\"cf\":[]}}','\"\"','2016-02-09 20:07:45'),(813,61,'vote_id_56baa1951495e','189.165.105.114','Mexico','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[940],\"answers\":[\"Pat will be back after Feb 16th.  Hope there is still snow for awhile though\"],\"cf\":[]}}','\"\"','2016-02-09 21:33:57'),(814,61,'vote_id_56baa56e78eff','184.146.39.233','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[941],\"answers\":[\"Meryl - I\\\\\'m available on a Friday after snow melts.\"],\"cf\":[]}}','\"\"','2016-02-09 21:50:23'),(815,60,'vote_id_56baa5b8bfc52','184.146.39.233','Canada','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[942],\"answers\":[\"Meryl - I\\\\\'m available this Saturday, but a Friday would be fine too.\"],\"cf\":[]}}','\"\"','2016-02-09 21:51:38'),(816,61,'vote_id_56baa8ab61b4d','67.230.128.18','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[943],\"answers\":[\"Darlene - Fridays after the snow melts works best for me\"],\"cf\":[]}}','\"\"','2016-02-09 22:04:12'),(817,60,'vote_id_56babcefd3596','99.240.208.142','Canada','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[944],\"answers\":[\"Penny, also available Friday-need to learn about fueling for multi day events\"],\"cf\":[]}}','\"\"','2016-02-09 23:30:40'),(818,61,'vote_id_56babd099effc','99.240.208.142','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[945],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-02-09 23:31:06'),(819,58,'vote_id_56bb2ee9e8ee4','206.132.178.12','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[946],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2016-02-10 07:36:58'),(820,60,'vote_id_56bb30ffa64bf','99.246.10.81','Canada','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[947],\"answers\":[\"Janice Moe\"],\"cf\":[]}}','\"\"','2016-02-10 07:45:52'),(821,61,'vote_id_56bb3158d7295','99.246.10.81','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[948],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-02-10 07:47:21'),(822,58,'vote_id_56bb318ca88ec','99.246.10.81','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[949],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-02-10 07:48:14'),(823,61,'vote_id_56bb31c5650b6','70.54.62.204','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[950],\"answers\":[\"Susan o that would be perfect\"],\"cf\":[]}}','\"\"','2016-02-10 07:49:10'),(824,61,'vote_id_56bb3e5719b30','99.240.235.17','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[951],\"answers\":[\"Liz S\"],\"cf\":[]}}','\"\"','2016-02-10 08:42:47'),(825,58,'vote_id_56bb3e8ed5d4c','99.240.235.17','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[952],\"answers\":[\"Liz S I have work in the morning I may be late\"],\"cf\":[]}}','\"\"','2016-02-10 08:43:45'),(826,58,'vote_id_56bb3eeb6302e','174.92.94.144','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[953],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2016-02-10 08:45:16'),(827,61,'vote_id_56bb3f24d6946','174.92.94.144','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[954],\"answers\":[\"Rosy\"],\"cf\":[]}}','\"\"','2016-02-10 08:46:13'),(828,60,'vote_id_56bb3f783d3d2','174.92.94.144','Canada','0','anonymous','','{\"q-60\":{\"question\":\"I am able to attend this Saturday morning\",\"id\":60,\"a\":[955],\"answers\":[\"Rosy - I hope to be there. Timing of fueling during long endurance efforts.\"],\"cf\":[]}}','\"\"','2016-02-10 08:47:36'),(829,58,'vote_id_56bb8637b1b71','99.248.98.53','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[956],\"answers\":[\"Maggie\"],\"cf\":[]}}','\"\"','2016-02-10 13:49:29'),(830,58,'vote_id_56bb8d065f0d2','184.146.39.233','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[957],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2016-02-10 14:18:32'),(831,58,'vote_id_56bb9a138deb9','108.63.101.237','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[958],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2016-02-10 15:14:13'),(832,58,'vote_id_56bbb1d14ffb6','107.179.156.72','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[959],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2016-02-10 16:55:31'),(833,61,'vote_id_56bbc1428e64a','70.53.62.91','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[960],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-02-10 18:01:23'),(834,58,'vote_id_56bc8b9680deb','99.246.134.29','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[961],\"answers\":[\"sandra\"],\"cf\":[]}}','\"\"','2016-02-11 08:24:39'),(835,61,'vote_id_56bc8bbc14f5f','99.246.134.29','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[962],\"answers\":[\"sandra\"],\"cf\":[]}}','\"\"','2016-02-11 08:25:16'),(836,58,'vote_id_56bc94fdeff81','174.95.238.190','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[963],\"answers\":[\"Ellie\"],\"cf\":[]}}','\"\"','2016-02-11 09:04:47'),(837,58,'vote_id_56bc9c24c5a83','99.240.171.186','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[964],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2016-02-11 09:35:19'),(838,59,'vote_id_56bc9dbd5d566','184.145.139.18','Canada','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[965],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2016-02-11 09:42:06'),(839,58,'vote_id_56bcaa94eda5a','99.246.20.200','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[966],\"answers\":[\"Barbara\"],\"cf\":[]}}','\"\"','2016-02-11 10:36:54'),(840,59,'vote_id_56bcad9b5ddeb','99.240.235.250','Canada','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[967],\"answers\":[\"Cary ... youngest offspring dropping in for lunch\"],\"cf\":[]}}','\"\"','2016-02-11 10:49:48'),(841,58,'vote_id_56bcaf0caac12','192.171.45.154','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[968],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-02-11 10:55:57'),(842,59,'vote_id_56bcfba238dee','70.30.84.82','Canada','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[969],\"answers\":[\"Liz R - have to leave for Montreal in the pm\"],\"cf\":[]}}','\"\"','2016-02-11 16:22:45'),(843,59,'vote_id_56bd0f2b62772','67.230.128.83','Canada','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[970],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2016-02-11 17:46:04'),(844,58,'vote_id_56bd14484993e','99.224.14.80','Canada','0','anonymous','','{\"q-58\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 12?\",\"id\":58,\"a\":[971],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-02-11 18:07:53'),(845,59,'vote_id_56bd213ec1ef8','99.240.162.239','Canada','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[972],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2016-02-11 19:03:16'),(846,59,'vote_id_56bdd0b9cedeb','99.246.66.128','Canada','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[973],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2016-02-12 07:31:55'),(847,59,'vote_id_56bddc42a0234','108.63.200.95','Canada','0','anonymous','','{\"q-59\":{\"question\":\"AWAY FEBRUARY 12?\",\"id\":59,\"a\":[974],\"answers\":[\"Susan R\"],\"cf\":[]}}','\"\"','2016-02-12 08:21:08'),(848,62,'vote_id_56c513e9effa1','108.63.180.66','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[977],\"answers\":[\"Jo-Ann H   30 minutes for 5 k?\"],\"cf\":[]}}','\"\"','2016-02-17 19:44:26'),(849,62,'vote_id_56c51668cf494','76.10.162.45','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[978],\"answers\":[\"Jennifer - no idea really - 25 minutes for 5k?\"],\"cf\":[]}}','\"\"','2016-02-17 19:55:07'),(850,62,'vote_id_56c51ca08c04a','70.26.33.150','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[979],\"answers\":[\"Rosy - relaxed, 40-45 min or so, or longer if enjoying the scenery\"],\"cf\":[]}}','\"\"','2016-02-17 20:21:37'),(851,62,'vote_id_56c522927ffdf','99.224.14.80','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[980],\"answers\":[\"Lyse , possibly 28 minutes\"],\"cf\":[]}}','\"\"','2016-02-17 20:46:59'),(852,62,'vote_id_56c522949e2fb','107.179.156.72','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[981],\"answers\":[\"Anne- I am nursing a sore back\\/ SI joint but hoping to be in shape to join you. Will have to be a relaxed ski for me.\"],\"cf\":[]}}','\"\"','2016-02-17 20:47:02'),(853,62,'vote_id_56c52955c3999','184.145.139.18','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[982],\"answers\":[\"Ila - 45 minutes\"],\"cf\":[]}}','\"\"','2016-02-17 21:15:51'),(854,63,'vote_id_56c5308db490f','70.31.51.166','Canada','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[983],\"answers\":[\"Susan ny, away skiing with my daughter\"],\"cf\":[]}}','\"\"','2016-02-17 21:46:45'),(855,62,'vote_id_56c53cca1d601','173.34.159.176','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[984],\"answers\":[\"Annemarieke (I think 26 min)\"],\"cf\":[]}}','\"\"','2016-02-17 22:38:51'),(856,62,'vote_id_56c5b23566ee5','99.240.171.186','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[985],\"answers\":[\"Gail - 40-45 min (no idea, but can keep up with Rosy)\"],\"cf\":[]}}','\"\"','2016-02-18 06:59:50'),(857,63,'vote_id_56c5c6df83fa2','70.53.197.212','Canada','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[986],\"answers\":[\"Ellie at conference all day\"],\"cf\":[]}}','\"\"','2016-02-18 08:28:00'),(858,62,'vote_id_56c5c7c6e66d3','50.101.56.100','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[987],\"answers\":[\"Susan O 30 min\"],\"cf\":[]}}','\"\"','2016-02-18 08:31:52'),(859,63,'vote_id_56c5d7a884b30','184.144.120.120','Canada','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[988],\"answers\":[\"Margaret McLaren have fun. Son is in town for reading week.\"],\"cf\":[]}}','\"\"','2016-02-18 09:39:37'),(860,63,'vote_id_56c5f9a0c346a','99.240.208.142','Canada','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[989],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-02-18 12:04:34'),(861,62,'vote_id_56c60ff443747','173.206.88.99','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[990],\"answers\":[\"Julie - arriving late\"],\"cf\":[]}}','\"\"','2016-02-18 13:39:49'),(862,62,'vote_id_56c61a7543db4','70.30.84.82','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[991],\"answers\":[\"Liz R - 43 minutes??\"],\"cf\":[]}}','\"\"','2016-02-18 14:24:40'),(863,62,'vote_id_56c61ec131bf8','207.236.148.98','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[992],\"answers\":[\"Cyndy - 42 minutes (complete guess!)\"],\"cf\":[]}}','\"\"','2016-02-18 14:42:58'),(864,62,'vote_id_56c62407d959e','99.240.235.250','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[993],\"answers\":[\"Cary - 40-60 min\"],\"cf\":[]}}','\"\"','2016-02-18 15:05:29'),(865,62,'vote_id_56c63bd08d242','184.146.37.231','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[994],\"answers\":[\"Meryl - 31\"],\"cf\":[]}}','\"\"','2016-02-18 16:46:57'),(866,62,'vote_id_56c64f1703817','142.113.150.171','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[995],\"answers\":[\"Pat-  30 min? or so.\"],\"cf\":[]}}','\"\"','2016-02-18 18:09:12'),(867,63,'vote_id_56c66147a79ac','99.240.162.239','Canada','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[996],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2016-02-18 19:26:48'),(868,63,'vote_id_56c6841e7d0f6','67.230.128.25','Canada','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[997],\"answers\":[\"Darlene - family commitments\"],\"cf\":[]}}','\"\"','2016-02-18 21:55:30'),(869,62,'vote_id_56c686627c108','99.248.98.53','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[998],\"answers\":[\"Maggie-27\"],\"cf\":[]}}','\"\"','2016-02-18 22:05:28'),(870,62,'vote_id_56c68f1b1da7d','99.246.10.81','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[999],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-02-18 22:42:20'),(871,62,'vote_id_56c708a094f8b','99.246.134.29','Canada','0','anonymous','','{\"q-62\":{\"question\":\"ATTENDING FRIDAY FEBRUARY 19?\",\"id\":62,\"a\":[1000],\"answers\":[\"Sandra-no idea 45-60?\"],\"cf\":[]}}','\"\"','2016-02-19 07:20:51'),(872,57,'vote_id_56c7275750254','99.240.235.250','Canada','0','anonymous','','{\"q-57\":{\"question\":\"Away Feb 5?\",\"id\":57,\"a\":[1001],\"answers\":[\"Cary - sorry change of plans - don\\\\\'t think I can finish marking in time\"],\"cf\":[]}}','\"\"','2016-02-19 09:31:52'),(873,63,'vote_id_56c72f2a1fc48','108.63.192.154','Canada','0','anonymous','','{\"q-63\":{\"question\":\"AWAY FEB 19?\",\"id\":63,\"a\":[1002],\"answers\":[\"Susan R - Sorry, thought I responded earlier. Other committments today.\"],\"cf\":[]}}','\"\"','2016-02-19 10:05:16'),(874,61,'vote_id_56c777768a4b2','99.246.66.128','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[1003],\"answers\":[\"Lou\"],\"cf\":[]}}','\"\"','2016-02-19 15:13:43'),(875,64,'vote_id_56cdb8528e011','108.63.171.230','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1006],\"answers\":[\"Jo-Ann H.\"],\"cf\":[]}}','\"\"','2016-02-24 09:04:13'),(876,65,'vote_id_56cddcb2cc205','184.145.139.18','Canada','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1007],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2016-02-24 11:39:17'),(877,64,'vote_id_56cde4f4c0ab1','99.248.98.53','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1008],\"answers\":[\"Maggie - very easy outing to test conditions\"],\"cf\":[]}}','\"\"','2016-02-24 12:14:29'),(878,64,'vote_id_56cdfa98320d2','173.206.142.80','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1009],\"answers\":[\"Julie - easy outing as will be skiing that evening\"],\"cf\":[]}}','\"\"','2016-02-24 13:46:51'),(879,65,'vote_id_56ce199bed070','184.144.120.120','Canada','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1010],\"answers\":[\"Margaret McLaren\"],\"cf\":[]}}','\"\"','2016-02-24 15:59:11'),(880,64,'vote_id_56ce2068b6420','206.132.179.49','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1011],\"answers\":[\"Cyndy - depending on conditions - but I love the idea of a relaxed ski!\"],\"cf\":[]}}','\"\"','2016-02-24 16:28:09'),(881,64,'vote_id_56ce31ae41697','99.246.10.81','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1012],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-02-24 17:41:52'),(882,64,'vote_id_56ce368b0add8','184.146.37.231','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1013],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2016-02-24 18:02:36'),(883,64,'vote_id_56ce631d7b906','76.10.162.45','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1014],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-02-24 21:12:49'),(884,64,'vote_id_56cf0dc265f63','173.177.227.6','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1015],\"answers\":[\"Marie-France: must leave at 13h30 to volunteer at Gatineau Loppett. I will attend if location not too far. Relais (P2) parking at stadium will likely be closed like Wed.\"],\"cf\":[]}}','\"\"','2016-02-25 09:20:58'),(885,64,'vote_id_56cf6fd17d626','70.30.84.82','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1016],\"answers\":[\"Liz R - will depend on conditions\"],\"cf\":[]}}','\"\"','2016-02-25 16:19:14'),(886,65,'vote_id_56cf74224b9f6','64.231.69.190','Canada','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1017],\"answers\":[\"Pat\"],\"cf\":[]}}','\"\"','2016-02-25 16:37:40'),(887,64,'vote_id_56cf9891a12e5','184.145.136.63','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1018],\"answers\":[\"Linda easy from 11:00 to 1 - want help with waxing\"],\"cf\":[]}}','\"\"','2016-02-25 19:13:08'),(888,65,'vote_id_56cfc0b3556b9','99.240.208.142','Canada','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1019],\"answers\":[\"Penny\"],\"cf\":[]}}','\"\"','2016-02-25 22:04:27'),(889,65,'vote_id_56cfca5d91865','64.231.8.45','Canada','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1020],\"answers\":[\"Susan ny meeting at work :(\"],\"cf\":[]}}','\"\"','2016-02-25 22:45:34'),(890,64,'vote_id_56d0413f6ad4b','173.34.159.176','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1021],\"answers\":[\"Annemarieke (easy and short)\"],\"cf\":[]}}','\"\"','2016-02-26 07:12:48'),(891,64,'vote_id_56d04ab466bed','23.91.148.12','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1022],\"answers\":[\"Anne\"],\"cf\":[]}}','\"\"','2016-02-26 07:53:09'),(892,65,'vote_id_56d04d246c60f','99.246.134.29','Canada','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1023],\"answers\":[\"sandra\"],\"cf\":[]}}','\"\"','2016-02-26 08:03:33'),(893,64,'vote_id_56d04dbd760f9','99.240.162.239','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1024],\"answers\":[\"Carol\"],\"cf\":[]}}','\"\"','2016-02-26 08:06:06'),(894,65,'vote_id_56d0596a7b60c','50.101.56.100','Canada','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1025],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2016-02-26 08:55:55'),(895,64,'vote_id_56d06388bb0ad','174.92.94.17','Canada','0','anonymous','','{\"q-64\":{\"question\":\"ATTENDING FEBRUARY 26?\",\"id\":64,\"a\":[1026],\"answers\":[\"Rosy - easy and short\"],\"cf\":[]}}','\"\"','2016-02-26 09:39:06'),(896,65,'vote_id_56d07c14bdb36','99.224.14.80','Canada','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1027],\"answers\":[\"lyse will be testing snow conditions at P2\"],\"cf\":[]}}','\"\"','2016-02-26 11:23:50'),(897,65,'vote_id_56d085d03f744','70.53.197.212','Canada','0','anonymous','','{\"q-65\":{\"question\":\"AWAY FEBRUARY 26?\",\"id\":65,\"a\":[1028],\"answers\":[\"Ellie leaving for Mexico today and away next week\"],\"cf\":[]}}','\"\"','2016-02-26 12:05:21'),(898,66,'vote_id_56d74b88547f0','184.146.37.231','Canada','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1031],\"answers\":[\"Meryl\"],\"cf\":[]}}','\"\"','2016-03-02 15:22:33'),(899,67,'vote_id_56d7555ed7ac0','108.63.150.32','Canada','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1032],\"answers\":[\"Julie\"],\"cf\":[]}}','\"\"','2016-03-02 16:04:31'),(900,67,'vote_id_56d7579927f19','24.212.184.210','Canada','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1033],\"answers\":[\"Jennifer\"],\"cf\":[]}}','\"\"','2016-03-02 16:14:02'),(901,67,'vote_id_56d75851e6f82','99.224.14.80','Canada','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1034],\"answers\":[\"Lyse\"],\"cf\":[]}}','\"\"','2016-03-02 16:17:06'),(902,66,'vote_id_56d76a7d9cb4c','70.30.84.82','Canada','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1035],\"answers\":[\"Liz R\"],\"cf\":[]}}','\"\"','2016-03-02 17:34:38'),(903,66,'vote_id_56d790ce387c1','67.230.128.65','Canada','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1036],\"answers\":[\"Darlene\"],\"cf\":[]}}','\"\"','2016-03-02 20:18:06'),(904,66,'vote_id_56d7a600bc480','184.145.139.18','Canada','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1037],\"answers\":[\"Ila\"],\"cf\":[]}}','\"\"','2016-03-02 21:48:33'),(905,66,'vote_id_56d8b85c91383','99.248.98.53','Canada','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1038],\"answers\":[\"Maggie - will be skiing leaving from P7 but plan to start earlier may see you on the trail somewhere\"],\"cf\":[]}}','\"\"','2016-03-03 17:19:09'),(906,66,'vote_id_56d8bab45441a','64.231.8.45','Canada','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1039],\"answers\":[\"Susan ny hoping to make but will be coming from work.\"],\"cf\":[]}}','\"\"','2016-03-03 17:29:09'),(907,66,'vote_id_56d8ce536287d','99.240.162.239','Canada','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1040],\"answers\":[\"Carol - might also start  little earlier because have to be back in Ottawa before 3\"],\"cf\":[]}}','\"\"','2016-03-03 18:52:52'),(908,67,'vote_id_56d8d843875ea','64.231.69.190','Canada','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1041],\"answers\":[\"pat\"],\"cf\":[]}}','\"\"','2016-03-03 19:35:16'),(909,66,'vote_id_56d8ede8e11ca','99.240.235.250','Canada','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1042],\"answers\":[\"Cary\"],\"cf\":[]}}','\"\"','2016-03-03 21:07:37'),(910,66,'vote_id_56d8fb1f95c8b','184.145.142.191','Canada','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1043],\"answers\":[\"Pauline\"],\"cf\":[]}}','\"\"','2016-03-03 22:04:00'),(911,66,'vote_id_56d9899cdea10','50.101.56.100','Canada','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1044],\"answers\":[\"Susan o\"],\"cf\":[]}}','\"\"','2016-03-04 08:11:57'),(912,67,'vote_id_56d98e202eb80','99.246.10.81','Canada','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1045],\"answers\":[\"Janice\"],\"cf\":[]}}','\"\"','2016-03-04 08:31:13'),(913,66,'vote_id_56d9974004611','99.240.171.186','Canada','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1046],\"answers\":[\"Gail\"],\"cf\":[]}}','\"\"','2016-03-04 09:10:08'),(914,67,'vote_id_56d9987998e58','184.145.136.63','Canada','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1047],\"answers\":[\"linda\"],\"cf\":[]}}','\"\"','2016-03-04 09:15:22'),(915,66,'vote_id_56d9ace1576ab','173.34.159.176','Canada','0','anonymous','','{\"q-66\":{\"question\":\"ATTENDING CLASSIC SKI at P7?\",\"id\":66,\"a\":[1048],\"answers\":[\"Annemarieke\"],\"cf\":[]}}','\"\"','2016-03-04 10:42:30'),(916,67,'vote_id_56d9ad0d008d0','173.34.159.176','Canada','0','anonymous','','{\"q-67\":{\"question\":\"ATTENDING SKATE SKI at P6?\",\"id\":67,\"a\":[1049],\"answers\":[\"Annemarieke ( above is wrong, going to skate ski)\"],\"cf\":[]}}','\"\"','2016-03-04 10:43:12'),(917,68,'vote_id_56df329e9d4a6','108.63.171.230','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1051],\"answers\":[\"Jo-Ann, classic klister, Wakefield Triangle\"],\"cf\":[]}}','\"\"','2016-03-08 15:14:24'),(918,68,'vote_id_56df3399b9c3e','24.212.184.210','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1052],\"answers\":[\"Jennifer - probably skate but trying to decide if I can handle klister...undecided...\"],\"cf\":[]}}','\"\"','2016-03-08 15:18:34'),(919,68,'vote_id_56df3795ab789','173.177.227.6','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1053],\"answers\":[\"Marie-France= absent unexpected Italian language course sorry\"],\"cf\":[]}}','\"\"','2016-03-08 15:35:35'),(920,68,'vote_id_56df51122b099','50.101.56.100','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1054],\"answers\":[\"Susan I - classic and Wakefield triangle\"],\"cf\":[]}}','\"\"','2016-03-08 17:24:19'),(921,68,'vote_id_56e08a9233ed9','184.145.139.18','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1055],\"answers\":[\"Ila - classic, probably waxless, destination tbd.\"],\"cf\":[]}}','\"\"','2016-03-09 15:41:55'),(922,68,'vote_id_56e17ac794d23','174.93.57.228','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1056],\"answers\":[\"Meryl - classic\"],\"cf\":[]}}','\"\"','2016-03-10 08:46:49'),(923,68,'vote_id_56e17caf2972e','70.30.84.82','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1057],\"answers\":[\"Liz R - classic wax less\"],\"cf\":[]}}','\"\"','2016-03-10 08:54:56'),(924,68,'vote_id_56e1af5295e75','70.26.237.111','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1058],\"answers\":[\"Ellie - classic probably waxless\"],\"cf\":[]}}','\"\"','2016-03-10 12:30:59'),(925,68,'vote_id_56e1cf38c18bf','99.240.162.239','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1059],\"answers\":[\"Carol - classic: going to try to make it but will confirm fri morning if can make P19 starting point on time.\"],\"cf\":[]}}','\"\"','2016-03-10 14:47:09'),(926,68,'vote_id_56e1fe0194f40','99.246.10.81','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1060],\"answers\":[\"Janice classic klister\"],\"cf\":[]}}','\"\"','2016-03-10 18:06:42'),(927,68,'vote_id_56e2057b09f7d','67.230.128.2','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1061],\"answers\":[\"Darlene - will decide between waxless and skate skis once I see the conditions tomorrow\"],\"cf\":[]}}','\"\"','2016-03-10 18:38:36'),(928,68,'vote_id_56e23117eec97','173.206.32.4','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1062],\"answers\":[\"Julie - classic - will need someone\\\\\'s klister - hoping to be there on time but waiting for repair guy in the a.m.\"],\"cf\":[]}}','\"\"','2016-03-10 21:44:41'),(929,68,'vote_id_56e234ed3562c','184.145.142.191','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1063],\"answers\":[\"Pauline - I think I will try skate skiing, heading out on 50\"],\"cf\":[]}}','\"\"','2016-03-10 22:01:06'),(930,68,'vote_id_56e2356e512e1','99.240.235.250','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1064],\"answers\":[\"Cary - classic to Renaud.\"],\"cf\":[]}}','\"\"','2016-03-10 22:03:21'),(931,68,'vote_id_56e2cf2d52416','99.240.162.239','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1065],\"answers\":[\"Carol classic\"],\"cf\":[]}}','\"\"','2016-03-11 08:59:11'),(932,68,'vote_id_56e2cf8758db4','99.224.14.80','Canada','0','anonymous','','{\"q-68\":{\"question\":\"Attending Friday March 11 at P19?\",\"id\":68,\"a\":[1066],\"answers\":[\"Lyse classic\"],\"cf\":[]}}','\"\"','2016-03-11 09:00:41'),(933,61,'vote_id_56e8729ad42eb','207.236.148.98','Canada','0','anonymous','','{\"q-61\":{\"question\":\"I am able to attend on a Friday (Sofits\' regular training time) after the snow melts\",\"id\":61,\"a\":[1067],\"answers\":[\"Cyndy\"],\"cf\":[]}}','\"\"','2016-03-15 16:37:47');
/*!40000 ALTER TABLE `wp_yop2_poll_results` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop2_poll_templates`
--

DROP TABLE IF EXISTS `wp_yop2_poll_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop2_poll_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `template_author` bigint(20) NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL,
  `before_vote_template` text NOT NULL,
  `after_vote_template` text NOT NULL,
  `before_start_date_template` text NOT NULL,
  `after_end_date_template` text NOT NULL,
  `css` text NOT NULL,
  `js` text NOT NULL,
  `status` varchar(255) NOT NULL,
  `last_modified` datetime NOT NULL,
  `date_added` datetime NOT NULL,
  `after_vote_template_chart` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop2_poll_templates`
--

LOCK TABLES `wp_yop2_poll_templates` WRITE;
/*!40000 ALTER TABLE `wp_yop2_poll_templates` DISABLE KEYS */;
INSERT INTO `wp_yop2_poll_templates` VALUES (1,1,'White','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE%</div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n	width:%POLL-WIDTH%;\r\n	background:#fff;\r\n	padding:10px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#555; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#555; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','default','2015-08-04 07:22:07','2015-04-14 14:36:31','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(2,1,'Grey','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#eee;\r\n    padding:10px;\r\n    color:#000;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#000; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#000; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:08','2015-04-14 14:36:31','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(3,1,'Dark','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n	width:%POLL-WIDTH%;\r\n	background:#555;\r\n	padding:10px;\r\n    color:#fff;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#333333; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:08','2015-04-14 14:36:31','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(4,1,'Blue v1','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#327BD6;\r\n    padding:10px;\r\n    color:#fff;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:08','2015-04-14 14:36:31','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(5,1,'Blue v2','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:0px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-weight:bold;\r\n	background:#327BD6;\r\n	color:#fff;\r\n	padding:5px;\r\n        text-align:center;\r\n        font-size:12px;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#327BD6; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#327BD6; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:08','2015-04-14 14:36:31','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(6,1,'Blue v3','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:10px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n    border:5px solid #327BD6;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px;  }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#327BD6; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#327BD6; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:09','2015-04-14 14:36:31','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(7,1,'Red v1','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#B70004;\r\n    padding:10px;\r\n    color:#fff;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:09','2015-04-14 14:36:31','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(8,1,'Red v2','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:0px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-weight:bold;\r\n	background:#B70004;\r\n	color:#fff;\r\n	padding:5px;\r\n        text-align:center;\r\n        font-size:12px;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#B70004; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#B70004; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:09','2015-04-14 14:36:32','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(9,1,'Red v3','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:10px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n    border:5px solid #B70004;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#B70004; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#B70004; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:09','2015-04-14 14:36:32','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(10,1,'Green v1','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#3F8B43;\r\n    padding:10px;\r\n    color:#fff;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:00FF00;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:09','2015-04-14 14:36:32','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(11,1,'Green v2','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:0px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-weight:bold;\r\n	background:#3F8B43;\r\n	color:#fff;\r\n	padding:5px;\r\n        text-align:center;\r\n        font-size:12px;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:09','2015-04-14 14:36:32','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(12,1,'Green v3','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:10px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n    border:5px solid #3F8B43;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:09','2015-04-14 14:36:32','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(13,1,'Orange v1','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#FB6911;\r\n    padding:10px;\r\n    color:#fff;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:09','2015-04-14 14:36:32','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(14,1,'Orange v2','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:0px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-weight:bold;\r\n	background:#FB6911;\r\n	color:#fff;\r\n	padding:5px;\r\n        text-align:center;\r\n        font-size:12px;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#FB6911; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#FB6911; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:09','2015-04-14 14:36:32','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(15,1,'Orange v3','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL% [ANSWER_RESULT_CONTAINER]\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%  [/ANSWER_RESULT_CONTAINER]\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\"></div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:10px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n    border:5px solid #FB6911;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#FB6911; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#FB6911; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\"border-left-width\")) -\r\n					parseInt(jQuery(this).css(\"border-right-width\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\"border-left-width\", \"0px\");\r\n		jQuery(this).css(\"border-right-width\", \"0px\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\"padding-left\")) -\r\n		parseInt(jQuery(this).css(\"padding-left\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\'.yop-poll-forms\').removeClass(\'yop-poll-forms-display\');\r\n	if(typeof window.strip_results_%POLL-ID% == \"function\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \"function\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \"function\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"width\",\"100%\");\r\n             else\r\n                         jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-answer-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \"undefined\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\"float\", \"left\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\'#yop-poll-answers-%POLL-ID%-\'+ cols[quest][3] +\' li\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n             jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).width(width-20);\r\n                jQuery(\".yop-poll-li-result-%POLL-ID%-\"+cols[quest][3]).css(\"float\", \"left\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-08-04 07:22:09','2015-04-14 14:36:32','	[QUESTION_CONTAINER]\r\n	<div id = \"yop-poll-question-container-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-question-container-%POLL-ID%\">\r\n		<div id = \"yop-poll-question-%POLL-ID%-%QUESTION-ID%\"\r\n             class = \"yop-poll-question-%POLL-ID%\">%POLL-QUESTION%</div>\r\n		<div id = \"yop-poll-answers-%POLL-ID%-%QUESTION-ID%\" class = \"yop-poll-answers-%POLL-ID%\">\r\n                       <div id = \"yop-poll-answers-chart-canvas-%POLL-ID%-%QUESTION-ID%\" style=\"text-align:center;\"  class=\"yop-poll-answers-container-chart-%POLL-ID% yop-poll-center-chart\">\r\n			<canvas id=\"yop-poll-answers-chart-%POLL-ID%-%QUESTION-ID%\" class=\"yop-poll-answers-chart\"></canvas>\r\n                       </div>\r\n		</div>\r\n	</div>\r\n	<div class = \"yop-poll-clear-%POLL-ID%\"></div>\r\n	[/QUESTION_CONTAINER]\r\n<div id = \"yop-poll-vote-%POLL-ID%\" class = \"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id = \"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n	<div id = \"yop-poll-archive-%POLL-ID%\">%POLL-VIEW-ARCHIVE-LINK%</div>\r\n	%SHARE-BUTTON%\r\n</div>'),(16,8,'Green v2 - clone','[QUESTION_CONTAINER]<div id=\\\"yop-poll-name-%POLL-ID%\\\" class=\\\"yop-poll-name\\\">%POLL-QUESTION%</div>\r\n<div id=\\\"yop-poll-question-%POLL-ID%\\\" class=\\\"yop-poll-question\\\"></div>\r\n<div id=\\\"yop-poll-answers-%POLL-ID%\\\" class=\\\"yop-poll-answers\\\">\r\n	<ul>\r\n		[OTHER_ANSWER_CONTAINER]</del>\r\n		<li class=\\\"yop-poll-li-answer-%POLL-ID%\\\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\\\"yop-poll-results-text-%POLL-ID%\\\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\\\"yop-poll-custom-%POLL-ID%\\\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\\\"yop-poll-captcha-%POLL-ID%\\\">\r\n    <div class=\\\"yop-poll-captcha-image-div\\\" id=\\\"yop-poll-captcha-image-div-%POLL-ID%\\\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\\\"yop-poll-captcha-helpers-div\\\" id=\\\"yop-poll-captcha-helpers-div-%POLL-ID%\\\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\\\"yop_poll_clear\\\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\\\"yop-poll-captcha-input-div\\\" id=\\\"yop-poll-captcha-input-div-%POLL-ID%\\\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\\\"yop-poll-vote-%POLL-ID%\\\" class=\\\"yop-poll-footer\\\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\\\"yop-poll-results-%POLL-ID%\\\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n</div>[/QUESTION_CONTAINER]','[QUESTION_CONTAINER]<div id=\\\"yop-poll-name-%POLL-ID%\\\" class=\\\"yop-poll-name\\\">%POLL-QUESTION%</div>\r\n<div id=\\\"yop-poll-question-%POLL-ID%\\\" class=\\\"yop-poll-question\\\"></div>\r\n<div id=\\\"yop-poll-answers-%POLL-ID%\\\" class=\\\"yop-poll-answers\\\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\\\"yop-poll-li-result-%POLL-ID%\\\">\r\n			<label class=\\\"pds-feedback-label-%POLL-ID%\\\">\r\n				<span class=\\\"pds-answer-text-%POLL-ID%\\\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\\\"pds-feedback-result-%POLL-ID%\\\">\r\n					<span class=\\\"pds-feedback-per-%POLL-ID%\\\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\\\"yop-poll-vote-%POLL-ID%\\\" class=\\\"yop-poll-footer\\\">\r\n	<div>%POLL-TOTAL-ANSWERS-LABEL%</div>\r\n	<div>%POLL-TOTAL-VOTES-LABEL%</div>\r\n	<div id=\\\"yop-poll-back-%POLL-ID%\\\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>[/QUESTION_CONTAINER]','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','[QUESTION_CONTAINER]This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\\\"yop-poll-question-%POLL-ID%\\\" class=\\\"yop-poll-question\\\">%POLL-QUESTION%</div>\r\n<div id=\\\"yop-poll-answers-1\\\" class=\\\"yop-poll-answers\\\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\\\"yop-poll-li-result-%POLL-ID%\\\">\r\n			<label class=\\\"pds-feedback-label\\\">\r\n				<span class=\\\"pds-answer-text\\\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\\\"pds-feedback-result\\\">\r\n					<span class=\\\"pds-feedback-per\\\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\\\"pds-clear\\\" style=\\\"display: block;clear: both;height:1px;line-height:1px;\\\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%[/QUESTION_CONTAINER]','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:0px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-weight:bold;\r\n	background:#3F8B43;\r\n	color:#fff;\r\n	padding:5px;\r\n        text-align:center;\r\n        font-size:12px;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\\\'text\\\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','	function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		if( parseInt(jQuery(this).width() ) > 0) {\r\n			jQuery(this).width(\r\n				parseInt(\r\n					jQuery(this).width() ) -\r\n					parseInt(jQuery(this).css(\\\"border-left-width\\\")) -\r\n					parseInt(jQuery(this).css(\\\"border-right-width\\\"))\r\n			);\r\n			}\r\n		else {\r\n		jQuery(this).css(\\\"border-left-width\\\", \\\"0px\\\");\r\n		jQuery(this).css(\\\"border-right-width\\\", \\\"0px\\\");\r\n		}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() {\r\n		jQuery(this).width(\r\n		parseInt( jQuery(this).width() ) -\r\n		parseInt(jQuery(this).css(\\\"padding-left\\\")) -\r\n		parseInt(jQuery(this).css(\\\"padding-left\\\"))\r\n		);\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n	stripPadding_%POLL-ID%( jQuery(\\\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\\\") );\r\n	stripBorder_%POLL-ID%(  jQuery(\\\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\\\") );\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n   jQuery(\\\'.yop-poll-forms\\\').removeClass(\\\'yop-poll-forms-display\\\');\r\n	if(typeof window.strip_results_%POLL-ID% == \\\"function\\\")\r\n		strip_results_%POLL-ID%();\r\n	if(typeof window.tabulate_answers_%POLL-ID% == \\\"function\\\")\r\n		tabulate_answers_%POLL-ID%();\r\n	if(typeof window.tabulate_results_%POLL-ID% == \\\"function\\\")\r\n		tabulate_results_%POLL-ID%();\r\n\r\n\r\n\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n\r\n    findWidest  = typeof findWidest  !== \\\"undefined\\\" ? findWidest  : false;\r\n    var quest=0;\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\\\"float\\\", \\\"left\\\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n\r\n            count++;\r\n            cols[quest][2]=(jQuery(\\\'#yop-poll-answers-%POLL-ID%-\\\'+ cols[quest][3] +\\\' li\\\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n             if(cols[quest][0]==1)\r\n                        jQuery(\\\".yop-poll-li-answer-%POLL-ID%-\\\"+cols[quest][3]).css(\\\"width\\\",\\\"100%\\\");\r\n             else\r\n                         jQuery(\\\".yop-poll-li-answer-%POLL-ID%-\\\"+cols[quest][3]).width(width-20);\r\n             jQuery(\\\".yop-poll-li-answer-%POLL-ID%-\\\"+cols[quest][3]).css(\\\"float\\\", \\\"left\\\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][0]);\r\n                jQuery(\\\".yop-poll-li-answer-%POLL-ID%-\\\"+cols[quest][3]).width(width-20);\r\n                jQuery(\\\".yop-poll-li-answer-%POLL-ID%-\\\"+cols[quest][3]).css(\\\"float\\\", \\\"left\\\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\n\r\nfunction equalWidth2_%POLL-ID%(obj, cols, findWidest ) {\r\n    findWidest  = typeof findWidest  !== \\\"undefined\\\" ? findWidest  : false;\r\n    var quest=0;\r\n\r\n    if ( findWidest ) {\r\n        obj.each(function() {\r\n            var thisWidth = jQuery(this).width();\r\n            width = parseInt(thisWidth / cols);\r\n            jQuery(this).width(width);\r\n            jQuery(this).css(\\\"float\\\", \\\"left\\\");\r\n        });\r\n    }\r\n    else {\r\n        var widest = 0;\r\n        var count  = 0;\r\n        var poz_each_question=0;\r\n\r\n        obj.each(function() {\r\n            count++;\r\n            cols[quest][2]=(jQuery(\\\'#yop-poll-answers-%POLL-ID%-\\\'+ cols[quest][3] +\\\' li\\\').length);\r\n            var thisWidth = jQuery(this).width();\r\n            if(thisWidth > widest) {\r\n                widest = thisWidth;\r\n            }\r\n            if(count<cols[quest][2])\r\n            { width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n             jQuery(\\\".yop-poll-li-result-%POLL-ID%-\\\"+cols[quest][3]).width(width-20);\r\n             jQuery(\\\".yop-poll-li-result-%POLL-ID%-\\\"+cols[quest][3]).css(\\\"float\\\", \\\"left\\\");\r\n            }\r\n            else\r\n            {\r\n                count=0;\r\n\r\n\r\n                width = parseInt( %POLL-WIDTH% / cols[quest][1]);\r\n                jQuery(\\\".yop-poll-li-result-%POLL-ID%-\\\"+cols[quest][3]).width(width-20);\r\n                jQuery(\\\".yop-poll-li-result-%POLL-ID%-\\\"+cols[quest][3]).css(\\\"float\\\", \\\"left\\\");\r\n                quest++;\r\n            }\r\n\r\n        });\r\n}\r\n}\r\nfunction tabulate_answers_%POLL-ID%() {\r\n\r\n	equalWidth_%POLL-ID%( jQuery(\\\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\\\"), %ANSWERS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\\\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \\\"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth2_%POLL-ID%( jQuery(\\\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\\\"), %RESULTS-TABULATED-COLS% );\r\n	//equalWidth_%POLL-ID%( jQuery(\\\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \\\"), %RESULTS-TABULATED-COLS%, true );\r\n	}\r\n\r\njQuery(document).ready(function(){\r\n	runOnPollStateChange_%POLL-ID%();\r\n});\r\n\r\nfunction runOnPollStateChange_%POLL-ID%() {\r\n\r\n};','other','2015-09-17 21:08:23','2015-09-17 21:02:32',NULL);
/*!40000 ALTER TABLE `wp_yop2_poll_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop2_poll_votes_custom_fields`
--

DROP TABLE IF EXISTS `wp_yop2_poll_votes_custom_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop2_poll_votes_custom_fields` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `poll_id` int(11) NOT NULL,
  `question_id` int(11) NOT NULL,
  `vote_id` varchar(255) NOT NULL,
  `custom_field_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `user_type` enum('facebook','wordpress','anonymous','default') NOT NULL DEFAULT 'default',
  `custom_field_value` text NOT NULL,
  `tr_id` varchar(255) NOT NULL,
  `vote_date` datetime NOT NULL,
  PRIMARY KEY (`ID`),
  KEY `poll_id` (`poll_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop2_poll_votes_custom_fields`
--

LOCK TABLES `wp_yop2_poll_votes_custom_fields` WRITE;
/*!40000 ALTER TABLE `wp_yop2_poll_votes_custom_fields` DISABLE KEYS */;
INSERT INTO `wp_yop2_poll_votes_custom_fields` VALUES (1,3,3,'vote_id_55fb626898583',1,0,'anonymous','Penny','','2015-09-17 21:01:28');
/*!40000 ALTER TABLE `wp_yop2_poll_votes_custom_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop2_pollmeta`
--

DROP TABLE IF EXISTS `wp_yop2_pollmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop2_pollmeta` (
  `meta_id` int(11) NOT NULL AUTO_INCREMENT,
  `yop_poll_id` int(11) NOT NULL,
  `meta_key` varchar(255) NOT NULL,
  `meta_value` longtext NOT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `yop_poll_id` (`yop_poll_id`)
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop2_pollmeta`
--

LOCK TABLES `wp_yop2_pollmeta` WRITE;
/*!40000 ALTER TABLE `wp_yop2_pollmeta` DISABLE KEYS */;
INSERT INTO `wp_yop2_pollmeta` VALUES (60,60,'options','a:73:{s:18:\"poll_archive_order\";i:9;s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"1970-01-01 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:14:\"template_width\";s:5:\"800px\";s:21:\"widget_template_width\";s:5:\"800px\";s:17:\"view_results_link\";s:2:\"no\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:16:\"view_total_votes\";s:2:\"no\";s:18:\"view_total_answers\";s:3:\"yes\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:24:\"vote_permisions_facebook\";s:2:\"no\";s:22:\"vote_permisions_google\";s:2:\"no\";s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";s:2:\"30\";s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";s:1:\"1\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:19:\"redirect_after_vote\";s:2:\"no\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:13:\"poll_page_url\";b:0;s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";s:2:\"10\";s:16:\"bar_border_color\";s:6:\"EDB918\";s:15:\"show_results_in\";s:3:\"bar\";s:16:\"bar_border_width\";s:1:\"1\";s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";s:4:\"9999\";s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:8:\"template\";s:1:\"4\";s:15:\"widget_template\";s:1:\"4\";s:17:\"vote_button_label\";s:4:\"SEND\";s:25:\"vote_facebook_integration\";s:2:\"on\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:0:\"\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";}'),(61,61,'options','a:73:{s:18:\"poll_archive_order\";i:10;s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"1970-01-01 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:14:\"template_width\";s:5:\"800px\";s:21:\"widget_template_width\";s:5:\"800px\";s:17:\"view_results_link\";s:2:\"no\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:16:\"view_total_votes\";s:2:\"no\";s:18:\"view_total_answers\";s:3:\"yes\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:24:\"vote_permisions_facebook\";s:2:\"no\";s:22:\"vote_permisions_google\";s:2:\"no\";s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";s:2:\"30\";s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";s:1:\"1\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:19:\"redirect_after_vote\";s:2:\"no\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:13:\"poll_page_url\";b:0;s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";s:2:\"10\";s:16:\"bar_border_color\";s:6:\"EDB918\";s:15:\"show_results_in\";s:3:\"bar\";s:16:\"bar_border_width\";s:1:\"1\";s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";s:4:\"9999\";s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:8:\"template\";s:2:\"10\";s:15:\"widget_template\";s:2:\"10\";s:17:\"vote_button_label\";s:4:\"SEND\";s:25:\"vote_facebook_integration\";s:2:\"on\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";}'),(64,64,'options','a:73:{s:18:\"poll_archive_order\";i:13;s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"1970-01-01 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:14:\"template_width\";s:5:\"800px\";s:21:\"widget_template_width\";s:5:\"800px\";s:17:\"view_results_link\";s:2:\"no\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:16:\"view_total_votes\";s:2:\"no\";s:18:\"view_total_answers\";s:3:\"yes\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:24:\"vote_permisions_facebook\";s:2:\"no\";s:22:\"vote_permisions_google\";s:2:\"no\";s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";s:2:\"30\";s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";s:1:\"1\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:19:\"redirect_after_vote\";s:2:\"no\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:13:\"poll_page_url\";b:0;s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";s:2:\"10\";s:16:\"bar_border_color\";s:6:\"EDB918\";s:15:\"show_results_in\";s:3:\"bar\";s:16:\"bar_border_width\";s:1:\"1\";s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";s:4:\"9999\";s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:8:\"template\";s:1:\"4\";s:15:\"widget_template\";s:1:\"4\";s:17:\"vote_button_label\";s:4:\"SEND\";s:25:\"vote_facebook_integration\";s:2:\"on\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:16:\"ATTENDING FEb 26\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";}'),(65,65,'options','a:73:{s:18:\"poll_archive_order\";i:14;s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"1970-01-01 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:14:\"template_width\";s:5:\"800px\";s:21:\"widget_template_width\";s:5:\"800px\";s:17:\"view_results_link\";s:2:\"no\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:16:\"view_total_votes\";s:2:\"no\";s:18:\"view_total_answers\";s:3:\"yes\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:24:\"vote_permisions_facebook\";s:2:\"no\";s:22:\"vote_permisions_google\";s:2:\"no\";s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";s:2:\"30\";s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";s:1:\"1\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:19:\"redirect_after_vote\";s:2:\"no\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:13:\"poll_page_url\";b:0;s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";s:2:\"10\";s:16:\"bar_border_color\";s:6:\"EDB918\";s:15:\"show_results_in\";s:3:\"bar\";s:16:\"bar_border_width\";s:1:\"1\";s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";s:4:\"9999\";s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:8:\"template\";s:1:\"7\";s:15:\"widget_template\";s:1:\"7\";s:17:\"vote_button_label\";s:4:\"SEND\";s:25:\"vote_facebook_integration\";s:2:\"on\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:16:\"AWAY FEBRUARY 26\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";}'),(66,66,'options','a:73:{s:18:\"poll_archive_order\";i:15;s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"1970-01-01 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:14:\"template_width\";s:5:\"800px\";s:21:\"widget_template_width\";s:5:\"800px\";s:17:\"view_results_link\";s:2:\"no\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:16:\"view_total_votes\";s:2:\"no\";s:18:\"view_total_answers\";s:3:\"yes\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:24:\"vote_permisions_facebook\";s:2:\"no\";s:22:\"vote_permisions_google\";s:2:\"no\";s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";s:2:\"30\";s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";s:1:\"1\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:19:\"redirect_after_vote\";s:2:\"no\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:13:\"poll_page_url\";b:0;s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";s:2:\"10\";s:16:\"bar_border_color\";s:6:\"EDB918\";s:15:\"show_results_in\";s:3:\"bar\";s:16:\"bar_border_width\";s:1:\"1\";s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";s:4:\"9999\";s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:8:\"template\";s:2:\"10\";s:15:\"widget_template\";s:2:\"10\";s:17:\"vote_button_label\";s:4:\"SEND\";s:25:\"vote_facebook_integration\";s:2:\"on\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";}'),(67,67,'options','a:73:{s:18:\"poll_archive_order\";i:6;s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"1970-01-01 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:14:\"template_width\";s:5:\"800px\";s:21:\"widget_template_width\";s:5:\"800px\";s:17:\"view_results_link\";s:2:\"no\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:16:\"view_total_votes\";s:2:\"no\";s:18:\"view_total_answers\";s:3:\"yes\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:24:\"vote_permisions_facebook\";s:2:\"no\";s:22:\"vote_permisions_google\";s:2:\"no\";s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";s:2:\"30\";s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";s:1:\"1\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:19:\"redirect_after_vote\";s:2:\"no\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:13:\"poll_page_url\";b:0;s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:2:\"no\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";s:2:\"10\";s:16:\"bar_border_color\";s:6:\"EDB918\";s:15:\"show_results_in\";s:3:\"bar\";s:16:\"bar_border_width\";s:1:\"1\";s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";s:4:\"9999\";s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:8:\"template\";s:1:\"4\";s:15:\"widget_template\";s:1:\"4\";s:17:\"vote_button_label\";s:4:\"SEND\";s:25:\"vote_facebook_integration\";s:2:\"on\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:7:\"Sept 25\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";}'),(68,68,'options','a:73:{s:18:\"poll_archive_order\";i:7;s:15:\"poll_start_date\";s:19:\"16-09-2015 16:25:46\";s:13:\"poll_end_date\";s:19:\"01-01-2038 23:59:59\";s:12:\"view_results\";a:3:{i:0;s:6:\"before\";i:1;s:5:\"after\";i:2;s:19:\"after-poll-end-date\";}s:23:\"view_results_start_date\";s:19:\"1970-01-01 00:00:00\";s:24:\"view_results_permissions\";a:1:{i:0;s:5:\"guest\";}s:17:\"view_results_type\";s:12:\"votes-number\";s:19:\"answer_result_label\";s:65:\"- %POLL-ANSWER-RESULT-PERCENTAGES% ( %POLL-ANSWER-RESULT-VOTES% )\";s:14:\"template_width\";s:5:\"800px\";s:21:\"widget_template_width\";s:5:\"800px\";s:17:\"view_results_link\";s:2:\"no\";s:22:\"view_back_to_vote_link\";s:3:\"yes\";s:16:\"view_total_votes\";s:2:\"no\";s:18:\"view_total_answers\";s:3:\"yes\";s:15:\"vote_permisions\";a:2:{i:0;s:5:\"guest\";i:1;s:10:\"registered\";}s:24:\"vote_permisions_facebook\";s:2:\"no\";s:22:\"vote_permisions_google\";s:2:\"no\";s:25:\"vote_permisions_wordpress\";s:2:\"no\";s:25:\"vote_permisions_anonymous\";s:3:\"yes\";s:15:\"blocking_voters\";a:1:{i:0;s:10:\"dont-block\";}s:30:\"blocking_voters_interval_value\";s:2:\"30\";s:29:\"blocking_voters_interval_unit\";s:4:\"days\";s:30:\"limit_number_of_votes_per_user\";s:3:\"yes\";s:24:\"number_of_votes_per_user\";s:1:\"1\";s:25:\"use_default_loading_image\";s:3:\"yes\";s:19:\"redirect_after_vote\";s:2:\"no\";s:22:\"view_poll_archive_link\";s:2:\"no\";s:23:\"auto_generate_poll_page\";s:2:\"no\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";s:13:\"poll_page_url\";b:0;s:11:\"use_captcha\";s:2:\"no\";s:24:\"send_email_notifications\";s:3:\"yes\";s:19:\"allow_other_answers\";s:3:\"yes\";s:19:\"other_answers_label\";s:0:\"\";s:36:\"add_other_answers_to_default_answers\";s:2:\"no\";s:28:\"display_other_answers_values\";s:3:\"yes\";s:22:\"allow_multiple_answers\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"38\";s:33:\"allow_multiple_answers_min_number\";i:1;s:15:\"display_answers\";s:8:\"vertical\";s:30:\"display_answers_tabulated_cols\";i:1;s:15:\"sorting_results\";s:12:\"alphabetical\";s:25:\"sorting_results_direction\";s:3:\"asc\";s:15:\"display_results\";s:8:\"vertical\";s:30:\"display_results_tabulated_cols\";i:1;s:14:\"bar_background\";s:6:\"FBD55E\";s:10:\"bar_height\";s:2:\"10\";s:16:\"bar_border_color\";s:6:\"EDB918\";s:15:\"show_results_in\";s:3:\"bar\";s:16:\"bar_border_width\";s:1:\"1\";s:16:\"bar_border_style\";s:5:\"solid\";s:21:\"sorting_archive_polls\";s:5:\"votes\";s:26:\"sorting_archive_polls_rule\";s:3:\"asc\";s:20:\"show_poll_in_archive\";s:3:\"yes\";s:41:\"singular_answer_result_votes_number_label\";s:9:\"Attending\";s:39:\"plural_answer_result_votes_number_label\";s:9:\"Attending\";s:25:\"schedule_reset_poll_stats\";s:2:\"no\";s:24:\"schedule_reset_poll_date\";s:19:\"2015-04-14 14:36:31\";s:35:\"schedule_reset_poll_recurring_value\";s:4:\"9999\";s:34:\"schedule_reset_poll_recurring_unit\";s:3:\"day\";s:32:\"use_the_same_template_for_widget\";s:3:\"yes\";s:8:\"template\";s:2:\"10\";s:15:\"widget_template\";s:2:\"10\";s:17:\"vote_button_label\";s:4:\"SEND\";s:25:\"vote_facebook_integration\";s:2:\"on\";s:31:\"vote_permisions_wordpress_label\";s:22:\"Vote as Wordpress User\";s:31:\"vote_permisions_anonymous_label\";s:22:\"Vote as Anonymous User\";s:23:\"redirect_after_vote_url\";s:0:\"\";s:29:\"email_notifications_from_name\";s:8:\"Yop Poll\";s:30:\"email_notifications_from_email\";s:18:\"yop-poll@sofits.ca\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:8:\"March 11\";s:24:\"email_notifications_body\";s:1311:\"<p>A new vote was registered on %VOTE_DATE% for %POLL_NAME%</p>\r\n\r\n                                                            <p>Vote Details:</p>\r\n\r\n                                                            [QUESTION]\r\n\r\n                                                            <p><b>Question:</b> %QUESTION_TEXT%</p>\r\n\r\n                                                            <p><b>Answers:</b> <br />\r\n\r\n                                                            [ANSWERS]\r\n\r\n                                                            %ANSWER_VALUE%\r\n\r\n                                                            [/ANSWERS]\r\n\r\n                                                            </p>\r\n\r\n                                                            <p><b>Custom Fields:</b> <br />\r\n\r\n                                                            [CUSTOM_FIELDS]\r\n\r\n                                                            %CUSTOM_FIELD_NAME% - %CUSTOM_FIELD_VALUE%\r\n\r\n                                                            [/CUSTOM_FIELDS]\r\n\r\n                                                            </p>\r\n\r\n                                                            [/QUESTION]\r\n\r\n                                                            <p><b>Vote ID:</b> <br />%VOTE_ID%</p>\";}');
/*!40000 ALTER TABLE `wp_yop2_pollmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop2_polls`
--

DROP TABLE IF EXISTS `wp_yop2_polls`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop2_polls` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `poll_title` text NOT NULL,
  `poll_name` varchar(255) NOT NULL,
  `poll_author` bigint(20) NOT NULL DEFAULT 0,
  `poll_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `poll_status` varchar(20) NOT NULL,
  `poll_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `poll_type` varchar(20) NOT NULL,
  `poll_start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `poll_end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `poll_total_votes` int(11) NOT NULL,
  `processed` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop2_polls`
--

LOCK TABLES `wp_yop2_polls` WRITE;
/*!40000 ALTER TABLE `wp_yop2_polls` DISABLE KEYS */;
INSERT INTO `wp_yop2_polls` VALUES (60,'FUELING: This Saturday morning','fueling-this-saturday-morning',7,'2016-02-09 16:16:52','active','2016-02-09 16:23:15','poll','2016-02-09 16:17:52','2038-01-01 23:59:59',8,1),(61,'FUELING: Friday midday','fueling-friday-midday',7,'2016-02-09 16:20:40','active','2016-02-09 16:29:09','poll','2016-02-09 16:21:32','2038-01-01 23:59:59',16,1),(64,'RELAXED SKI FRIDAY FEB 26','relaxed-ski-friday-feb-26',7,'2016-02-24 08:59:47','active','2016-02-24 08:59:47','poll','2016-02-24 09:01:59','2038-01-01 23:59:59',14,1),(65,'AWAY FEBRUARY 26','away-february-26',7,'2016-02-24 09:01:14','active','2016-02-24 09:01:14','poll','2016-02-24 09:03:24','2038-01-01 23:59:59',9,1),(66,'CLASSIC SKI AT P7','classic-ski-at-p7',7,'2016-03-02 10:27:54','active','2016-03-02 10:27:54','poll','2016-03-02 10:30:29','2038-01-01 23:59:59',12,1),(67,'SKATE SKI at P6','skate-ski-at-p6',7,'2016-03-02 10:29:42','active','2016-03-02 10:33:25','poll','2016-03-02 10:32:28','2038-01-01 23:59:59',7,1),(68,'March 11 at Lac Philippe, P 19','march-11-at-lac-philippe-p-19',7,'2016-03-08 15:12:39','active','2016-03-08 15:12:39','poll','2016-03-08 15:12:43','2038-01-01 23:59:59',16,1);
/*!40000 ALTER TABLE `wp_yop2_polls` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop_poll_answermeta`
--

DROP TABLE IF EXISTS `wp_yop_poll_answermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop_poll_answermeta` (
  `meta_id` int(11) NOT NULL AUTO_INCREMENT,
  `yop_poll_answer_id` int(11) NOT NULL,
  `meta_key` varchar(255) NOT NULL,
  `meta_value` longtext NOT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `yop_poll_answer_id` (`yop_poll_answer_id`)
) ENGINE=MyISAM AUTO_INCREMENT=745 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop_poll_answermeta`
--

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

--
-- Table structure for table `wp_yop_poll_answers`
--

DROP TABLE IF EXISTS `wp_yop_poll_answers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop_poll_answers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `poll_id` int(11) NOT NULL,
  `answer` varchar(255) NOT NULL,
  `type` enum('default','other') NOT NULL DEFAULT 'default',
  `votes` int(11) NOT NULL,
  `status` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `poll_id` (`poll_id`)
) ENGINE=MyISAM AUTO_INCREMENT=809 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop_poll_answers`
--

LOCK TABLES `wp_yop_poll_answers` WRITE;
/*!40000 ALTER TABLE `wp_yop_poll_answers` DISABLE KEYS */;
INSERT INTO `wp_yop_poll_answers` VALUES (777,58,'','other',7,'active'),(778,59,'','other',13,'active'),(785,66,'','other',17,'active'),(801,82,'','other',10,'active'),(802,83,'','other',24,'active'),(799,80,'','other',28,'active'),(800,81,'','other',2,'active'),(803,84,'','other',9,'active'),(804,85,'','other',15,'active'),(805,86,'','other',6,'active'),(806,87,'','other',15,'active'),(807,88,'','other',17,'active'),(808,89,'','other',0,'active');
/*!40000 ALTER TABLE `wp_yop_poll_answers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop_poll_bans`
--

DROP TABLE IF EXISTS `wp_yop_poll_bans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop_poll_bans` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `poll_id` int(11) NOT NULL,
  `type` varchar(255) NOT NULL,
  `value` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `poll_id` (`poll_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop_poll_bans`
--

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

--
-- Table structure for table `wp_yop_poll_custom_fields`
--

DROP TABLE IF EXISTS `wp_yop_poll_custom_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop_poll_custom_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `poll_id` int(11) NOT NULL,
  `custom_field` varchar(255) NOT NULL,
  `required` enum('yes','no') NOT NULL DEFAULT 'no',
  `status` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `poll_id` (`poll_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop_poll_custom_fields`
--

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

--
-- Table structure for table `wp_yop_poll_facebook_users`
--

DROP TABLE IF EXISTS `wp_yop_poll_facebook_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop_poll_facebook_users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `fb_id` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `first_name` varchar(255) NOT NULL,
  `last_name` varchar(255) NOT NULL,
  `username` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `gender` varchar(255) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop_poll_facebook_users`
--

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

--
-- Table structure for table `wp_yop_poll_logs`
--

DROP TABLE IF EXISTS `wp_yop_poll_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop_poll_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `poll_id` int(11) NOT NULL,
  `vote_id` varchar(255) NOT NULL,
  `answer_id` int(11) NOT NULL,
  `ip` varchar(100) NOT NULL,
  `user_id` int(11) NOT NULL,
  `user_type` enum('facebook','wordpress','anonymous','default') NOT NULL DEFAULT 'default',
  `https_referer` varchar(255) NOT NULL,
  `tr_id` varchar(255) NOT NULL,
  `other_answer_value` text NOT NULL,
  `host` varchar(200) NOT NULL,
  `vote_date` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `poll_id` (`poll_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1208 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop_poll_logs`
--

LOCK TABLES `wp_yop_poll_logs` WRITE;
/*!40000 ALTER TABLE `wp_yop_poll_logs` DISABLE KEYS */;
INSERT INTO `wp_yop_poll_logs` VALUES (731,58,'vote_id_544d4ea742100',777,'173.206.160.237',1,'default','https://sofits.ca/','','Jo-Ann H. ','dsl-173-206-160-237.tor.primus.ca','2014-10-26 15:42:31'),(732,59,'vote_id_544d4eae67061',778,'173.206.160.237',1,'default','https://sofits.ca/','','Jo-Ann H.','dsl-173-206-160-237.tor.primus.ca','2014-10-26 15:42:38'),(737,58,'vote_id_544d7b111f4c1',777,'69.157.113.151',0,'default','https://sofits.ca/','','Ila','69.157.113.151','2014-10-26 18:52:01'),(738,59,'vote_id_544d7b16ee7ee',778,'69.157.113.151',0,'default','https://sofits.ca/','','Ila','69.157.113.151','2014-10-26 18:52:06'),(741,58,'vote_id_544d7e540dc95',777,'99.240.147.167',0,'default','https://sofits.ca/','','Annemarieke','CPEbcee7b7df3f0-CMbcc8100d88b5.cpe.net.cable.rogers.com','2014-10-26 19:05:56'),(742,59,'vote_id_544d7e5f35f1e',778,'99.240.147.167',0,'default','https://sofits.ca/','','Annemarieke','CPEbcee7b7df3f0-CMbcc8100d88b5.cpe.net.cable.rogers.com','2014-10-26 19:06:07'),(747,59,'vote_id_544da0abb97b6',778,'184.175.5.48',0,'default','https://sofits.ca/','','Anne','184-175-5-48.dsl.teksavvy.com','2014-10-26 21:32:27'),(750,58,'vote_id_544e2a7f67d52',777,'184.148.18.7',0,'default','https://sofits.ca/','','Penny','bas5-ottawa10-3096711687.dsl.bell.ca','2014-10-27 07:20:31'),(751,59,'vote_id_544e2a8a17e6a',778,'184.148.18.7',0,'default','https://sofits.ca/','','Penny','bas5-ottawa10-3096711687.dsl.bell.ca','2014-10-27 07:20:42'),(761,59,'vote_id_5451339306bfa',778,'173.206.129.45',0,'default','https://sofits.ca/','','Ingrid T.','dsl-173-206-129-45.tor.primus.ca','2014-10-29 14:36:03'),(763,58,'vote_id_54513dd082e9f',777,'99.240.231.193',0,'default','https://sofits.ca/','','Cary','CPEbc14012f1d43-CMbc14012f1d40.cpe.net.cable.rogers.com','2014-10-29 15:19:44'),(765,58,'vote_id_5451403c5cfba',777,'99.246.66.128',0,'default','https://sofits.ca/','','Mary Lou','CPE185933f805f1-CM185933f805ee.cpe.net.cable.rogers.com','2014-10-29 15:30:04'),(766,59,'vote_id_5451406525471',778,'99.246.66.128',0,'default','https://sofits.ca/','','Mary Lou','CPE185933f805f1-CM185933f805ee.cpe.net.cable.rogers.com','2014-10-29 15:30:45'),(774,59,'vote_id_545425dceb820',778,'99.240.227.203',0,'default','https://sofits.ca/','','Ingrid Taylor','CPE78cd8ece2f50-CM78cd8ece2f4d.cpe.net.cable.rogers.com','2014-10-31 20:14:21'),(775,59,'vote_id_5454369c60d6f',778,'99.240.146.197',0,'default','https://sofits.ca/','','Maggie K.','CPEbc1401214583-CMbc1401214580.cpe.net.cable.rogers.com','2014-10-31 21:25:48'),(777,58,'vote_id_5454eee941bb0',777,'99.241.1.132',0,'default','https://sofits.ca/','','Susan O','CPE00131099c59e-CM7cb21bcbb6c3.cpe.net.cable.rogers.com','2014-11-01 10:32:09'),(778,59,'vote_id_5454eeff519be',778,'99.241.1.132',0,'default','https://sofits.ca/','','Susan o','CPE00131099c59e-CM7cb21bcbb6c3.cpe.net.cable.rogers.com','2014-11-01 10:32:31'),(780,59,'vote_id_5455430d129be',778,'99.240.150.246',0,'default','https://sofits.ca/','','Joanne Beveridge','CPEc8d3a35c3b8c-CM000f212046f4.cpe.net.cable.rogers.com','2014-11-01 16:31:09'),(785,59,'vote_id_54562d692b6e7',778,'184.144.138.68',0,'default','https://sofits.ca/','','Yvonne','bas5-hull20-3096480324.dsl.bell.ca','2014-11-02 08:11:05'),(802,59,'vote_id_545ac45413a3d',778,'99.246.66.46',0,'default','https://sofits.ca/','','Hi Bonnie, I am interested but I have been holding back because there is a chance I will be travelling then. Can you put my name on a wait/ possible list? If in town and there is no room, I will definitely join you for the epic ski. Barbara','CPE788df7b27c93-CM788df7b27c90.cpe.net.cable.rogers.com','2014-11-05 19:44:04'),(815,66,'vote_id_5460be7ad8088',785,'184.144.138.68',0,'default','https://sofits.ca/','','Yvonne, 51km, Monday','bas5-hull20-3096480324.dsl.bell.ca','2014-11-10 08:32:48'),(813,66,'vote_id_546032d0f0006',785,'173.206.144.232',1,'default','https://sofits.ca/','','Jo-Ann, 16 K, either Monday or Tuesday am.','dsl-173-206-144-232.tor.primus.ca','2014-11-09 22:36:48'),(822,66,'vote_id_546130bb2c1cf',785,'174.92.91.160',0,'default','https://sofits.ca/','','Rosy - CSM (really far) Tuesday am','bas1-ottawa09-2925288352.dsl.bell.ca','2014-11-10 16:40:11'),(829,66,'vote_id_54627437c2169',785,'99.241.1.132',0,'default','https://sofits.ca/','','Susan not sure distance either day','CPE00131099c59e-CM7cb21bcbb6c3.cpe.net.cable.rogers.com','2014-11-11 15:40:23'),(833,66,'vote_id_5462de9a6b4ef',785,'99.246.66.128',0,'default','https://sofits.ca/','','Mary Lou 16 Km Tuesday','CPE185933f805f1-CM185933f805ee.cpe.net.cable.rogers.com','2014-11-11 23:14:18'),(836,66,'vote_id_5463757c01844',785,'99.246.66.46',0,'default','https://sofits.ca/','','Barbara, 16K, Monday','CPE788df7b27c93-CM788df7b27c90.cpe.net.cable.rogers.com','2014-11-12 09:58:04'),(838,66,'vote_id_5463d10f07a30',785,'99.240.147.167',0,'default','https://sofits.ca/','','annemarieke','CPEbcee7b7df3f0-CMbcc8100d88b5.cpe.net.cable.rogers.com','2014-11-12 16:28:47'),(840,66,'vote_id_5463d3278fb64',785,'64.229.223.94',0,'default','https://sofits.ca/','','Meryl 16 or 20 km either day','64.229.223.94','2014-11-12 16:37:43'),(844,66,'vote_id_54642096c662f',785,'184.151.246.127',0,'default','https://sofits.ca/','','Linda Lafrance Mon am','184.151.246.127','2014-11-12 22:08:27'),(845,66,'vote_id_546420a821213',785,'184.151.246.127',0,'default','https://sofits.ca/','','Linda Lafrance Mon am','184.151.246.127','2014-11-12 22:08:44'),(846,66,'vote_id_546420b1e9c32',785,'184.151.246.127',0,'default','https://sofits.ca/','','Linda Lafrance Mon am','184.151.246.127','2014-11-12 22:08:46'),(847,66,'vote_id_546420d7d36ad',785,'184.151.246.127',0,'default','https://sofits.ca/','','Linda Lafrance 55 km Monday','184.151.246.127','2014-11-12 22:09:26'),(848,66,'vote_id_546420e1ef2ec',785,'184.151.246.127',0,'default','https://sofits.ca/','','Linda Lafrance 55 km Monday','184.151.246.127','2014-11-12 22:09:36'),(849,66,'vote_id_546420ec21ca8',785,'184.151.246.127',0,'default','https://sofits.ca/','','Linda Lafrance 55 km Monday','184.151.246.127','2014-11-12 22:09:44'),(855,66,'vote_id_54642bec9bcc4',785,'99.246.42.219',0,'default','https://sofits.ca/','','pat','CPE001e68dbfc17-CM0c473dc4d340.cpe.net.cable.rogers.com','2014-11-12 22:56:28'),(859,66,'vote_id_546601f49c6b3',785,'184.175.5.48',0,'default','https://sofits.ca/','','anne 16','184-175-5-48.dsl.teksavvy.com','2014-11-14 08:21:56'),(860,66,'vote_id_546634bc3e774',785,'76.10.172.20',0,'default','https://sofits.ca/','','Jennifer Wilson - not sure about the distance but definitely want to train for long outings - at the very least.','76-10-172-20.dsl.teksavvy.com','2014-11-14 11:58:36'),(1142,82,'vote_id_54c25ff9c3db3',801,'184.175.18.139',0,'default','https://sofits.ca/friday-training/','','Jennifer Wilson','184-175-18-139.dsl.teksavvy.com','2015-01-23 09:51:37'),(1143,82,'vote_id_54c2699d958d8',801,'69.156.1.2',0,'default','https://sofits.ca/friday-training/','','Shelley','bas2-ottawa23-1167851778.dsl.bell.ca','2015-01-23 10:32:45'),(1144,82,'vote_id_54c272de8f56f',801,'104.222.121.50',0,'default','https://sofits.ca/friday-training/','','anne','104-222-121-50.cpe.teksavvy.com','2015-01-23 11:12:14'),(1145,82,'vote_id_54c2a28ea9aad',801,'50.66.94.54',0,'default','https://sofits.ca/friday-training/','','Janey','S01060017c5a27339.ok.shawcable.net','2015-01-23 14:35:42'),(1139,82,'vote_id_54c179cec1438',801,'184.145.139.119',0,'default','https://sofits.ca/friday-training/','','Liz R','OTWAON234VW-LP130-01-3096546167.dsl.bell.ca','2015-01-22 17:29:34'),(1140,83,'vote_id_54c18ed821107',802,'24.114.99.19',0,'default','https://sofits.ca/friday-training/','','Susan o','24.114.99.19','2015-01-22 18:59:20'),(1141,83,'vote_id_54c248746b8fd',802,'184.145.142.37',0,'default','https://sofits.ca/friday-training/','','Pauline','OTWAON234VW-LP140-02-3096546853.dsl.bell.ca','2015-01-23 08:11:16'),(1137,83,'vote_id_54c166822a326',802,'173.206.137.55',0,'default','https://sofits.ca/friday-training/','','S Riley','dsl-173-206-137-55.tor.primus.ca','2015-01-22 16:07:14'),(1138,83,'vote_id_54c16ac26528b',802,'99.246.118.96',0,'default','https://sofits.ca/friday-training/','','Sandra ','CPE7cb21b15e675-CM7cb21b15e672.cpe.net.cable.rogers.com','2015-01-22 16:25:22'),(1136,83,'vote_id_54c14e433f145',802,'69.158.169.132',0,'default','https://sofits.ca/friday-training/','','sharon','69.158.169.132','2015-01-22 14:23:47'),(1134,83,'vote_id_54c13e22ae90d',802,'99.240.147.167',0,'default','https://sofits.ca/friday-training/','','Annemarieke','CPEbcee7b7df3f0-CM84948c833730.cpe.net.cable.rogers.com','2015-01-22 13:14:58'),(1135,83,'vote_id_54c13e43562d2',802,'199.7.157.116',0,'default','https://sofits.ca/friday-training/','','maggie','199-7-157-116.eng.wind.ca','2015-01-22 13:15:31'),(1130,83,'vote_id_54c1024a167fb',802,'70.53.60.175',0,'default','https://sofits.ca/friday-training/','','Margaret McLaren','OTWAON0916W-LP140-01-1177894063.dsl.bell.ca','2015-01-22 08:59:38'),(1131,83,'vote_id_54c11f795480c',802,'64.26.157.122',0,'default','https://sofits.ca/friday-training/','','Bonnie','64.26.157.122','2015-01-22 11:04:09'),(1132,83,'vote_id_54c12050d5b95',802,'99.240.231.193',0,'default','https://sofits.ca/friday-training/','','Cary','CPEbc14012f1d43-CMbc14012f1d40.cpe.net.cable.rogers.com','2015-01-22 11:07:44'),(1133,83,'vote_id_54c121a9eb500',802,'64.56.228.129',0,'default','https://sofits.ca/friday-training/','','Julie McInnes','dsl-64-56-228-129.tor.primus.ca','2015-01-22 11:13:30'),(1129,82,'vote_id_54c0ff080cc21',801,'64.26.157.122',0,'default','https://sofits.ca/friday-training/','','Bonnie ','64.26.157.122','2015-01-22 08:45:44'),(1127,82,'vote_id_54c0ba61747b8',801,'206.47.116.177',0,'default','https://sofits.ca/friday-training/','','Fay','206-47-116-177.dsl.ncf.ca','2015-01-22 03:52:49'),(1128,83,'vote_id_54c0f60f94c37',802,'184.144.137.74',0,'default','https://sofits.ca/friday-training/','','Yvonne','bas5-hull20-3096480074.dsl.bell.ca','2015-01-22 08:07:27'),(1126,83,'vote_id_54c07ef87aa92',802,'99.240.141.31',0,'default','https://sofits.ca/friday-training/','','Joanne B','CPE84948c8bcca1-CM84948c8bcca0.cpe.net.cable.rogers.com','2015-01-21 23:39:20'),(1125,83,'vote_id_54c057cb25a46',802,'99.246.42.219',0,'default','https://sofits.ca/friday-training/','','pat','CPE001e68dbfc17-CM0c473dc4d340.cpe.net.cable.rogers.com','2015-01-21 20:52:11'),(1124,83,'vote_id_54c04aeb341a1',802,'99.241.135.224',0,'default','https://sofits.ca/friday-training/','','Carol will be there not away','CPE0c473d008201-CM0c473d008200.cpe.net.cable.rogers.com','2015-01-21 19:57:15'),(1118,83,'vote_id_54bfa132a2260',802,'198.103.184.76',0,'default','https://sofits.ca/friday-training/','','Marie-France=green ','proxy-w.ccra-adrc.gc.ca','2015-01-21 07:53:08'),(1119,83,'vote_id_54bfce5a963f8',802,'99.240.235.17',0,'default','https://sofits.ca/friday-training/','','Liz Stanich','CPEbc1401e991b3-CMbc1401e991b0.cpe.net.cable.rogers.com','2015-01-21 11:05:46'),(1120,82,'vote_id_54c026565964b',801,'70.31.28.120',0,'default','https://sofits.ca/friday-training/','','Ila','OTWAON234VW-LP140-05-1176444024.dsl.bell.ca','2015-01-21 17:21:10'),(1121,83,'vote_id_54c0292d25508',802,'69.157.22.213',0,'default','https://sofits.ca/friday-training/','','kathy','69.157.22.213','2015-01-21 17:33:17'),(1122,83,'vote_id_54c0295878d0d',802,'69.157.22.213',0,'default','https://sofits.ca/friday-training/','','Sue F','69.157.22.213','2015-01-21 17:34:00'),(1123,82,'vote_id_54c04abdab948',801,'99.241.135.224',0,'default','https://sofits.ca/friday-training/','','Carol','CPE0c473d008201-CM0c473d008200.cpe.net.cable.rogers.com','2015-01-21 19:56:29'),(1113,83,'vote_id_54be6319812ee',802,'174.93.58.156',0,'default','https://sofits.ca/friday-training/','','Meryl','OTWAON1140W-LP130-01-2925345436.dsl.bell.ca','2015-01-20 09:15:53'),(1114,83,'vote_id_54be72e09bc26',802,'99.241.171.139',0,'default','https://sofits.ca/friday-training/','','Elaine','CPE68b6fcce4203-CM68b6fcce4200.cpe.net.cable.rogers.com','2015-01-20 10:23:12'),(1115,83,'vote_id_54bebdbc27a5b',802,'174.92.95.176',0,'default','https://sofits.ca/friday-training/','','Rosy','bas1-ottawa09-2925289392.dsl.bell.ca','2015-01-20 15:42:36'),(1116,82,'vote_id_54bec0bdb8796',801,'70.53.124.64',0,'default','https://sofits.ca/friday-training/','','Penny','bas5-ottawa10-1177910336.dsl.bell.ca','2015-01-20 15:55:25'),(1117,83,'vote_id_54bf102c2acbe',802,'173.206.99.161',0,'default','https://sofits.ca/friday-training/','','Janice Moe','dsl-173-206-99-161.tor.primus.ca','2015-01-20 21:34:20'),(1112,83,'vote_id_54be606e0a060',802,'173.206.8.157',1,'default','https://sofits.ca/friday-training/','','Jo-Ann','dsl-173-206-8-157.tor.primus.ca','2015-01-20 09:04:30'),(1082,80,'vote_id_54b493331e4bc',799,'173.206.8.157',1,'default','https://sofits.ca/friday-training/','','Jo-Ann','dsl-173-206-8-157.tor.primus.ca','2015-01-12 22:38:27'),(1083,80,'vote_id_54b50971ab58a',799,'207.112.47.159',0,'default','https://sofits.ca/friday-training/','','Julie McInnes','dsl-207-112-47-159.tor.primus.ca','2015-01-13 07:02:57'),(1084,80,'vote_id_54b50983902cb',799,'207.112.47.159',0,'default','https://sofits.ca/friday-training/','','Julie McInnes','dsl-207-112-47-159.tor.primus.ca','2015-01-13 07:03:15'),(1085,80,'vote_id_54b517a90a17e',799,'99.240.146.197',0,'default','https://sofits.ca/friday-training/','','Maggie','CPEbc1401214583-CMbc1401214580.cpe.net.cable.rogers.com','2015-01-13 08:03:37'),(1086,80,'vote_id_54b51af1dc132',799,'70.53.124.64',0,'default','https://sofits.ca/friday-training/','','Penny','bas5-ottawa10-1177910336.dsl.bell.ca','2015-01-13 08:17:37'),(1087,80,'vote_id_54b51d3a0e999',799,'173.206.0.220',0,'default','https://sofits.ca/friday-training/','','Janice Moe','dsl-173-206-0-220.tor.primus.ca','2015-01-13 08:27:22'),(1088,80,'vote_id_54b5214e7dd30',799,'198.103.184.76',0,'default','https://sofits.ca/friday-training/','','Marie-France Jetté','proxy-w.ccra-adrc.gc.ca','2015-01-13 08:44:48'),(1089,80,'vote_id_54b523e6e8e6e',799,'70.31.28.120',0,'default','https://sofits.ca/friday-training/','','Ila','OTWAON234VW-LP140-05-1176444024.dsl.bell.ca','2015-01-13 08:55:50'),(1090,80,'vote_id_54b52654a13d1',799,'64.26.157.122',0,'default','https://sofits.ca/friday-training/','','Bonnie','64.26.157.122','2015-01-13 09:06:12'),(1091,80,'vote_id_54b539c59068b',799,'174.93.58.156',0,'default','https://sofits.ca/friday-training/','','Meryl','OTWAON1140W-LP130-01-2925345436.dsl.bell.ca','2015-01-13 10:29:09'),(1092,80,'vote_id_54b548072daed',799,'173.206.137.4',0,'default','https://sofits.ca/friday-training/','','S Riley','dsl-173-206-137-4.tor.primus.ca','2015-01-13 11:29:59'),(1093,80,'vote_id_54b54872193f9',799,'99.241.171.139',0,'default','https://sofits.ca/friday-training/','','Elaine-wild guess 40 min?','CPE68b6fcce4203-CM68b6fcce4200.cpe.net.cable.rogers.com','2015-01-13 11:31:46'),(1094,80,'vote_id_54b55b90f0a06',799,'69.158.173.105',0,'default','https://sofits.ca/friday-training/','','Rosy - 30 min','69.158.173.105','2015-01-13 12:53:21'),(1095,80,'vote_id_54b563065eede',799,'99.240.147.167',0,'default','https://sofits.ca/friday-training/','','Annemarieke','CPEbcee7b7df3f0-CM84948c833730.cpe.net.cable.rogers.com','2015-01-13 13:25:10'),(1096,81,'vote_id_54b57b2ff3b4c',800,'69.158.169.132',0,'default','https://sofits.ca/friday-training/','','SHARON','69.158.169.132','2015-01-13 15:08:16'),(1097,80,'vote_id_54b587d1063f1',799,'69.156.1.2',0,'default','https://sofits.ca/friday-training/','','Shelley','bas2-ottawa23-1167851778.dsl.bell.ca','2015-01-13 16:02:09'),(1098,80,'vote_id_54b5b8a7a5e66',799,'75.119.224.240',0,'default','https://sofits.ca/friday-training/','','Anne V','75-119-224-240.dsl.teksavvy.com','2015-01-13 19:30:31'),(1099,81,'vote_id_54b66399074d6',800,'184.144.137.74',0,'default','https://sofits.ca/friday-training/','','Yvonne','bas5-hull20-3096480074.dsl.bell.ca','2015-01-14 07:39:53'),(1100,80,'vote_id_54b67243bfeea',799,'99.246.66.46',0,'default','https://sofits.ca/friday-training/','','Barbara','CPE788df7b27c93-CM788df7b27c90.cpe.net.cable.rogers.com','2015-01-14 08:42:29'),(1101,80,'vote_id_54b6c59b01550',799,'99.246.118.96',0,'default','https://sofits.ca/friday-training/','','Sandra','CPE7cb21b15e675-CM7cb21b15e672.cpe.net.cable.rogers.com','2015-01-14 14:38:03'),(1102,80,'vote_id_54b71370aee96',799,'99.241.135.224',0,'default','https://sofits.ca/friday-training/','','Carol','CPE0c473d008201-CM0c473d008200.cpe.net.cable.rogers.com','2015-01-14 20:10:08'),(1103,80,'vote_id_54b7329758ebe',799,'99.240.141.31',0,'default','https://sofits.ca/friday-training/','','Joanne Beveridge','CPE84948c8bcca1-CM84948c8bcca0.cpe.net.cable.rogers.com','2015-01-14 22:23:03'),(1104,80,'vote_id_54b7b67c3a58e',799,'99.240.235.17',0,'default','https://sofits.ca/friday-training/','','Liz Stanich','CPEbc1401e991b3-CMbc1401e991b0.cpe.net.cable.rogers.com','2015-01-15 07:45:48'),(1105,80,'vote_id_54b7d4c216051',799,'198.103.184.76',0,'default','https://sofits.ca/friday-training/','','remove Marie-France Jetté','proxy-w.ccra-adrc.gc.ca','2015-01-15 09:55:00'),(1106,80,'vote_id_54b7de7b52e7d',799,'99.246.66.128',0,'default','https://sofits.ca/friday-training/','','Mary Lpu','CPE185933f805f1-CM185933f805ee.cpe.net.cable.rogers.com','2015-01-15 10:36:27'),(1107,80,'vote_id_54b7e56fbcdbe',799,'184.145.139.119',0,'default','https://sofits.ca/friday-training/','','Liz Ruddick','OTWAON234VW-LP130-01-3096546167.dsl.bell.ca','2015-01-15 11:06:07'),(1108,80,'vote_id_54b7eefba9826',799,'99.240.231.193',0,'default','https://sofits.ca/friday-training/','','Cary','CPEbc14012f1d43-CMbc14012f1d40.cpe.net.cable.rogers.com','2015-01-15 11:46:51'),(1109,80,'vote_id_54b7fae465f58',799,'99.246.42.219',0,'default','https://sofits.ca/friday-training/','','pat','CPE001e68dbfc17-CM0c473dc4d340.cpe.net.cable.rogers.com','2015-01-15 12:37:40'),(1110,80,'vote_id_54b83a7d649bd',799,'99.241.1.132',0,'default','https://sofits.ca/friday-training/','','Susan O','CPE00131099c59e-CM7cb21bcbb6c3.cpe.net.cable.rogers.com','2015-01-15 17:09:01'),(1111,80,'vote_id_54b83c84d5b84',799,'70.53.60.175',0,'default','https://sofits.ca/friday-training/','','Margaret McLaren 46mins','OTWAON0916W-LP140-01-1177894063.dsl.bell.ca','2015-01-15 17:17:40'),(1146,85,'vote_id_54c5a088b02e3',804,'99.240.147.167',0,'default','https://sofits.ca/friday-training/','','Annemarieke','CPEbcee7b7df3f0-CM84948c833730.cpe.net.cable.rogers.com','2015-01-25 21:03:52'),(1147,85,'vote_id_54c5a0fd94b44',804,'70.26.28.57',0,'default','https://sofits.ca/friday-training/','','Rosy','bas1-ottawa09-1176116281.dsl.bell.ca','2015-01-25 21:05:49'),(1148,84,'vote_id_54c5b67b3bb15',803,'99.240.231.193',0,'default','https://sofits.ca/friday-training/','','Cary','CPEbc14012f1d43-CMbc14012f1d40.cpe.net.cable.rogers.com','2015-01-25 22:37:31'),(1149,84,'vote_id_54c631e4445d1',803,'70.54.49.2',0,'default','https://sofits.ca/friday-training/','','Margaret McLaren','OTWAON0916W-LP140-03-1177956610.dsl.bell.ca','2015-01-26 07:24:04'),(1150,86,'vote_id_54c632c99655d',805,'99.241.171.139',0,'default','https://sofits.ca/friday-training/','','Elaine','CPE68b6fcce4203-CM68b6fcce4200.cpe.net.cable.rogers.com','2015-01-26 07:27:53'),(1151,85,'vote_id_54c646cfb5f8d',804,'99.246.66.46',0,'default','https://sofits.ca/friday-training/','','barbara - joining blue this time - would like to get in some distance pre-loppet','CPE788df7b27c93-CM788df7b27c90.cpe.net.cable.rogers.com','2015-01-26 08:53:19'),(1152,85,'vote_id_54c64bf0be0d2',804,'64.56.253.57',0,'default','https://sofits.ca/friday-training/','','Julie McInnes','dsl-64-56-253-57.tor.primus.ca','2015-01-26 09:15:12'),(1153,85,'vote_id_54c6555f45f94',804,'70.31.28.120',0,'default','https://sofits.ca/friday-training/','','Ila','OTWAON234VW-LP140-05-1176444024.dsl.bell.ca','2015-01-26 09:55:27'),(1154,85,'vote_id_54c6888c61e1e',804,'173.206.0.159',0,'default','https://sofits.ca/friday-training/','','Janice Moe','dsl-173-206-0-159.tor.primus.ca','2015-01-26 13:33:48'),(1155,84,'vote_id_54c6adebf338b',803,'198.103.184.76',0,'default','https://sofits.ca/friday-training/','','Marie-france=green ','proxy-w.ccra-adrc.gc.ca','2015-01-26 16:13:18'),(1156,86,'vote_id_54c785da51574',805,'99.246.118.96',0,'default','https://sofits.ca/friday-training/','','Sandra','CPE7cb21b15e675-CM7cb21b15e672.cpe.net.cable.rogers.com','2015-01-27 07:34:34'),(1157,85,'vote_id_54c7fbfc4a981',804,'64.26.157.122',0,'default','https://sofits.ca/friday-training/','','Yvonne','64.26.157.122','2015-01-27 15:58:36'),(1158,85,'vote_id_54c7fc0b9596d',804,'64.26.157.122',0,'default','https://sofits.ca/friday-training/','','Bonnie','64.26.157.122','2015-01-27 15:58:51'),(1159,85,'vote_id_54c7fc5c8b5af',804,'64.26.157.122',0,'default','https://sofits.ca/friday-training/','','Anne','64.26.157.122','2015-01-27 16:00:12'),(1160,85,'vote_id_54c81f84a439a',804,'99.241.135.224',0,'default','https://sofits.ca/friday-training/','','Carol','CPE0c473d008201-CM0c473d008200.cpe.net.cable.rogers.com','2015-01-27 18:30:12'),(1161,85,'vote_id_54c83ce5d2b10',804,'184.148.16.39',0,'default','https://sofits.ca/friday-training/','','Penny','bas5-ottawa10-3096711207.dsl.bell.ca','2015-01-27 20:35:33'),(1162,84,'vote_id_54c9008f084cc',803,'184.145.139.119',0,'default','https://sofits.ca/friday-training/','','Liz Ruddick','OTWAON234VW-LP130-01-3096546167.dsl.bell.ca','2015-01-28 10:30:23'),(1163,84,'vote_id_54c943c15cb49',803,'99.246.66.128',0,'default','https://sofits.ca/friday-training/','','Lou','CPE185933f805f1-CM185933f805ee.cpe.net.cable.rogers.com','2015-01-28 15:17:05'),(1164,84,'vote_id_54c9453cb3e3a',803,'104.222.121.50',0,'default','https://sofits.ca/friday-training/','','Anne','104-222-121-50.cpe.teksavvy.com','2015-01-28 15:23:24'),(1165,84,'vote_id_54c9592fe400f',803,'99.240.235.17',0,'default','https://sofits.ca/friday-training/','','Liz Stanich','CPEbc1401e991b3-CMbc1401e991b0.cpe.net.cable.rogers.com','2015-01-28 16:48:31'),(1166,84,'vote_id_54c9ab240f88a',803,'69.156.1.218',0,'default','https://sofits.ca/friday-training/','','Shelley douglas','bas2-ottawa23-1167851994.dsl.bell.ca','2015-01-28 22:38:12'),(1167,85,'vote_id_54ca37d75906f',804,'199.7.157.76',0,'default','https://sofits.ca/friday-training/','','Maggie','199-7-157-76.eng.wind.ca','2015-01-29 08:38:31'),(1168,85,'vote_id_54ca5729685b4',804,'184.175.18.139',0,'default','https://sofits.ca/friday-training/','','Jennifer Wilson (joining the Purple group for a ski)','184-175-18-139.dsl.teksavvy.com','2015-01-29 10:52:09'),(1169,86,'vote_id_54ca5737e763c',805,'174.92.93.226',0,'default','https://sofits.ca/friday-training/','','Rosy - probably away','bas1-ottawa09-2925288930.dsl.bell.ca','2015-01-29 10:52:23'),(1170,84,'vote_id_54ca60182b7e4',803,'173.206.137.186',0,'default','https://sofits.ca/friday-training/','','Susan R.','dsl-173-206-137-186.tor.primus.ca','2015-01-29 11:30:16'),(1171,85,'vote_id_54ca683f68269',804,'99.241.1.132',0,'default','https://sofits.ca/friday-training/','','Susan o','CPE00131099c59e-CM7cb21bcbb6c3.cpe.net.cable.rogers.com','2015-01-29 12:05:03'),(1172,86,'vote_id_54cab22b71115',805,'64.229.223.210',0,'default','https://sofits.ca/friday-training/','','Meryl','64.229.223.210','2015-01-29 17:20:27'),(1173,85,'vote_id_54cabcf5bdfe3',804,'174.92.91.157',0,'default','https://sofits.ca/friday-training/','','sharon','bas1-ottawa09-2925288349.dsl.bell.ca','2015-01-29 18:06:29'),(1174,86,'vote_id_54cacd5744ffd',805,'99.246.42.219',0,'default','https://sofits.ca/friday-training/','','pat','CPE001e68dbfc17-CM0c473dc4d340.cpe.net.cable.rogers.com','2015-01-29 19:16:23'),(1175,86,'vote_id_54cb7d2713dca',805,'184.144.142.58',0,'default','https://sofits.ca/friday-training/','','Janey','bas5-hull20-3096481338.dsl.bell.ca','2015-01-30 07:46:31'),(1176,87,'vote_id_54f50b5b551b8',806,'173.206.42.200',1,'default','https://sofits.ca/friday-training/','','Jo-Ann','dsl-173-206-42-200.tor.primus.ca','2015-03-02 20:16:11'),(1177,87,'vote_id_54f50c9c55ce5',806,'99.240.231.193',0,'default','https://sofits.ca/friday-training/','','Cary','CPEbc14012f1d43-CMbc14012f1d40.cpe.net.cable.rogers.com','2015-03-02 20:21:32'),(1178,87,'vote_id_54f50cad40064',806,'76.10.172.219',0,'default','https://sofits.ca/friday-training/','','Jennifer Wilson (joining the Purple group for a ski)','76-10-172-219.dsl.teksavvy.com','2015-03-02 20:21:49'),(1179,87,'vote_id_54f51820944ac',806,'99.246.66.128',0,'default','https://sofits.ca/friday-training/','','Lou','CPE185933f805f1-CM185933f805ee.cpe.net.cable.rogers.com','2015-03-02 21:10:40'),(1180,87,'vote_id_54f51af6af4fe',806,'74.15.168.167',0,'default','https://sofits.ca/friday-training/','','Linda Lafrance','OTWAON23-1242540199.sdsl.bell.ca','2015-03-02 21:22:46'),(1181,87,'vote_id_54f5b7c000a87',806,'70.54.49.2',0,'default','https://sofits.ca/friday-training/','','Margaret McLaren','OTWAON0916W-LP140-03-1177956610.dsl.bell.ca','2015-03-03 08:31:44'),(1182,87,'vote_id_54f5c49f2cf21',806,'99.241.1.132',0,'default','https://sofits.ca/friday-training/','','Susan o','CPE00131099c59e-CM7cb21bcbb6c3.cpe.net.cable.rogers.com','2015-03-03 09:26:39'),(1183,87,'vote_id_54f61e47cf00d',806,'70.52.148.204',0,'default','https://sofits.ca/friday-training/','','Penny','bas5-ottawa10-1177851084.dsl.bell.ca','2015-03-03 15:49:11'),(1184,87,'vote_id_54f61f922341e',806,'198.103.184.76',0,'default','https://sofits.ca/friday-training/','','Marie-France =skate','proxy-w.ccra-adrc.gc.ca','2015-03-03 15:54:42'),(1185,87,'vote_id_54f664640f7ea',806,'69.157.115.37',0,'default','https://sofits.ca/friday-training/','','Ila','69.157.115.37','2015-03-03 20:48:20'),(1186,87,'vote_id_54f79548dff8d',806,'173.206.95.122',0,'default','https://sofits.ca/friday-training/','','Janice skate','dsl-173-206-95-122.tor.primus.ca','2015-03-04 18:29:12'),(1187,87,'vote_id_54f79fdf161e0',806,'99.241.135.224',0,'default','https://sofits.ca/friday-training/','','carol','CPE0c473d008201-CM0c473d008200.cpe.net.cable.rogers.com','2015-03-04 19:14:23'),(1188,87,'vote_id_54f87baf38a1f',806,'64.229.220.99',0,'default','https://sofits.ca/friday-training/','','Meryl','OTWAON1140W-LP140-02-1088805987.dsl.bell.ca','2015-03-05 10:52:15'),(1189,87,'vote_id_54f8ae23014db',806,'184.144.137.60',0,'default','https://sofits.ca/friday-training/','','Janey  -  skating','bas5-hull20-3096480060.dsl.bell.ca','2015-03-05 14:27:31'),(1190,87,'vote_id_54f912ff1ee71',806,'99.246.66.46',0,'default','https://sofits.ca/friday-training/','','Barbara - classic and not sure what time ','CPE788df7b27c93-CM788df7b27c90.cpe.net.cable.rogers.com','2015-03-05 21:37:51'),(1191,88,'vote_id_5500388f3d22b',807,'64.56.224.88',1,'default','https://sofits.ca/friday-training/','','Jo-Ann','dsl-64-56-224-88.tor.primus.ca','2015-03-11 08:43:59'),(1192,88,'vote_id_5500416766174',807,'174.93.175.60',0,'default','https://sofits.ca/friday-training/','','Janey','bas5-hull20-2925375292.dsl.bell.ca','2015-03-11 09:21:43'),(1193,88,'vote_id_5500526db8910',807,'70.53.127.15',0,'default','https://sofits.ca/friday-training/','','Penny','bas5-ottawa10-1177911055.dsl.bell.ca','2015-03-11 10:34:21'),(1194,88,'vote_id_55005844b785f',807,'69.157.22.69',0,'default','https://sofits.ca/friday-training/','','Kathy','69.157.22.69','2015-03-11 10:59:16'),(1195,88,'vote_id_550073b4c1414',807,'70.54.49.2',0,'default','https://sofits.ca/friday-training/','','Margaret McLaren','OTWAON0916W-LP140-03-1177956610.dsl.bell.ca','2015-03-11 12:56:20'),(1196,88,'vote_id_55009a7eeb151',807,'69.157.115.37',0,'default','https://sofits.ca/friday-training/','','Ila','69.157.115.37','2015-03-11 15:41:50'),(1197,88,'vote_id_5500a90c29773',807,'64.229.220.99',0,'default','https://sofits.ca/friday-training/','','Meryl','OTWAON1140W-LP140-02-1088805987.dsl.bell.ca','2015-03-11 16:43:56'),(1198,88,'vote_id_5500b4fff3ee1',807,'99.246.42.219',0,'default','https://sofits.ca/friday-training/','','pat','CPE001e68dbfc17-CM0c473dc4d340.cpe.net.cable.rogers.com','2015-03-11 17:34:56'),(1199,88,'vote_id_5500cabaaec42',807,'99.246.66.128',0,'default','https://sofits.ca/friday-training/','','Lou','CPE185933f805f1-CM185933f805ee.cpe.net.cable.rogers.com','2015-03-11 19:07:38'),(1200,88,'vote_id_5500dccd61c2f',807,'76.10.172.219',0,'default','https://sofits.ca/friday-training/','','Jennifer Wilson','76-10-172-219.dsl.teksavvy.com','2015-03-11 20:24:45'),(1201,88,'vote_id_550187b5ae2f6',807,'216.254.163.24',0,'default','https://sofits.ca/friday-training/','','Janice Moe','dsl-216-254-163-24.tor.primus.ca','2015-03-12 08:33:57'),(1202,88,'vote_id_5501b3b86eeb3',807,'99.241.135.224',0,'default','https://sofits.ca/friday-training/','','Carol','CPE0c473d008201-CM0c473d008200.cpe.net.cable.rogers.com','2015-03-12 11:41:44'),(1203,88,'vote_id_5501d81dc6ff7',807,'99.240.147.167',0,'default','https://sofits.ca/friday-training/','','annemarieke','CPEbcee7b7df3f0-CM84948c833730.cpe.net.cable.rogers.com','2015-03-12 14:17:01'),(1204,88,'vote_id_5501db309bb6c',807,'198.103.184.76',0,'default','https://sofits.ca/friday-training/','','Marie-France but unsure','proxy-w.ccra-adrc.gc.ca','2015-03-12 14:30:08'),(1205,88,'vote_id_5501f19615436',807,'207.112.111.63',0,'default','https://sofits.ca/friday-training/','','Julie M','dsl-207-112-111-63.tor.primus.ca','2015-03-12 16:05:42'),(1206,88,'vote_id_5502e25805d28',807,'69.158.15.247',0,'default','https://sofits.ca/friday-training/','','Pauline','69.158.15.247','2015-03-13 09:12:56'),(1207,88,'vote_id_5502ff6292ae3',807,'99.240.231.193',0,'default','https://sofits.ca/friday-training/','','Cary','CPEbc14012f1d43-CMbc14012f1d40.cpe.net.cable.rogers.com','2015-03-13 11:16:50');
/*!40000 ALTER TABLE `wp_yop_poll_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop_poll_templates`
--

DROP TABLE IF EXISTS `wp_yop_poll_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop_poll_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `template_author` bigint(20) NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL,
  `before_vote_template` text NOT NULL,
  `after_vote_template` text NOT NULL,
  `before_start_date_template` text NOT NULL,
  `after_end_date_template` text NOT NULL,
  `css` text NOT NULL,
  `js` text NOT NULL,
  `status` varchar(255) NOT NULL,
  `last_modified` datetime NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop_poll_templates`
--

LOCK TABLES `wp_yop_poll_templates` WRITE;
/*!40000 ALTER TABLE `wp_yop_poll_templates` DISABLE KEYS */;
INSERT INTO `wp_yop_poll_templates` VALUES (1,1,'White','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE%</div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n	width:%POLL-WIDTH%;\r\n	background:#fff;\r\n	padding:10px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#555; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#555; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n	if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','default','2013-09-20 20:20:24','2013-09-20 20:20:24'),(2,1,'Grey','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#eee;\r\n    padding:10px;\r\n    color:#000;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#000; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#000; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24'),(3,1,'Dark','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n	width:%POLL-WIDTH%;\r\n	background:#555;\r\n	padding:10px;\r\n    color:#fff;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#333333; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24'),(4,1,'Blue v1','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#327BD6;\r\n    padding:10px;\r\n    color:#fff;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24'),(5,1,'Blue v2','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:0px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-weight:bold;\r\n	background:#327BD6;\r\n	color:#fff;\r\n	padding:5px;\r\n        text-align:center;\r\n        font-size:12px;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#327BD6; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#327BD6; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24'),(6,1,'Blue v3','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:10px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n    border:5px solid #327BD6;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px;  }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#327BD6; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#327BD6; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24'),(7,1,'Red v1','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#B70004;\r\n    padding:10px;\r\n    color:#fff;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24'),(8,1,'Red v2','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:0px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-weight:bold;\r\n	background:#B70004;\r\n	color:#fff;\r\n	padding:5px;\r\n        text-align:center;\r\n        font-size:12px;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#B70004; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#B70004; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24'),(9,1,'Red v3','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:10px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n    border:5px solid #B70004;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#B70004; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#B70004; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24'),(10,1,'Green v1','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#3F8B43;\r\n    padding:10px;\r\n    color:#fff;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:00FF00;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24'),(11,1,'Green v2','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:0px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-weight:bold;\r\n	background:#3F8B43;\r\n	color:#fff;\r\n	padding:5px;\r\n        text-align:center;\r\n        font-size:12px;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24'),(12,1,'Green v3','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:10px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n    border:5px solid #3F8B43;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#3F8B43; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24'),(13,1,'Orange v1','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#FB6911;\r\n    padding:10px;\r\n    color:#fff;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#fff; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24'),(14,1,'Orange v2','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:0px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-weight:bold;\r\n	background:#FB6911;\r\n	color:#fff;\r\n	padding:5px;\r\n        text-align:center;\r\n        font-size:12px;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#FB6911; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#FB6911; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24'),(15,1,'Orange v3','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-ANSWER-CHECK-INPUT% \r\n			%POLL-ANSWER-LABEL%\r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/ANSWER_CONTAINER]\r\n		[OTHER_ANSWER_CONTAINER]\r\n		<li class=\"yop-poll-li-answer-%POLL-ID%\">\r\n			%POLL-OTHER-ANSWER-CHECK-INPUT% \r\n			%POLL-OTHER-ANSWER-LABEL% \r\n			<span class=\"yop-poll-results-text-%POLL-ID%\">%POLL-ANSWER-RESULT-LABEL%</span>\r\n			%POLL-OTHER-ANSWER-TEXT-INPUT% \r\n            %POLL-ANSWER-RESULT-BAR%\r\n        </li>\r\n        [/OTHER_ANSWER_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-custom-%POLL-ID%\">\r\n	<ul>\r\n		[CUSTOM_FIELD_CONTAINER]\r\n		<li>%POLL-CUSTOM-FIELD-LABEL% %POLL-CUSTOM-FIELD-TEXT-INPUT%</li>\r\n		[/CUSTOM_FIELD_CONTAINER]\r\n	</ul>\r\n</div>    \r\n[CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-captcha-%POLL-ID%\">\r\n    <div class=\"yop-poll-captcha-image-div\" id=\"yop-poll-captcha-image-div-%POLL-ID%\">\r\n        %CAPTCHA-IMAGE%\r\n        <div class=\"yop-poll-captcha-helpers-div\" id=\"yop-poll-captcha-helpers-div-%POLL-ID%\">%RELOAD-CAPTCHA-IMAGE% </div>\r\n        <div class=\"yop_poll_clear\"></div>\r\n    </div>\r\n    %CAPTCHA-LABEL%\r\n    <div class=\"yop-poll-captcha-input-div\" id=\"yop-poll-captcha-input-div-%POLL-ID%\">%CAPTCHA-INPUT%</div>\r\n</div>\r\n[/CAPTCHA_CONTAINER]\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-VOTE-BUTTON%</div>\r\n	<div id=\"yop-poll-results-%POLL-ID%\">%POLL-VIEW-RESULT-LINK%</div>\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n</div>','<div id=\"yop-poll-name-%POLL-ID%\" class=\"yop-poll-name\">%POLL-NAME%</div>\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-%POLL-ID%\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label-%POLL-ID%\">\r\n				<span class=\"pds-answer-text-%POLL-ID%\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result-%POLL-ID%\">\r\n					<span class=\"pds-feedback-per-%POLL-ID%\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<div>\r\n             %POLL-ANSWER-RESULT-BAR%\r\n           </div>\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n<div id=\"yop-poll-vote-%POLL-ID%\" class=\"yop-poll-footer\">\r\n	<div>%POLL-TOTAL-ANSWERS%</div>\r\n	<div>%POLL-TOTAL-VOTES%</div>\r\n	<div id=\"yop-poll-back-%POLL-ID%\">%POLL-BACK-TO-VOTE-LINK%</div>\r\n</div>','This poll is about to <br>\r\nstart at %POLL-START-DATE%<br>\r\nand finish at %POLL-END-DATE%<br>','This poll is closed!\r\nPoll activity: <br>\r\nstart_date %POLL-START-DATE%<br>\r\nend_date %POLL-END-DATE%<br>\r\n\r\nPoll Results:\r\n<div id=\"yop-poll-question-%POLL-ID%\" class=\"yop-poll-question\">%POLL-QUESTION%</div>\r\n<div id=\"yop-poll-answers-1\" class=\"yop-poll-answers\">\r\n	<ul>\r\n		[ANSWER_RESULT_CONTAINER]\r\n		<li class=\"yop-poll-li-result-%POLL-ID%\">\r\n			<label class=\"pds-feedback-label\">\r\n				<span class=\"pds-answer-text\">%POLL-ANSWER-LABEL%</span>\r\n				<span class=\"pds-feedback-result\">\r\n					<span class=\"pds-feedback-per\"> %POLL-ANSWER-RESULT-LABEL%</span>\r\n				</span>\r\n			</label>\r\n			<span class=\"pds-clear\" style=\"display: block;clear: both;height:1px;line-height:1px;\"> </span>\r\n	%POLL-ANSWER-RESULT-BAR%\r\n		</li>\r\n		[/ANSWER_RESULT_CONTAINER]\r\n	</ul>\r\n</div>\r\n%POLL-VOTE-BUTTON%','#yop-poll-container-%POLL-ID% {\r\n    width:%POLL-WIDTH%;\r\n    background:#fff;\r\n    padding:10px;\r\n    color:#555;\r\n    overflow:hidden;\r\n    font-size:12px;\r\n    border:5px solid #FB6911;\r\n}\r\n#yop-poll-name-%POLL-ID% {\r\n	font-size:14px;\r\n	font-weight:bold;\r\n}\r\n\r\n#yop-poll-question-%POLL-ID% {\r\n	font-size:14px;\r\n	margin:5px 0px;\r\n}\r\n#yop-poll-answers-%POLL-ID% {  }\r\n#yop-poll-answers-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li { \r\n	font-style:normal;\r\n	margin:0px 0px 10px 0px;\r\n	padding:0px;\r\n	font-size:12px;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li input { \r\n	margin:0px; \r\n	float:none;\r\n}\r\n#yop-poll-answers-%POLL-ID% ul li label { \r\n	margin:0px; \r\n	font-style:normal; \r\n	font-weight:normal; \r\n	font-size:12px; \r\n	float:none;\r\n}\r\n.yop-poll-results-%POLL-ID% {\r\n    font-size: 12px;\r\n    font-style: italic;\r\n    font-weight: normal;\r\n    margin-left: 15px;\r\n}\r\n\r\n#yop-poll-custom-%POLL-ID% {  }\r\n#yop-poll-custom-%POLL-ID% ul {\r\n    list-style: none outside none;\r\n    margin: 0;\r\n    padding: 0;\r\n}\r\n#yop-poll-custom-%POLL-ID% ul li { \r\n	padding:0px;\r\n	margin:0px;	\r\n	font-size:14px;\r\n}\r\n#yop-poll-container-%POLL-ID% input[type=\'text\'] { margin:0px 0px 5px 0px; padding:2%; width:96%; text-indent:2%; font-size:12px; }\r\n\r\n#yop-poll-captcha-input-div-%POLL-ID% {\r\nmargin-top:5px;\r\n}\r\n#yop-poll-captcha-helpers-div-%POLL-ID% {\r\nwidth:30px;\r\nfloat:left;\r\nmargin-left:5px;\r\nheight:0px;\r\n}\r\n\r\n#yop-poll-captcha-helpers-div-%POLL-ID% img {\r\nmargin-bottom:2px;\r\n}\r\n\r\n#yop-poll-captcha-image-div-%POLL-ID% {\r\nmargin-bottom:5px;\r\n}\r\n\r\n#yop_poll_captcha_image_%POLL-ID% {\r\nfloat:left;\r\n}\r\n\r\n.yop_poll_clear {\r\nclear:both;\r\n}\r\n\r\n#yop-poll-vote-%POLL-ID% {\r\n\r\n}\r\n.yop-poll-results-bar-%POLL-ID% { background:#f5f5f5; height:10px;  }\r\n.yop-poll-results-bar-%POLL-ID% div { background:#555; height:10px; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-vote-%POLL-ID% button { float:left; }\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% {\r\n    float: right;\r\n    margin-bottom: 20px;\r\n    margin-top: -20px;\r\n    width: auto;\r\n}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-results-%POLL-ID% a { color:#FB6911; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div#yop-poll-back-%POLL-ID% a { color:#FB6911; text-decoration:underline; font-size:12px;}\r\n#yop-poll-vote-%POLL-ID% div { float:left; width:100%; }\r\n\r\n#yop-poll-container-error-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:red;\r\n	text-transform:lowercase;\r\n}\r\n\r\n#yop-poll-container-success-%POLL-ID% {\r\n	font-size:12px;\r\n	font-style:italic;\r\n	color:green;\r\n}','function stripBorder_%POLL-ID%(object) {\r\n	object.each(function() {\r\n			if( parseInt(jQuery(this).width() ) > 0) {\r\n				jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"border-left-width\")) - parseInt(jQuery(this).css(\"border-right-width\")) );\r\n			}\r\n			else {\r\n				jQuery(this).css(\"border-left-width\", \'0px\');\r\n				jQuery(this).css(\"border-right-width\", \'0px\');\r\n			}\r\n	});\r\n}\r\nfunction stripPadding_%POLL-ID%(object) {\r\n	object.each(function() { \r\n			jQuery(this).width( parseInt( jQuery(this).width() ) - parseInt(jQuery(this).css(\"padding-left\")) - parseInt(jQuery(this).css(\"padding-left\")) );\r\n	});\r\n}\r\n\r\nfunction strip_results_%POLL-ID%() {\r\n        stripPadding_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop_poll_li_result-%POLL-ID%\") );   \r\n	stripBorder_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-result-bar-%POLL-ID%\"));\r\n}\r\n\r\njQuery(document).ready(function(e) {\r\n                if(typeof window.strip_results_%POLL-ID% == \'function\') \r\n			strip_results_%POLL-ID%();\r\n    \r\n		if(typeof window.tabulate_answers_%POLL-ID% == \'function\') \r\n			tabulate_answers_%POLL-ID%();\r\n		\r\n		if(typeof window.tabulate_results_%POLL-ID% == \'function\') \r\n			tabulate_results_%POLL-ID%();\r\n		\r\n});\r\n\r\nfunction equalWidth_%POLL-ID%(obj, cols, findWidest ) {\r\n findWidest  = typeof findWidest  !== \'undefined\' ? findWidest  : false;\r\n    if ( findWidest ) {\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				width = parseInt(thisWidth / cols); \r\n				jQuery(this).width(width);	\r\n				jQuery(this).css(\'float\', \'left\');	\r\n		});\r\n	}\r\n	else {\r\n		var widest = 0;\r\n		obj.each(function() {\r\n				var thisWidth = jQuery(this).width();\r\n				if(thisWidth > widest) {\r\n					widest = thisWidth; \r\n				}	\r\n		});\r\n		width = parseInt( widest / cols); \r\n		obj.width(width);	\r\n		obj.css(\'float\', \'left\');	\r\n	}	\r\n}\r\n\r\nfunction tabulate_answers_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID%\"), %ANSWERS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-answer-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %ANSWERS-TABULATED-COLS%, true );\r\n}\r\n\r\nfunction tabulate_results_%POLL-ID%() {\r\n	equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID%\"), %RESULTS-TABULATED-COLS% );\r\n        //equalWidth_%POLL-ID%( jQuery(\"#yop-poll-container-%POLL-ID% .yop-poll-li-result-%POLL-ID% .yop-poll-results-bar-%POLL-ID% div \"), %RESULTS-TABULATED-COLS%, true );\r\n}\r\n			jQuery(document).ready(function(){\r\n				runOnPollStateChange_%POLL-ID%();\r\n				});\r\n\r\n			function runOnPollStateChange_%POLL-ID%() {};','other','2013-09-20 20:20:24','2013-09-20 20:20:24');
/*!40000 ALTER TABLE `wp_yop_poll_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop_poll_voters`
--

DROP TABLE IF EXISTS `wp_yop_poll_voters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop_poll_voters` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `poll_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `user_type` enum('facebook','wordpress','anonymous','default') NOT NULL DEFAULT 'default',
  PRIMARY KEY (`id`),
  KEY `poll_id` (`poll_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1067 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop_poll_voters`
--

LOCK TABLES `wp_yop_poll_voters` WRITE;
/*!40000 ALTER TABLE `wp_yop_poll_voters` DISABLE KEYS */;
INSERT INTO `wp_yop_poll_voters` VALUES (1,1,1,'wordpress'),(2,1,0,'wordpress'),(3,1,0,'wordpress'),(4,2,4,'wordpress'),(5,2,4,'wordpress'),(6,4,1,'wordpress'),(7,2,1,'wordpress'),(8,4,0,'wordpress'),(9,2,0,'wordpress'),(10,6,4,'wordpress'),(11,2,0,'wordpress'),(12,2,4,'wordpress'),(13,1,0,'wordpress'),(14,2,0,'wordpress'),(15,4,0,'wordpress'),(16,2,0,'wordpress'),(17,4,0,'wordpress'),(18,2,0,'wordpress'),(19,1,0,'wordpress'),(20,7,1,'wordpress'),(21,1,0,'wordpress'),(22,5,0,'wordpress'),(23,4,0,'wordpress'),(24,1,0,'wordpress'),(25,5,0,'wordpress'),(26,7,4,'wordpress'),(27,5,0,'wordpress'),(28,8,1,'wordpress'),(29,9,1,'wordpress'),(30,5,0,'wordpress'),(31,1,0,'wordpress'),(32,2,0,'wordpress'),(33,10,0,'wordpress'),(34,1,0,'wordpress'),(35,10,0,'wordpress'),(36,11,0,'wordpress'),(37,12,0,'wordpress'),(38,12,0,'wordpress'),(39,2,0,'wordpress'),(40,13,1,'wordpress'),(41,13,1,'wordpress'),(42,12,0,'wordpress'),(43,2,0,'wordpress'),(44,10,0,'wordpress'),(45,12,0,'wordpress'),(46,2,0,'wordpress'),(47,2,0,'wordpress'),(48,2,0,'wordpress'),(49,13,0,'wordpress'),(50,2,0,'wordpress'),(51,11,0,'wordpress'),(52,12,0,'wordpress'),(53,15,1,'wordpress'),(54,15,0,'wordpress'),(55,15,0,'wordpress'),(56,15,0,'wordpress'),(57,15,0,'wordpress'),(58,15,0,'wordpress'),(59,15,0,'wordpress'),(60,15,0,'wordpress'),(61,15,0,'wordpress'),(62,16,0,'wordpress'),(63,17,0,'wordpress'),(64,15,0,'wordpress'),(65,16,0,'wordpress'),(66,15,0,'wordpress'),(67,15,0,'wordpress'),(68,17,0,'wordpress'),(69,15,0,'wordpress'),(70,17,0,'wordpress'),(71,13,0,'wordpress'),(72,17,0,'wordpress'),(73,17,0,'wordpress'),(74,19,0,'wordpress'),(75,9,0,'wordpress'),(76,9,0,'wordpress'),(77,9,0,'wordpress'),(78,12,0,'wordpress'),(79,13,0,'wordpress'),(80,9,0,'wordpress'),(81,9,0,'wordpress'),(82,9,0,'wordpress'),(83,9,0,'wordpress'),(84,9,0,'wordpress'),(85,18,0,'wordpress'),(86,18,0,'wordpress'),(87,19,0,'wordpress'),(88,18,0,'wordpress'),(89,19,0,'wordpress'),(90,19,0,'wordpress'),(91,18,0,'wordpress'),(92,19,0,'wordpress'),(93,12,0,'wordpress'),(94,19,0,'wordpress'),(95,20,1,'wordpress'),(96,19,0,'wordpress'),(97,20,0,'wordpress'),(98,13,0,'wordpress'),(99,20,0,'wordpress'),(100,20,0,'wordpress'),(101,20,0,'wordpress'),(102,20,0,'wordpress'),(103,20,0,'wordpress'),(104,18,0,'wordpress'),(105,19,0,'wordpress'),(106,20,0,'wordpress'),(107,20,0,'wordpress'),(108,20,0,'wordpress'),(109,20,0,'wordpress'),(110,20,0,'wordpress'),(111,20,0,'wordpress'),(112,20,0,'wordpress'),(113,21,1,'wordpress'),(114,21,0,'wordpress'),(115,21,0,'wordpress'),(116,21,0,'wordpress'),(117,21,0,'wordpress'),(118,21,0,'wordpress'),(119,13,0,'wordpress'),(120,21,0,'wordpress'),(121,21,0,'wordpress'),(122,21,0,'wordpress'),(123,21,0,'wordpress'),(124,21,0,'wordpress'),(125,21,0,'wordpress'),(126,21,0,'wordpress'),(127,21,0,'wordpress'),(128,21,0,'wordpress'),(129,21,0,'wordpress'),(130,21,0,'wordpress'),(131,22,1,'wordpress'),(132,22,0,'wordpress'),(133,22,0,'wordpress'),(134,22,0,'wordpress'),(135,22,0,'wordpress'),(136,22,0,'wordpress'),(137,22,0,'wordpress'),(138,22,0,'wordpress'),(139,22,0,'wordpress'),(140,22,0,'wordpress'),(141,22,0,'wordpress'),(142,13,0,'wordpress'),(143,22,0,'wordpress'),(144,22,0,'wordpress'),(145,22,0,'wordpress'),(146,22,0,'wordpress'),(147,22,0,'wordpress'),(148,22,0,'wordpress'),(149,22,0,'wordpress'),(150,23,1,'wordpress'),(151,23,0,'wordpress'),(152,23,0,'wordpress'),(153,23,0,'wordpress'),(154,23,0,'wordpress'),(155,23,0,'wordpress'),(156,23,0,'wordpress'),(157,23,0,'wordpress'),(158,23,0,'wordpress'),(159,23,0,'wordpress'),(160,23,0,'wordpress'),(161,23,0,'wordpress'),(162,23,0,'wordpress'),(163,23,0,'wordpress'),(164,23,0,'wordpress'),(165,23,0,'wordpress'),(166,23,0,'wordpress'),(167,23,0,'wordpress'),(168,23,0,'wordpress'),(169,24,1,'wordpress'),(170,24,0,'wordpress'),(171,13,0,'wordpress'),(172,24,0,'wordpress'),(173,24,0,'wordpress'),(174,24,0,'wordpress'),(175,24,0,'wordpress'),(176,24,0,'wordpress'),(177,24,0,'wordpress'),(178,24,0,'wordpress'),(179,24,0,'wordpress'),(180,24,0,'wordpress'),(181,24,0,'wordpress'),(182,24,0,'wordpress'),(183,24,0,'wordpress'),(184,24,0,'wordpress'),(185,24,0,'wordpress'),(186,24,0,'wordpress'),(187,24,0,'wordpress'),(188,24,0,'wordpress'),(189,25,1,'wordpress'),(190,25,0,'wordpress'),(191,25,0,'wordpress'),(192,25,0,'wordpress'),(193,25,0,'wordpress'),(194,25,0,'wordpress'),(195,25,0,'wordpress'),(196,25,0,'wordpress'),(197,25,0,'wordpress'),(198,25,0,'wordpress'),(199,25,0,'wordpress'),(200,25,0,'wordpress'),(201,25,0,'wordpress'),(202,25,0,'wordpress'),(203,25,0,'wordpress'),(204,25,0,'wordpress'),(205,25,0,'wordpress'),(206,26,1,'wordpress'),(207,26,0,'wordpress'),(208,26,0,'wordpress'),(209,26,0,'wordpress'),(210,26,0,'wordpress'),(211,26,0,'wordpress'),(212,26,0,'wordpress'),(213,26,0,'wordpress'),(214,26,0,'wordpress'),(215,26,0,'wordpress'),(216,26,0,'wordpress'),(217,26,0,'wordpress'),(218,26,0,'wordpress'),(219,26,0,'wordpress'),(220,26,0,'wordpress'),(221,26,0,'wordpress'),(222,26,0,'wordpress'),(223,26,0,'wordpress'),(224,26,0,'wordpress'),(225,26,0,'wordpress'),(226,26,0,'wordpress'),(227,27,1,'wordpress'),(228,27,0,'wordpress'),(229,27,0,'wordpress'),(230,27,0,'wordpress'),(231,27,0,'wordpress'),(232,27,0,'wordpress'),(233,27,0,'wordpress'),(234,27,0,'wordpress'),(235,27,0,'wordpress'),(236,27,0,'wordpress'),(237,27,0,'wordpress'),(238,27,0,'wordpress'),(239,27,0,'wordpress'),(240,27,0,'wordpress'),(241,27,0,'wordpress'),(242,27,0,'wordpress'),(243,27,0,'wordpress'),(244,27,0,'wordpress'),(245,28,0,'wordpress'),(246,28,0,'wordpress'),(247,28,0,'wordpress'),(248,28,0,'wordpress'),(249,30,1,'wordpress'),(250,30,0,'wordpress'),(251,28,0,'wordpress'),(252,30,0,'wordpress'),(253,30,0,'wordpress'),(254,28,0,'wordpress'),(255,30,0,'wordpress'),(256,28,0,'wordpress'),(257,30,0,'wordpress'),(258,30,0,'wordpress'),(259,28,0,'wordpress'),(260,28,0,'wordpress'),(261,30,0,'wordpress'),(262,28,0,'wordpress'),(263,28,0,'wordpress'),(264,30,0,'wordpress'),(265,30,0,'wordpress'),(266,28,0,'wordpress'),(267,30,0,'wordpress'),(268,28,0,'wordpress'),(269,30,0,'wordpress'),(270,28,0,'wordpress'),(271,28,0,'wordpress'),(272,30,0,'wordpress'),(273,28,0,'wordpress'),(274,30,0,'wordpress'),(275,28,0,'wordpress'),(276,28,0,'wordpress'),(277,28,0,'wordpress'),(278,30,0,'wordpress'),(279,28,0,'wordpress'),(280,28,0,'wordpress'),(281,28,0,'wordpress'),(282,28,0,'wordpress'),(283,28,0,'wordpress'),(284,30,0,'wordpress'),(285,31,1,'wordpress'),(286,31,0,'wordpress'),(287,31,0,'wordpress'),(288,31,0,'wordpress'),(289,31,0,'wordpress'),(290,31,0,'wordpress'),(291,31,0,'wordpress'),(292,31,0,'wordpress'),(293,30,0,'wordpress'),(294,31,0,'wordpress'),(295,30,0,'wordpress'),(296,30,0,'wordpress'),(297,31,0,'wordpress'),(298,32,1,'wordpress'),(299,30,0,'wordpress'),(300,31,0,'wordpress'),(301,30,0,'wordpress'),(302,13,0,'wordpress'),(303,13,0,'wordpress'),(304,33,1,'wordpress'),(305,33,0,'wordpress'),(306,34,0,'wordpress'),(307,34,0,'wordpress'),(308,33,0,'wordpress'),(309,33,0,'wordpress'),(310,33,0,'wordpress'),(311,34,0,'wordpress'),(312,33,0,'wordpress'),(313,34,0,'wordpress'),(314,33,0,'wordpress'),(315,34,0,'wordpress'),(316,34,0,'wordpress'),(317,34,0,'wordpress'),(318,13,0,'wordpress'),(319,35,0,'wordpress'),(320,35,0,'wordpress'),(321,35,0,'wordpress'),(322,35,0,'wordpress'),(323,35,0,'wordpress'),(324,35,0,'wordpress'),(325,35,0,'wordpress'),(326,36,1,'wordpress'),(327,36,0,'wordpress'),(328,36,0,'wordpress'),(329,36,0,'wordpress'),(330,36,0,'wordpress'),(331,36,0,'wordpress'),(332,36,0,'wordpress'),(333,36,0,'wordpress'),(334,36,0,'wordpress'),(335,36,0,'wordpress'),(336,36,0,'wordpress'),(337,36,0,'wordpress'),(338,36,0,'wordpress'),(339,36,0,'wordpress'),(340,36,0,'wordpress'),(341,36,0,'wordpress'),(342,36,0,'wordpress'),(343,36,0,'wordpress'),(344,37,1,'wordpress'),(345,37,0,'wordpress'),(346,38,0,'wordpress'),(347,38,0,'wordpress'),(348,37,0,'wordpress'),(349,37,0,'wordpress'),(350,37,0,'wordpress'),(351,37,0,'wordpress'),(352,37,0,'wordpress'),(353,38,0,'wordpress'),(354,37,0,'wordpress'),(355,37,0,'wordpress'),(356,38,0,'wordpress'),(357,37,0,'wordpress'),(358,38,0,'wordpress'),(359,37,0,'wordpress'),(360,37,0,'wordpress'),(361,38,0,'wordpress'),(362,38,0,'wordpress'),(363,37,0,'wordpress'),(364,38,0,'wordpress'),(365,39,1,'wordpress'),(366,39,0,'wordpress'),(367,39,0,'wordpress'),(368,39,0,'wordpress'),(369,39,0,'wordpress'),(370,39,0,'wordpress'),(371,39,0,'wordpress'),(372,39,0,'wordpress'),(373,39,0,'wordpress'),(374,39,0,'wordpress'),(375,39,0,'wordpress'),(376,39,0,'wordpress'),(377,40,1,'wordpress'),(378,40,0,'wordpress'),(379,40,0,'wordpress'),(380,40,0,'wordpress'),(381,40,0,'wordpress'),(382,40,0,'wordpress'),(383,40,0,'wordpress'),(384,40,0,'wordpress'),(385,40,0,'wordpress'),(386,40,0,'wordpress'),(387,40,0,'wordpress'),(388,41,1,'wordpress'),(389,41,0,'wordpress'),(390,41,0,'wordpress'),(391,41,0,'wordpress'),(392,41,0,'wordpress'),(393,41,0,'wordpress'),(394,41,0,'wordpress'),(395,41,0,'wordpress'),(396,41,0,'wordpress'),(397,42,1,'wordpress'),(398,42,0,'wordpress'),(399,42,0,'wordpress'),(400,42,0,'wordpress'),(401,42,0,'wordpress'),(402,42,0,'wordpress'),(403,42,0,'wordpress'),(404,42,0,'wordpress'),(405,42,0,'wordpress'),(406,42,0,'wordpress'),(407,42,0,'wordpress'),(408,42,0,'wordpress'),(409,42,0,'wordpress'),(410,43,0,'wordpress'),(411,43,0,'wordpress'),(412,43,0,'wordpress'),(413,43,0,'wordpress'),(414,43,0,'wordpress'),(415,43,0,'wordpress'),(416,43,0,'wordpress'),(417,43,0,'wordpress'),(418,44,1,'wordpress'),(419,44,0,'wordpress'),(420,44,0,'wordpress'),(421,44,0,'wordpress'),(422,44,0,'wordpress'),(423,44,0,'wordpress'),(424,44,0,'wordpress'),(425,44,0,'wordpress'),(426,44,0,'wordpress'),(427,44,0,'wordpress'),(428,44,0,'wordpress'),(429,44,0,'wordpress'),(430,44,0,'wordpress'),(431,45,1,'wordpress'),(432,45,0,'wordpress'),(433,45,0,'wordpress'),(434,45,0,'wordpress'),(435,45,0,'wordpress'),(436,45,0,'wordpress'),(437,45,0,'wordpress'),(438,12,0,'wordpress'),(439,46,1,'wordpress'),(440,47,0,'wordpress'),(441,46,0,'wordpress'),(442,46,0,'wordpress'),(443,46,0,'wordpress'),(444,47,0,'wordpress'),(445,46,0,'wordpress'),(446,46,1,'wordpress'),(447,47,1,'wordpress'),(448,47,1,'wordpress'),(449,46,0,'wordpress'),(450,46,0,'wordpress'),(451,46,0,'wordpress'),(452,46,0,'wordpress'),(453,46,0,'wordpress'),(454,46,0,'wordpress'),(455,46,0,'wordpress'),(456,46,0,'wordpress'),(457,46,0,'wordpress'),(458,46,0,'wordpress'),(459,46,0,'wordpress'),(460,46,0,'wordpress'),(461,46,0,'wordpress'),(462,46,0,'wordpress'),(463,46,0,'wordpress'),(464,46,0,'wordpress'),(465,46,0,'wordpress'),(466,46,0,'wordpress'),(467,46,0,'wordpress'),(468,46,0,'wordpress'),(469,46,0,'wordpress'),(470,47,0,'wordpress'),(471,46,0,'wordpress'),(472,47,0,'wordpress'),(473,49,1,'wordpress'),(474,12,0,'wordpress'),(475,49,0,'wordpress'),(476,49,0,'wordpress'),(477,49,0,'wordpress'),(478,49,0,'wordpress'),(479,49,0,'wordpress'),(480,50,0,'wordpress'),(481,49,0,'wordpress'),(482,49,0,'wordpress'),(483,49,0,'wordpress'),(484,49,0,'wordpress'),(485,50,0,'wordpress'),(486,49,0,'wordpress'),(487,49,0,'wordpress'),(488,49,0,'wordpress'),(489,50,0,'wordpress'),(490,49,0,'wordpress'),(491,49,0,'wordpress'),(492,49,0,'wordpress'),(493,50,0,'wordpress'),(494,49,0,'wordpress'),(495,49,0,'wordpress'),(496,49,0,'wordpress'),(497,49,0,'wordpress'),(498,49,0,'wordpress'),(499,49,0,'wordpress'),(500,49,0,'wordpress'),(501,49,0,'wordpress'),(502,49,0,'wordpress'),(503,50,0,'wordpress'),(504,50,0,'wordpress'),(505,51,1,'wordpress'),(506,51,0,'wordpress'),(507,51,0,'wordpress'),(508,51,0,'wordpress'),(509,52,0,'wordpress'),(510,51,0,'wordpress'),(511,51,0,'wordpress'),(512,51,0,'wordpress'),(513,51,0,'wordpress'),(514,51,0,'wordpress'),(515,51,0,'wordpress'),(516,51,0,'wordpress'),(517,51,0,'wordpress'),(518,51,0,'wordpress'),(519,52,0,'wordpress'),(520,51,0,'wordpress'),(521,51,0,'wordpress'),(522,51,0,'wordpress'),(523,51,0,'wordpress'),(524,51,0,'wordpress'),(525,51,0,'wordpress'),(526,52,1,'wordpress'),(527,51,0,'wordpress'),(528,51,0,'wordpress'),(529,53,1,'wordpress'),(530,53,0,'wordpress'),(531,53,0,'wordpress'),(532,53,0,'wordpress'),(533,53,0,'wordpress'),(534,53,0,'wordpress'),(535,54,0,'wordpress'),(536,54,0,'wordpress'),(537,53,0,'wordpress'),(538,53,0,'wordpress'),(539,53,0,'wordpress'),(540,53,0,'wordpress'),(541,54,0,'wordpress'),(542,53,0,'wordpress'),(543,54,0,'wordpress'),(544,53,0,'wordpress'),(545,53,0,'wordpress'),(546,53,0,'wordpress'),(547,53,0,'wordpress'),(548,54,0,'wordpress'),(549,53,0,'wordpress'),(550,53,0,'wordpress'),(551,53,0,'wordpress'),(552,53,0,'wordpress'),(553,53,0,'wordpress'),(554,53,0,'wordpress'),(555,56,1,'wordpress'),(556,56,0,'wordpress'),(557,56,0,'wordpress'),(558,56,0,'wordpress'),(559,56,0,'wordpress'),(560,56,0,'wordpress'),(561,56,0,'wordpress'),(562,56,0,'wordpress'),(563,56,0,'wordpress'),(564,56,0,'wordpress'),(565,56,0,'wordpress'),(566,56,0,'wordpress'),(567,55,0,'wordpress'),(568,56,0,'wordpress'),(569,56,0,'wordpress'),(570,56,0,'wordpress'),(571,56,0,'wordpress'),(572,56,0,'wordpress'),(573,56,0,'wordpress'),(574,56,0,'wordpress'),(575,56,0,'wordpress'),(576,56,0,'wordpress'),(577,56,0,'wordpress'),(578,56,0,'wordpress'),(579,56,0,'wordpress'),(580,56,0,'wordpress'),(581,56,0,'wordpress'),(582,56,0,'wordpress'),(583,56,0,'wordpress'),(584,56,0,'wordpress'),(585,56,0,'wordpress'),(586,56,0,'wordpress'),(587,56,0,'wordpress'),(588,60,1,'wordpress'),(589,57,1,'wordpress'),(590,58,1,'wordpress'),(591,59,1,'wordpress'),(592,60,0,'wordpress'),(593,60,0,'wordpress'),(594,60,0,'wordpress'),(595,57,0,'wordpress'),(596,58,0,'wordpress'),(597,59,0,'wordpress'),(598,60,0,'wordpress'),(599,57,0,'wordpress'),(600,58,0,'wordpress'),(601,59,0,'wordpress'),(602,60,0,'wordpress'),(603,60,0,'wordpress'),(604,60,0,'wordpress'),(605,60,0,'wordpress'),(606,59,0,'wordpress'),(607,60,0,'wordpress'),(608,57,0,'wordpress'),(609,58,0,'wordpress'),(610,59,0,'wordpress'),(611,60,0,'wordpress'),(612,61,0,'wordpress'),(613,60,0,'wordpress'),(614,61,0,'wordpress'),(615,61,0,'wordpress'),(616,60,0,'wordpress'),(617,60,0,'wordpress'),(618,60,0,'wordpress'),(619,60,0,'wordpress'),(620,59,0,'wordpress'),(621,60,0,'wordpress'),(622,58,0,'wordpress'),(623,57,0,'wordpress'),(624,58,0,'wordpress'),(625,59,0,'wordpress'),(626,60,0,'wordpress'),(627,61,0,'wordpress'),(628,60,0,'wordpress'),(629,60,0,'wordpress'),(630,61,0,'wordpress'),(631,60,0,'wordpress'),(632,61,0,'wordpress'),(633,59,0,'wordpress'),(634,59,0,'wordpress'),(635,57,0,'wordpress'),(636,58,0,'wordpress'),(637,59,0,'wordpress'),(638,62,1,'wordpress'),(639,59,0,'wordpress'),(640,62,0,'wordpress'),(641,62,0,'wordpress'),(642,62,0,'wordpress'),(643,62,0,'wordpress'),(644,59,0,'wordpress'),(645,62,0,'wordpress'),(646,62,0,'wordpress'),(647,62,0,'wordpress'),(648,62,0,'wordpress'),(649,62,0,'wordpress'),(650,62,0,'wordpress'),(651,63,0,'wordpress'),(652,62,0,'wordpress'),(653,62,0,'wordpress'),(654,62,0,'wordpress'),(655,62,0,'wordpress'),(656,63,0,'wordpress'),(657,62,0,'wordpress'),(658,62,0,'wordpress'),(659,62,0,'wordpress'),(660,62,0,'wordpress'),(661,59,0,'wordpress'),(662,62,0,'wordpress'),(663,63,0,'wordpress'),(664,63,0,'wordpress'),(665,62,0,'wordpress'),(666,62,0,'wordpress'),(667,62,0,'wordpress'),(668,62,0,'wordpress'),(669,64,1,'wordpress'),(672,66,1,'wordpress'),(673,64,0,'wordpress'),(674,66,0,'wordpress'),(675,65,0,'wordpress'),(676,64,0,'wordpress'),(677,64,0,'wordpress'),(678,64,0,'wordpress'),(679,64,0,'wordpress'),(680,64,0,'wordpress'),(681,66,0,'wordpress'),(682,65,0,'wordpress'),(683,64,0,'wordpress'),(684,64,0,'wordpress'),(685,64,0,'wordpress'),(686,64,0,'wordpress'),(687,64,0,'wordpress'),(688,66,0,'wordpress'),(689,64,0,'wordpress'),(690,64,0,'wordpress'),(691,64,0,'wordpress'),(692,66,0,'wordpress'),(693,64,0,'wordpress'),(694,64,0,'wordpress'),(695,66,0,'wordpress'),(696,64,0,'wordpress'),(697,66,0,'wordpress'),(698,64,0,'wordpress'),(699,66,0,'wordpress'),(700,64,0,'wordpress'),(701,64,0,'wordpress'),(702,64,0,'wordpress'),(703,66,0,'wordpress'),(704,66,0,'wordpress'),(705,66,0,'wordpress'),(706,66,0,'wordpress'),(707,66,0,'wordpress'),(708,66,0,'wordpress'),(709,64,0,'wordpress'),(710,64,0,'wordpress'),(711,64,0,'wordpress'),(712,64,0,'wordpress'),(713,64,0,'wordpress'),(714,66,0,'wordpress'),(715,64,0,'wordpress'),(716,64,0,'wordpress'),(717,64,0,'wordpress'),(718,66,0,'wordpress'),(719,66,0,'wordpress'),(720,67,1,'wordpress'),(721,67,0,'wordpress'),(722,67,0,'wordpress'),(723,67,0,'wordpress'),(724,67,0,'wordpress'),(725,67,0,'wordpress'),(726,67,0,'wordpress'),(727,67,0,'wordpress'),(728,67,0,'wordpress'),(729,67,0,'wordpress'),(730,67,0,'wordpress'),(731,67,0,'wordpress'),(732,67,0,'wordpress'),(733,68,0,'wordpress'),(734,67,0,'wordpress'),(735,67,0,'wordpress'),(736,67,0,'wordpress'),(737,67,0,'wordpress'),(738,67,0,'wordpress'),(739,67,0,'wordpress'),(740,67,0,'wordpress'),(741,67,0,'wordpress'),(742,68,0,'wordpress'),(743,67,0,'wordpress'),(744,67,0,'wordpress'),(745,67,0,'wordpress'),(746,67,0,'wordpress'),(747,67,0,'wordpress'),(748,67,0,'wordpress'),(749,67,0,'wordpress'),(750,67,0,'wordpress'),(751,67,0,'wordpress'),(752,67,0,'wordpress'),(753,67,0,'wordpress'),(754,67,0,'wordpress'),(755,67,0,'wordpress'),(756,67,0,'wordpress'),(757,67,0,'wordpress'),(758,67,0,'wordpress'),(759,67,0,'wordpress'),(760,69,1,'wordpress'),(761,70,0,'wordpress'),(762,69,0,'wordpress'),(763,69,0,'wordpress'),(764,69,0,'wordpress'),(765,69,0,'wordpress'),(766,70,0,'wordpress'),(767,69,0,'wordpress'),(768,69,0,'wordpress'),(769,69,0,'wordpress'),(770,69,0,'wordpress'),(771,69,0,'wordpress'),(772,69,0,'wordpress'),(773,69,0,'wordpress'),(774,69,0,'wordpress'),(775,69,0,'wordpress'),(776,69,0,'wordpress'),(777,69,0,'wordpress'),(778,69,0,'wordpress'),(779,69,0,'wordpress'),(780,69,0,'wordpress'),(781,69,0,'wordpress'),(782,69,0,'wordpress'),(783,69,0,'wordpress'),(784,70,0,'wordpress'),(785,70,0,'wordpress'),(786,69,0,'wordpress'),(787,69,0,'wordpress'),(788,69,0,'wordpress'),(789,69,0,'wordpress'),(790,69,0,'wordpress'),(791,70,0,'wordpress'),(792,69,0,'wordpress'),(793,69,0,'wordpress'),(794,69,0,'wordpress'),(795,69,0,'wordpress'),(796,71,1,'wordpress'),(797,71,0,'wordpress'),(798,71,0,'wordpress'),(799,71,0,'wordpress'),(800,71,0,'wordpress'),(801,72,0,'wordpress'),(802,71,0,'wordpress'),(803,71,0,'wordpress'),(804,71,0,'wordpress'),(805,72,0,'wordpress'),(806,71,0,'wordpress'),(807,71,0,'wordpress'),(808,71,0,'wordpress'),(809,71,0,'wordpress'),(810,71,0,'wordpress'),(811,71,0,'wordpress'),(812,71,0,'wordpress'),(813,71,0,'wordpress'),(814,71,0,'wordpress'),(815,71,0,'wordpress'),(816,71,0,'wordpress'),(817,71,0,'wordpress'),(818,71,0,'wordpress'),(819,71,0,'wordpress'),(820,71,0,'wordpress'),(821,71,0,'wordpress'),(822,71,0,'wordpress'),(823,71,0,'wordpress'),(824,71,0,'wordpress'),(825,71,0,'wordpress'),(826,71,0,'wordpress'),(827,71,0,'wordpress'),(828,72,0,'wordpress'),(829,72,0,'wordpress'),(830,72,0,'wordpress'),(831,72,0,'wordpress'),(832,72,0,'wordpress'),(833,71,0,'wordpress'),(834,72,0,'wordpress'),(835,71,0,'wordpress'),(836,71,0,'wordpress'),(837,72,0,'wordpress'),(838,71,0,'wordpress'),(839,72,0,'wordpress'),(840,73,1,'wordpress'),(841,73,0,'wordpress'),(842,73,0,'wordpress'),(843,74,0,'wordpress'),(844,73,0,'wordpress'),(845,73,0,'wordpress'),(846,73,0,'wordpress'),(847,73,0,'wordpress'),(848,73,0,'wordpress'),(849,73,0,'wordpress'),(850,73,0,'wordpress'),(851,73,0,'wordpress'),(852,73,0,'wordpress'),(853,73,0,'wordpress'),(854,73,0,'wordpress'),(855,73,0,'wordpress'),(856,73,0,'wordpress'),(857,73,0,'wordpress'),(858,74,0,'wordpress'),(859,74,0,'wordpress'),(860,73,0,'wordpress'),(861,73,0,'wordpress'),(862,73,0,'wordpress'),(863,73,0,'wordpress'),(864,73,0,'wordpress'),(865,73,0,'wordpress'),(866,73,0,'wordpress'),(867,73,0,'wordpress'),(868,73,0,'wordpress'),(869,74,0,'wordpress'),(870,73,0,'wordpress'),(871,73,0,'wordpress'),(872,75,1,'wordpress'),(873,75,0,'wordpress'),(874,75,0,'wordpress'),(875,76,0,'wordpress'),(876,75,0,'wordpress'),(877,75,0,'wordpress'),(878,75,0,'wordpress'),(879,75,0,'wordpress'),(880,75,0,'wordpress'),(881,75,0,'wordpress'),(882,75,0,'wordpress'),(883,75,0,'wordpress'),(884,75,0,'wordpress'),(885,75,0,'wordpress'),(886,75,0,'wordpress'),(887,75,0,'wordpress'),(888,75,0,'wordpress'),(889,76,0,'wordpress'),(890,76,0,'wordpress'),(891,75,0,'wordpress'),(892,75,0,'wordpress'),(893,75,0,'wordpress'),(894,75,0,'wordpress'),(895,75,0,'wordpress'),(896,75,0,'wordpress'),(897,75,0,'wordpress'),(898,76,0,'wordpress'),(899,76,0,'wordpress'),(900,76,0,'wordpress'),(901,75,0,'wordpress'),(902,75,0,'wordpress'),(903,77,1,'wordpress'),(904,77,0,'wordpress'),(905,78,0,'wordpress'),(906,79,0,'wordpress'),(907,79,0,'wordpress'),(908,77,0,'wordpress'),(909,77,0,'wordpress'),(910,78,0,'wordpress'),(911,77,0,'wordpress'),(912,78,0,'wordpress'),(913,78,0,'wordpress'),(914,77,0,'wordpress'),(915,77,0,'wordpress'),(916,78,0,'wordpress'),(917,77,0,'wordpress'),(918,78,0,'wordpress'),(919,78,0,'wordpress'),(920,78,0,'wordpress'),(921,78,0,'wordpress'),(922,77,0,'wordpress'),(923,77,0,'wordpress'),(924,78,0,'wordpress'),(925,77,0,'wordpress'),(926,77,0,'wordpress'),(927,78,0,'wordpress'),(928,77,0,'wordpress'),(929,77,0,'wordpress'),(930,79,0,'wordpress'),(931,79,0,'wordpress'),(932,78,0,'wordpress'),(933,79,0,'wordpress'),(934,78,0,'wordpress'),(935,77,0,'wordpress'),(936,78,0,'wordpress'),(937,78,0,'wordpress'),(938,78,0,'wordpress'),(939,78,0,'wordpress'),(940,77,0,'wordpress'),(941,80,1,'wordpress'),(942,80,0,'wordpress'),(943,80,0,'wordpress'),(944,80,0,'wordpress'),(945,80,0,'wordpress'),(946,80,0,'wordpress'),(947,80,0,'wordpress'),(948,80,0,'wordpress'),(949,80,0,'wordpress'),(950,80,0,'wordpress'),(951,80,0,'wordpress'),(952,80,0,'wordpress'),(953,80,0,'wordpress'),(954,80,0,'wordpress'),(955,81,0,'wordpress'),(956,80,0,'wordpress'),(957,80,0,'wordpress'),(958,81,0,'wordpress'),(959,80,0,'wordpress'),(960,80,0,'wordpress'),(961,80,0,'wordpress'),(962,80,0,'wordpress'),(963,80,0,'wordpress'),(964,80,0,'wordpress'),(965,80,0,'wordpress'),(966,80,0,'wordpress'),(967,80,0,'wordpress'),(968,80,0,'wordpress'),(969,80,0,'wordpress'),(970,80,0,'wordpress'),(971,83,1,'wordpress'),(972,83,0,'wordpress'),(973,83,0,'wordpress'),(974,83,0,'wordpress'),(975,82,0,'wordpress'),(976,83,0,'wordpress'),(977,83,0,'wordpress'),(978,83,0,'wordpress'),(979,82,0,'wordpress'),(980,83,0,'wordpress'),(981,83,0,'wordpress'),(982,82,0,'wordpress'),(983,83,0,'wordpress'),(984,83,0,'wordpress'),(985,83,0,'wordpress'),(986,82,0,'wordpress'),(987,83,0,'wordpress'),(988,82,0,'wordpress'),(989,83,0,'wordpress'),(990,83,0,'wordpress'),(991,83,0,'wordpress'),(992,83,0,'wordpress'),(993,83,0,'wordpress'),(994,83,0,'wordpress'),(995,83,0,'wordpress'),(996,83,0,'wordpress'),(997,83,0,'wordpress'),(998,82,0,'wordpress'),(999,83,0,'wordpress'),(1000,83,0,'wordpress'),(1001,82,0,'wordpress'),(1002,82,0,'wordpress'),(1003,82,0,'wordpress'),(1004,82,0,'wordpress'),(1005,85,0,'wordpress'),(1006,85,0,'wordpress'),(1007,84,0,'wordpress'),(1008,84,0,'wordpress'),(1009,86,0,'wordpress'),(1010,85,0,'wordpress'),(1011,85,0,'wordpress'),(1012,85,0,'wordpress'),(1013,85,0,'wordpress'),(1014,84,0,'wordpress'),(1015,86,0,'wordpress'),(1016,85,0,'wordpress'),(1017,85,0,'wordpress'),(1018,85,0,'wordpress'),(1019,85,0,'wordpress'),(1020,85,0,'wordpress'),(1021,84,0,'wordpress'),(1022,84,0,'wordpress'),(1023,84,0,'wordpress'),(1024,84,0,'wordpress'),(1025,84,0,'wordpress'),(1026,85,0,'wordpress'),(1027,85,0,'wordpress'),(1028,86,0,'wordpress'),(1029,84,0,'wordpress'),(1030,85,0,'wordpress'),(1031,86,0,'wordpress'),(1032,85,0,'wordpress'),(1033,86,0,'wordpress'),(1034,86,0,'wordpress'),(1035,87,1,'wordpress'),(1036,87,0,'wordpress'),(1037,87,0,'wordpress'),(1038,87,0,'wordpress'),(1039,87,0,'wordpress'),(1040,87,0,'wordpress'),(1041,87,0,'wordpress'),(1042,87,0,'wordpress'),(1043,87,0,'wordpress'),(1044,87,0,'wordpress'),(1045,87,0,'wordpress'),(1046,87,0,'wordpress'),(1047,87,0,'wordpress'),(1048,87,0,'wordpress'),(1049,87,0,'wordpress'),(1050,88,1,'wordpress'),(1051,88,0,'wordpress'),(1052,88,0,'wordpress'),(1053,88,0,'wordpress'),(1054,88,0,'wordpress'),(1055,88,0,'wordpress'),(1056,88,0,'wordpress'),(1057,88,0,'wordpress'),(1058,88,0,'wordpress'),(1059,88,0,'wordpress'),(1060,88,0,'wordpress'),(1061,88,0,'wordpress'),(1062,88,0,'wordpress'),(1063,88,0,'wordpress'),(1064,88,0,'wordpress'),(1065,88,0,'wordpress'),(1066,88,0,'wordpress');
/*!40000 ALTER TABLE `wp_yop_poll_voters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop_poll_votes_custom_fields`
--

DROP TABLE IF EXISTS `wp_yop_poll_votes_custom_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop_poll_votes_custom_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `poll_id` int(11) NOT NULL,
  `vote_id` varchar(255) NOT NULL,
  `custom_field_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `user_type` enum('facebook','wordpress','anonymous','default') NOT NULL DEFAULT 'default',
  `custom_field_value` text NOT NULL,
  `tr_id` varchar(255) NOT NULL,
  `vote_date` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `poll_id` (`poll_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop_poll_votes_custom_fields`
--

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

--
-- Table structure for table `wp_yop_pollmeta`
--

DROP TABLE IF EXISTS `wp_yop_pollmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop_pollmeta` (
  `meta_id` int(11) NOT NULL AUTO_INCREMENT,
  `yop_poll_id` int(11) NOT NULL,
  `meta_key` varchar(255) NOT NULL,
  `meta_value` longtext NOT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `yop_poll_id` (`yop_poll_id`)
) ENGINE=MyISAM AUTO_INCREMENT=90 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop_pollmeta`
--

LOCK TABLES `wp_yop_pollmeta` WRITE;
/*!40000 ALTER TABLE `wp_yop_pollmeta` DISABLE KEYS */;
INSERT INTO `wp_yop_pollmeta` VALUES (58,58,'options','a:10:{s:17:\"is_default_answer\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"35\";s:10:\"start_date\";s:19:\"2014-10-26 14:44:35\";s:41:\"singular_answer_result_votes_number_label\";s:10:\"Interested\";s:39:\"plural_answer_result_votes_number_label\";s:10:\"Interested\";s:23:\"view_results_link_label\";s:10:\"Interested\";s:28:\"view_back_to_vote_link_label\";s:5:\"Back.\";s:18:\"message_after_vote\";s:1:\".\";s:8:\"template\";s:2:\"10\";s:24:\"schedule_reset_poll_date\";i:1379708424;}'),(59,59,'options','a:10:{s:17:\"is_default_answer\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"35\";s:10:\"start_date\";s:19:\"2014-10-26 14:47:04\";s:41:\"singular_answer_result_votes_number_label\";s:10:\"Interested\";s:39:\"plural_answer_result_votes_number_label\";s:10:\"Interested\";s:23:\"view_results_link_label\";s:10:\"Interested\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:18:\"message_after_vote\";s:0:\"\";s:8:\"template\";s:2:\"10\";s:24:\"schedule_reset_poll_date\";i:1379708424;}'),(66,66,'options','a:9:{s:17:\"is_default_answer\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"35\";s:10:\"start_date\";s:19:\"2014-11-09 22:22:32\";s:18:\"message_after_vote\";s:0:\"\";s:8:\"template\";s:2:\"10\";s:24:\"schedule_reset_poll_date\";i:1379708424;s:24:\"send_email_notifications\";s:3:\"yes\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:19:\"Loppet Participants\";}'),(82,82,'options','a:9:{s:17:\"is_default_answer\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"34\";s:10:\"start_date\";s:19:\"2015-01-20 08:38:34\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"AWAY\";s:39:\"plural_answer_result_votes_number_label\";s:4:\"AWAY\";s:23:\"view_results_link_label\";s:15:\"SEE who is AWAY\";s:18:\"message_after_vote\";s:0:\"\";s:8:\"template\";s:1:\"7\";s:24:\"schedule_reset_poll_date\";i:1379708424;}'),(83,83,'options','a:8:{s:17:\"is_default_answer\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"34\";s:10:\"start_date\";s:19:\"2015-01-20 08:40:49\";s:41:\"singular_answer_result_votes_number_label\";s:6:\"COMING\";s:39:\"plural_answer_result_votes_number_label\";s:6:\"COMING\";s:23:\"view_results_link_label\";s:17:\"See Who is COMING\";s:8:\"template\";s:1:\"4\";s:24:\"schedule_reset_poll_date\";i:1379708424;}'),(80,80,'options','a:10:{s:17:\"is_default_answer\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"34\";s:10:\"start_date\";s:19:\"2015-01-12 22:15:35\";s:23:\"view_results_link_label\";s:20:\"See who is attending\";s:28:\"view_back_to_vote_link_label\";s:5:\"Back \";s:8:\"template\";s:1:\"4\";s:24:\"schedule_reset_poll_date\";i:1379708424;s:24:\"send_email_notifications\";s:3:\"yes\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:13:\"COMING Jan 16\";}'),(81,81,'options','a:13:{s:17:\"is_default_answer\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"30\";s:10:\"start_date\";s:19:\"2015-01-12 22:19:07\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"AWAY\";s:17:\"vote_button_label\";s:4:\"AWAY\";s:23:\"view_results_link_label\";s:15:\"See who is away\";s:28:\"view_back_to_vote_link_label\";s:4:\"Back\";s:18:\"message_after_vote\";s:0:\"\";s:8:\"template\";s:1:\"7\";s:24:\"schedule_reset_poll_date\";i:1379708424;s:24:\"send_email_notifications\";s:3:\"yes\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:11:\"AWAY Jan 16\";}'),(84,84,'options','a:8:{s:17:\"is_default_answer\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"34\";s:10:\"start_date\";s:19:\"2015-01-25 19:47:51\";s:41:\"singular_answer_result_votes_number_label\";s:11:\"Video at P8\";s:39:\"plural_answer_result_votes_number_label\";s:11:\"Video at P8\";s:23:\"view_results_link_label\";s:17:\"See who is coming\";s:8:\"template\";s:2:\"10\";s:24:\"schedule_reset_poll_date\";i:1379708424;}'),(85,85,'options','a:6:{s:17:\"is_default_answer\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"30\";s:10:\"start_date\";s:19:\"2015-01-25 19:49:57\";s:28:\"view_back_to_vote_link_label\";s:5:\"Back \";s:8:\"template\";s:1:\"3\";s:24:\"schedule_reset_poll_date\";i:1379708424;}'),(86,86,'options','a:9:{s:17:\"is_default_answer\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"30\";s:10:\"start_date\";s:19:\"2015-01-25 19:51:18\";s:41:\"singular_answer_result_votes_number_label\";s:4:\"AWAY\";s:39:\"plural_answer_result_votes_number_label\";s:4:\"AWAY\";s:23:\"view_results_link_label\";s:11:\"Who is AWAY\";s:28:\"view_back_to_vote_link_label\";s:5:\"Back \";s:8:\"template\";s:2:\"13\";s:24:\"schedule_reset_poll_date\";i:1379708424;}'),(87,87,'options','a:8:{s:17:\"is_default_answer\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"30\";s:10:\"start_date\";s:19:\"2015-03-02 20:03:03\";s:41:\"singular_answer_result_votes_number_label\";s:7:\"SKATING\";s:39:\"plural_answer_result_votes_number_label\";s:7:\"SKATING\";s:23:\"view_results_link_label\";s:18:\"See who is skating\";s:8:\"template\";s:1:\"4\";s:24:\"schedule_reset_poll_date\";i:1379708424;}'),(88,88,'options','a:9:{s:17:\"is_default_answer\";s:3:\"yes\";s:29:\"allow_multiple_answers_number\";s:2:\"35\";s:10:\"start_date\";s:19:\"2015-03-11 08:35:31\";s:23:\"view_results_link_label\";s:17:\"See who is coming\";s:8:\"template\";s:1:\"4\";s:24:\"schedule_reset_poll_date\";i:1379708424;s:24:\"send_email_notifications\";s:3:\"yes\";s:30:\"email_notifications_recipients\";s:16:\"jholden@magma.ca\";s:27:\"email_notifications_subject\";s:18:\"Attending March 13\";}'),(89,89,'options','a:2:{s:13:\"poll_page_url\";s:0:\"\";s:27:\"has_auto_generate_poll_page\";s:2:\"no\";}');
/*!40000 ALTER TABLE `wp_yop_pollmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yop_polls`
--

DROP TABLE IF EXISTS `wp_yop_polls`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yop_polls` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `poll_author` bigint(20) NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL,
  `question` text NOT NULL,
  `start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `total_votes` int(11) NOT NULL,
  `total_answers` int(11) NOT NULL,
  `status` varchar(255) NOT NULL,
  `last_modified` datetime NOT NULL,
  `date_added` datetime NOT NULL,
  `show_in_archive` enum('yes','no') NOT NULL DEFAULT 'yes',
  `archive_order` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=90 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yop_polls`
--

LOCK TABLES `wp_yop_polls` WRITE;
/*!40000 ALTER TABLE `wp_yop_polls` DISABLE KEYS */;
INSERT INTO `wp_yop_polls` VALUES (58,1,'Gatineau Park Yurt Trip between March 1 and March 3','Interested? Type name and hit  SEND','2014-10-26 14:44:35','9999-12-31 23:59:59',7,7,'open','2014-10-26 14:45:38','2014-10-26 14:43:19','yes',1),(59,1,'Gatineau Park Yurt Trip between March 8 and March 10','Interested? Type name and hit  SEND','2014-10-26 14:47:04','9999-12-31 23:59:59',13,13,'open','2014-10-26 14:47:44','2014-10-26 14:46:15','yes',1),(66,1,'Loppet Training','Write your name, event distance, Monday or Tuesday and hit  SEND','2014-11-09 22:22:32','9999-12-31 23:59:59',17,17,'open','2014-11-09 22:33:01','2014-11-09 22:20:40','yes',1),(82,1,'AWAY January 23','Type NAME,  hit SEND','2015-01-20 08:38:34','9999-12-31 23:59:59',10,10,'open','2015-01-20 08:42:58','2015-01-20 08:37:24','yes',1),(83,1,'COMING on January 23','Type NAME,  hit SEND','2015-01-20 08:40:49','9999-12-31 23:59:59',24,24,'open','2015-01-20 08:41:53','2015-01-20 08:39:40','yes',1),(80,1,'Coming on January 16','Type NAME,  hit SEND','2015-01-12 22:15:35','9999-12-31 23:59:59',28,28,'open','2015-01-12 22:17:38','2015-01-12 22:14:07','yes',1),(81,1,'AWAY January 16','Type NAME,  hit SEND','2015-01-12 22:19:07','9999-12-31 23:59:59',2,2,'open','2015-01-12 22:19:58','2015-01-12 22:18:02','yes',1),(84,1,'Technique and Video (Green) Jan 30','Type NAME,  hit SEND','2015-01-25 19:47:51','9999-12-31 23:59:59',9,9,'open','2015-01-25 20:12:19','2015-01-25 19:46:36','yes',1),(85,1,'Coming Jan 30  (Blue, Purple, Red groups)','Type NAME,  hit SEND','2015-01-25 19:49:57','9999-12-31 23:59:59',15,15,'open','2015-01-25 20:11:40','2015-01-25 19:48:38','yes',1),(86,1,'AWAY January 30','Type NAME,  hit SEND','2015-01-25 19:51:18','9999-12-31 23:59:59',6,6,'open','2015-01-25 19:52:20','2015-01-25 19:50:18','yes',1),(87,1,'ATTENDING SKATE SESSION March 6','Type NAME,  hit SEND','2015-03-02 20:03:03','9999-12-31 23:59:59',15,15,'open','2015-03-02 20:08:27','2015-03-02 20:02:01','yes',1),(88,1,'ATTENDING SKATE Session March 13','Type NAME,  hit SEND','2015-03-11 08:35:31','9999-12-31 23:59:59',17,17,'open','2015-03-11 08:35:51','2015-03-02 20:08:42','yes',1),(89,1,'ATTENDING SKATE SESSION March 6 - clone1','Type NAME,  hit SEND','2015-03-02 20:03:03','9999-12-31 23:59:59',0,0,'open','2015-03-11 08:33:45','2015-03-11 08:33:45','yes',2);
/*!40000 ALTER TABLE `wp_yop_polls` 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 2021-01-16 13:06:35
