-- phpMyAdmin SQL Dump
-- version 4.0.10.7
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Dec 05, 2015 at 04:53 PM
-- Server version: 5.5.42-cll
-- PHP Version: 5.4.23

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Database: `saviwebc_harpcreativedb01`
--

-- --------------------------------------------------------

--
-- Table structure for table `exp_accessories`
--

CREATE TABLE IF NOT EXISTS `exp_accessories` (
  `accessory_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `class` varchar(75) NOT NULL DEFAULT '',
  `member_groups` varchar(255) NOT NULL DEFAULT 'all',
  `controllers` text,
  `accessory_version` varchar(12) NOT NULL,
  PRIMARY KEY (`accessory_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `exp_accessories`
--

INSERT INTO `exp_accessories` (`accessory_id`, `class`, `member_groups`, `controllers`, `accessory_version`) VALUES
(1, 'Expressionengine_info_acc', '1|5', 'addons|addons_accessories|addons_extensions|addons_fieldtypes|addons_modules|addons_plugins|admin_content|admin_system|content|content_edit|content_files|content_files_modal|content_publish|design|homepage|members|myaccount|tools|tools_communicate|tools_data|tools_logs|tools_utilities', '1.0');

-- --------------------------------------------------------

--
-- Table structure for table `exp_actions`
--

CREATE TABLE IF NOT EXISTS `exp_actions` (
  `action_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `class` varchar(50) NOT NULL,
  `method` varchar(50) NOT NULL,
  `csrf_exempt` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`action_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=19 ;

--
-- Dumping data for table `exp_actions`
--

INSERT INTO `exp_actions` (`action_id`, `class`, `method`, `csrf_exempt`) VALUES
(1, 'Email', 'send_email', 0),
(2, 'Search', 'do_search', 1),
(3, 'Channel', 'submit_entry', 0),
(4, 'Channel', 'filemanager_endpoint', 0),
(5, 'Channel', 'smiley_pop', 0),
(6, 'Channel', 'combo_loader', 0),
(7, 'Member', 'registration_form', 0),
(8, 'Member', 'register_member', 0),
(9, 'Member', 'activate_member', 0),
(10, 'Member', 'member_login', 0),
(11, 'Member', 'member_logout', 0),
(12, 'Member', 'send_reset_token', 0),
(13, 'Member', 'process_reset_password', 0),
(14, 'Member', 'send_member_email', 0),
(15, 'Member', 'update_un_pw', 0),
(16, 'Member', 'member_search', 0),
(17, 'Member', 'member_delete', 0),
(18, 'Rte', 'get_js', 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_captcha`
--

CREATE TABLE IF NOT EXISTS `exp_captcha` (
  `captcha_id` bigint(13) unsigned NOT NULL AUTO_INCREMENT,
  `date` int(10) unsigned NOT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `word` varchar(20) NOT NULL,
  PRIMARY KEY (`captcha_id`),
  KEY `word` (`word`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_categories`
--

CREATE TABLE IF NOT EXISTS `exp_categories` (
  `cat_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_id` int(6) unsigned NOT NULL,
  `parent_id` int(4) unsigned NOT NULL,
  `cat_name` varchar(100) NOT NULL,
  `cat_url_title` varchar(75) NOT NULL,
  `cat_description` text,
  `cat_image` varchar(120) DEFAULT NULL,
  `cat_order` int(4) unsigned NOT NULL,
  PRIMARY KEY (`cat_id`),
  KEY `group_id` (`group_id`),
  KEY `cat_name` (`cat_name`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `exp_categories`
--

INSERT INTO `exp_categories` (`cat_id`, `site_id`, `group_id`, `parent_id`, `cat_name`, `cat_url_title`, `cat_description`, `cat_image`, `cat_order`) VALUES
(1, 1, 1, 0, 'Design', 'graphic-design', 'From print design & packaging, to point of sale & exhibitions. Our design is engaging & delivers a clear message.', '{filedir_2}graphic-design.png', 1),
(2, 1, 1, 0, 'Online', 'online', 'Our web design & build team offer bespoke designs & layout, creating eye-catching & easy to use websites.', '{filedir_2}online.png', 3),
(3, 1, 1, 0, 'Events', 'events', 'We create & deliver bespoke events that are as unique as your business.', '{filedir_2}events.png', 4),
(4, 1, 1, 0, 'PR', 'pr', 'Catch the attention of your customers with innovative PR stunts and news stories.', '{filedir_2}pr.png', 5),
(5, 1, 1, 0, 'Marketing', 'marketing', 'Reach out to your target audience with a one off campaign or a full marketing strategy. ', '{filedir_2}marketing.png', 2),
(6, 1, 1, 0, 'Film', 'film', 'We love making films! We offer a full pre & post production service from concept to completion.', '{filedir_2}film.png', 6);

-- --------------------------------------------------------

--
-- Table structure for table `exp_category_fields`
--

CREATE TABLE IF NOT EXISTS `exp_category_fields` (
  `field_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_id` int(4) unsigned NOT NULL,
  `field_name` varchar(32) NOT NULL DEFAULT '',
  `field_label` varchar(50) NOT NULL DEFAULT '',
  `field_type` varchar(12) NOT NULL DEFAULT 'text',
  `field_list_items` text NOT NULL,
  `field_maxl` smallint(3) NOT NULL DEFAULT '128',
  `field_ta_rows` tinyint(2) NOT NULL DEFAULT '8',
  `field_default_fmt` varchar(40) NOT NULL DEFAULT 'none',
  `field_show_fmt` char(1) NOT NULL DEFAULT 'y',
  `field_text_direction` char(3) NOT NULL DEFAULT 'ltr',
  `field_required` char(1) NOT NULL DEFAULT 'n',
  `field_order` int(3) unsigned NOT NULL,
  PRIMARY KEY (`field_id`),
  KEY `site_id` (`site_id`),
  KEY `group_id` (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_category_field_data`
--

CREATE TABLE IF NOT EXISTS `exp_category_field_data` (
  `cat_id` int(4) unsigned NOT NULL,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_id` int(4) unsigned NOT NULL,
  PRIMARY KEY (`cat_id`),
  KEY `site_id` (`site_id`),
  KEY `group_id` (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `exp_category_field_data`
--

INSERT INTO `exp_category_field_data` (`cat_id`, `site_id`, `group_id`) VALUES
(1, 1, 1),
(2, 1, 1),
(3, 1, 1),
(4, 1, 1),
(5, 1, 1),
(6, 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `exp_category_groups`
--

CREATE TABLE IF NOT EXISTS `exp_category_groups` (
  `group_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_name` varchar(50) NOT NULL,
  `sort_order` char(1) NOT NULL DEFAULT 'a',
  `exclude_group` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `field_html_formatting` char(4) NOT NULL DEFAULT 'all',
  `can_edit_categories` text,
  `can_delete_categories` text,
  PRIMARY KEY (`group_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `exp_category_groups`
--

INSERT INTO `exp_category_groups` (`group_id`, `site_id`, `group_name`, `sort_order`, `exclude_group`, `field_html_formatting`, `can_edit_categories`, `can_delete_categories`) VALUES
(1, 1, 'Service categories', 'c', 0, 'all', '6', '');

-- --------------------------------------------------------

--
-- Table structure for table `exp_category_posts`
--

CREATE TABLE IF NOT EXISTS `exp_category_posts` (
  `entry_id` int(10) unsigned NOT NULL,
  `cat_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`entry_id`,`cat_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `exp_category_posts`
--

INSERT INTO `exp_category_posts` (`entry_id`, `cat_id`) VALUES
(6, 1),
(7, 1),
(8, 2),
(9, 3),
(10, 4),
(11, 5),
(12, 6),
(13, 2),
(16, 1),
(16, 4),
(16, 5),
(17, 2),
(18, 1),
(18, 5),
(19, 1),
(20, 1),
(21, 1),
(22, 1),
(23, 1),
(23, 3),
(23, 4),
(23, 5),
(24, 1),
(25, 2),
(26, 2),
(27, 2),
(29, 2),
(29, 4),
(30, 4),
(31, 1),
(31, 4),
(35, 3),
(36, 1),
(37, 1),
(37, 2),
(37, 4),
(37, 5),
(38, 3),
(39, 1),
(40, 6),
(41, 6),
(42, 6),
(43, 6),
(44, 6),
(45, 6),
(46, 1),
(47, 1),
(48, 1),
(49, 4),
(51, 3),
(52, 1),
(57, 1),
(58, 1),
(59, 1),
(60, 1),
(60, 2),
(61, 1),
(61, 2),
(62, 2),
(63, 1),
(64, 1),
(66, 1),
(67, 1),
(68, 1),
(69, 1),
(70, 1),
(71, 1),
(73, 1),
(77, 2),
(78, 2),
(79, 2),
(80, 2),
(81, 2),
(82, 2);

-- --------------------------------------------------------

--
-- Table structure for table `exp_channels`
--

CREATE TABLE IF NOT EXISTS `exp_channels` (
  `channel_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `channel_name` varchar(40) NOT NULL,
  `channel_title` varchar(100) NOT NULL,
  `channel_url` varchar(100) NOT NULL,
  `channel_description` varchar(255) DEFAULT NULL,
  `channel_lang` varchar(12) NOT NULL,
  `total_entries` mediumint(8) NOT NULL DEFAULT '0',
  `total_comments` mediumint(8) NOT NULL DEFAULT '0',
  `last_entry_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_comment_date` int(10) unsigned NOT NULL DEFAULT '0',
  `cat_group` varchar(255) DEFAULT NULL,
  `status_group` int(4) unsigned DEFAULT NULL,
  `deft_status` varchar(50) NOT NULL DEFAULT 'open',
  `field_group` int(4) unsigned DEFAULT NULL,
  `search_excerpt` int(4) unsigned DEFAULT NULL,
  `deft_category` varchar(60) DEFAULT NULL,
  `deft_comments` char(1) NOT NULL DEFAULT 'y',
  `channel_require_membership` char(1) NOT NULL DEFAULT 'y',
  `channel_max_chars` int(5) unsigned DEFAULT NULL,
  `channel_html_formatting` char(4) NOT NULL DEFAULT 'all',
  `channel_allow_img_urls` char(1) NOT NULL DEFAULT 'y',
  `channel_auto_link_urls` char(1) NOT NULL DEFAULT 'n',
  `channel_notify` char(1) NOT NULL DEFAULT 'n',
  `channel_notify_emails` varchar(255) DEFAULT NULL,
  `comment_url` varchar(80) DEFAULT NULL,
  `comment_system_enabled` char(1) NOT NULL DEFAULT 'y',
  `comment_require_membership` char(1) NOT NULL DEFAULT 'n',
  `comment_use_captcha` char(1) NOT NULL DEFAULT 'n',
  `comment_moderate` char(1) NOT NULL DEFAULT 'n',
  `comment_max_chars` int(5) unsigned DEFAULT '5000',
  `comment_timelock` int(5) unsigned NOT NULL DEFAULT '0',
  `comment_require_email` char(1) NOT NULL DEFAULT 'y',
  `comment_text_formatting` char(5) NOT NULL DEFAULT 'xhtml',
  `comment_html_formatting` char(4) NOT NULL DEFAULT 'safe',
  `comment_allow_img_urls` char(1) NOT NULL DEFAULT 'n',
  `comment_auto_link_urls` char(1) NOT NULL DEFAULT 'y',
  `comment_notify` char(1) NOT NULL DEFAULT 'n',
  `comment_notify_authors` char(1) NOT NULL DEFAULT 'n',
  `comment_notify_emails` varchar(255) DEFAULT NULL,
  `comment_expiration` int(4) unsigned NOT NULL DEFAULT '0',
  `search_results_url` varchar(80) DEFAULT NULL,
  `show_button_cluster` char(1) NOT NULL DEFAULT 'y',
  `rss_url` varchar(80) DEFAULT NULL,
  `enable_versioning` char(1) NOT NULL DEFAULT 'n',
  `max_revisions` smallint(4) unsigned NOT NULL DEFAULT '10',
  `default_entry_title` varchar(100) DEFAULT NULL,
  `url_title_prefix` varchar(80) DEFAULT NULL,
  `live_look_template` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`channel_id`),
  KEY `cat_group` (`cat_group`),
  KEY `status_group` (`status_group`),
  KEY `field_group` (`field_group`),
  KEY `channel_name` (`channel_name`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `exp_channels`
--

INSERT INTO `exp_channels` (`channel_id`, `site_id`, `channel_name`, `channel_title`, `channel_url`, `channel_description`, `channel_lang`, `total_entries`, `total_comments`, `last_entry_date`, `last_comment_date`, `cat_group`, `status_group`, `deft_status`, `field_group`, `search_excerpt`, `deft_category`, `deft_comments`, `channel_require_membership`, `channel_max_chars`, `channel_html_formatting`, `channel_allow_img_urls`, `channel_auto_link_urls`, `channel_notify`, `channel_notify_emails`, `comment_url`, `comment_system_enabled`, `comment_require_membership`, `comment_use_captcha`, `comment_moderate`, `comment_max_chars`, `comment_timelock`, `comment_require_email`, `comment_text_formatting`, `comment_html_formatting`, `comment_allow_img_urls`, `comment_auto_link_urls`, `comment_notify`, `comment_notify_authors`, `comment_notify_emails`, `comment_expiration`, `search_results_url`, `show_button_cluster`, `rss_url`, `enable_versioning`, `max_revisions`, `default_entry_title`, `url_title_prefix`, `live_look_template`) VALUES
(1, 1, 'services', 'Services', 'http://dev.harper-creative.co.uk/', NULL, 'en', 6, 0, 1422811740, 0, '1', 1, 'open', 3, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0),
(2, 1, 'testimonials', 'Testimonials', 'http://dev.harper-creative.co.uk/', NULL, 'en', 8, 0, 1427365980, 0, '1', 1, 'open', 1, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0),
(3, 1, 'static_page', 'Static page', 'http://dev.harper-creative.co.uk/', NULL, 'en', 3, 0, 1422570120, 0, '', 1, 'open', 2, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0),
(4, 1, 'work', 'Work', 'http://dev.harper-creative.co.uk/', NULL, 'en', 55, 0, 1445018520, 0, '1', 2, 'open', 4, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0),
(5, 1, 'single', 'Single', 'http://dev.harper-creative.co.uk/', NULL, 'en', 1, 0, 1422820980, 0, '', NULL, 'open', 5, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0),
(6, 1, 'image_blocks', 'Image blocks', 'http://www.harper-creative.co.uk/', NULL, 'en', 3, 0, 1439151300, 0, '', 1, 'open', 6, NULL, NULL, 'y', 'y', NULL, 'all', 'y', 'n', 'n', NULL, NULL, 'y', 'n', 'n', 'n', 5000, 0, 'y', 'xhtml', 'safe', 'n', 'y', 'n', 'n', NULL, 0, NULL, 'y', NULL, 'n', 10, '', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_data`
--

CREATE TABLE IF NOT EXISTS `exp_channel_data` (
  `entry_id` int(10) unsigned NOT NULL,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `channel_id` int(4) unsigned NOT NULL,
  `field_id_1` text,
  `field_ft_1` tinytext,
  `field_id_2` text,
  `field_ft_2` tinytext,
  `field_id_3` text,
  `field_ft_3` tinytext,
  `field_id_4` text,
  `field_ft_4` tinytext,
  `field_id_5` text,
  `field_ft_5` tinytext,
  `field_id_6` text,
  `field_ft_6` tinytext,
  `field_id_7` text,
  `field_ft_7` tinytext,
  `field_id_8` text,
  `field_ft_8` tinytext,
  `field_id_9` text,
  `field_ft_9` tinytext,
  `field_id_10` text,
  `field_ft_10` tinytext,
  `field_id_11` text,
  `field_ft_11` tinytext,
  `field_id_12` text,
  `field_ft_12` tinytext,
  `field_id_13` text,
  `field_ft_13` tinytext,
  `field_id_14` text,
  `field_ft_14` tinytext,
  `field_id_15` text,
  `field_ft_15` tinytext,
  `field_id_16` text,
  `field_ft_16` tinytext,
  `field_id_17` text,
  `field_ft_17` tinytext,
  `field_id_18` text,
  `field_ft_18` tinytext,
  `field_id_19` text,
  `field_ft_19` tinytext,
  PRIMARY KEY (`entry_id`),
  KEY `channel_id` (`channel_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `exp_channel_data`
--

INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_7`, `field_ft_7`, `field_id_8`, `field_ft_8`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`, `field_id_14`, `field_ft_14`, `field_id_15`, `field_ft_15`, `field_id_16`, `field_ft_16`, `field_id_17`, `field_ft_17`, `field_id_18`, `field_ft_18`, `field_id_19`, `field_ft_19`) VALUES
(1, 1, 2, 'A huge thank you to Harper Creative. All the promotional materials and branding you developed for us was amazing and of an extremely high quality which we really appreciated. As a team you have displayed great professionalism, but always with a personal touch, and throughout have gone that extra mile for us. You have all being a great pleasure to work with, and really look forward to working with you on future projects.', 'xhtml', 'Suzanne Nicholls', 'none', 'Wellbeing Team, City Health Care Partnership CIC', 'none', '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'xhtml', '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(16, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Humber-hop-feature.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', 'YMCA Humber campaign materials and PR stunt.', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(3, 1, 3, '', NULL, '', NULL, '', NULL, 'We are a fresh thinking design and marketing agency based in beautiful East Yorkshire.\n\n  As a creative agency with over 16 year’s experience, we know every business is unique and every project is important. We want to make your business more successful, to connect with your customers and achieve results. With you, we can develop creative ideas for exactly what your business needs. We have a friendly, talented and hardworking team who will make a difference to your business, campaign or social aim.\n\n  We love visiting our clients across the country and can also arrange Skype chats and telephone meetings.\n\n  \n\n  So if there is anything you think we might be able to help you with, just get in touch.', 'xhtml', ' ', 'xhtml', '', NULL, '', 'none', '', 'none', '', 'xhtml', '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(4, 1, 3, '', NULL, '', NULL, '', NULL, 'Whether it’s a new design, marketing, making a film or organising an event, we offer integrated and engaging solutions to meet your aims and your budget.\n\n  We pride ourselves in being an exceptional marketing and design agency, offering unique ideas and creative services that will build the success of your business or organisation.\n\n  As a team we want to help you inspire others, to capture the essence of your product, business or campaign and visually excite those who engage with it.\n\n \n<ul>\n</ul>', 'xhtml', ' ', 'xhtml', '', NULL, '', 'none', '', 'none', '', 'xhtml', '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(64, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Humberside-police-lifestyle.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(59, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Hats-off-to-the-lord-mayor.png', 'none', 'Developing and designing new brand, logo and identity for the the 2015<i> Hats Off to the Lord Mayor’s</i> parade for Hull City Council.&nbsp;', 'xhtml', ' ', 'xhtml', 'Logo, brand and Identity for the 2015 Lord Mayors Parade.', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(5, 1, 3, '', NULL, '', NULL, '', NULL, '<h2>Based in East Yorkshire</h2>\n\n  Harper Creative is an exceptional creative agency developed with innovation and experience. We offer businesses, the public sector and charities a unique and original approach to generate new ideas and deliver creative marketing that produces outstanding results.', 'xhtml', ' ', 'xhtml', '', NULL, '', 'none', '', 'none', '', 'xhtml', '', 'xhtml', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(68, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Double-top-brewery.png', 'none', 'text', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(69, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}ED-campaign.png', 'none', 'text', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(6, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Great-newsome-brewery.png', 'none', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.\n\n  Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.', 'xhtml', ' ', 'xhtml', 'Full operational support - design, marketing, web.', 'none', 'Column', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(19, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}NHS-Mental-health.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(7, 1, 1, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Our designers and project managers will work with you to come up with new ideas or develop your existing materials. From print design, packaging and point of sale, to web design and exhibitions -We think good design should be engaging and deliver a clear message.&nbsp;\n\n Need photography? We can help! Whether it’s product photography, food styling, event documentation or arty shots! Our experienced Photographers and Artistic Director will capture the images you need.\n\n  \n\n We are also able to offer a print and print management service, based on our experience and buying power many of our clients benefit from our cheaper prices with quality printers.', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(8, 1, 1, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Having an online presence in now an essential part of any business or organisations profile. Our web design and build team offer unique designs and bespoke layout to make your website eye-catching and easy to use. We can create fully responsive websites so it will be easy to use on any device.\n\n We will help and support you to learn to use our content management system. This will allow you to easily keep your website up to date by adding text and images yourself in the future.&nbsp;\n\n  \n\n We can also help with writing copy for your website, beautiful photography, online shops, e-newsletters, app development and corporate films to ensure a really professional site to be proud of.&nbsp;', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(9, 1, 1, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'We create bespoke events that are as unique as your business, from organising one of a kind corporate events and original ideas for entertaining, to public engagement and awareness raising events such as the infamous <a href="http://www.thepopuppub.com" target="_blank">Pop Up Pub</a>.\n\n  Every event is designed with clear aims and close collaboration with your business to make your event successful and unforgettable!', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(10, 1, 1, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Most organisations use PR to get a message out into the public realm or to raise awareness of a brand or campaign. Harper Creative can help you with all aspects of this from day to day press liaison, launching a news story or creating innovative PR stunts to catch the attention of your customers and press.&nbsp;\n\n We regularly liaise with trade press for product launches, provide well written and interesting copy for press releases, engage your business with social media and can help you with applying for industry awards. We could even write you a full communications strategy which encompasses a number of these things.', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(11, 1, 1, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'At Harper Creative we can create you a full marketing strategy or a one off campaign to help you reach your target audience.\n\n From online google adwords campaigns and facebook marketing to real world exhibition stands and promotional materials, good marketing will deliver a clear message to the right people in an engaging way that they will remember!', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(12, 1, 1, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'We love making films! Promotional films, corporate films, virals and working with charities to create films to raise awareness of key issues. We offer a full pre and post production service from concept to completion.\n\n Why not take a look at the films we have created so far on <a href="https://vimeo.com/user12364214" target="_blank">our vimeo site</a>.', 'xhtml', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(13, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Sub header', 'none', '{filedir_1}wensleydale-online.png', 'none', 'A quirky and fun website and on-line shop for Wensleydale Brewery. The site has been extremely well received by the client and fans of the brewery. Take a look for yourself.\n\n  <a href="http://www.wensleydalebrewery.co.uk/" title="Wensleydale Brewery" target="_blank">www.wensleydalebrewery.co.uk/</a>', 'xhtml', ' ', 'xhtml', 'A quirky and fun website and on-line shop!', 'none', 'Row', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'none', '', 'xhtml'),
(61, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}All-Occasions-marquees.png', 'none', 'Lorem ipsumdolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendumdolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquentper conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquamultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisisrisus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollisfaucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(14, 1, 5, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '5 South Parade, Leven, Beverley, East Yorkshire, HU17 5LJ', 'none', '01964 543259', 'none', 'hello@harper-creative.co.uk', 'none', 'https://www.facebook.com/pages/Harper-Creative/177299719053094?fref=ts', 'none', 'https://twitter.com/harpercreative', 'none', 'http://vimeo.com/user12364214', 'none', '', 'xhtml'),
(58, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Branding and design', 'none', '{filedir_1}NVW-Share.png', 'none', 'Harper Creative have worked for the National Vegetarian Society on logo, branding, publicity materials, resource pack and advertising for their latest campaign “share”.\n\n  “We found Harper Creative to be responsive, creative and most of all efficient. They were able to distill a lot of competing demands into a coherent identity.” Lynne Elliot CEO\n\n  The Vegetarian Society', 'xhtml', ' ', 'xhtml', 'National Vegetarian Week 2015 (Branding & campaign materials)', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(17, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Daleside-web.png', 'none', 'Design and development of the Brewery website and on-line shop. The site showcases the best of Daleside Brewery and has been well received by our client and Daleside fans alike.', 'xhtml', ' ', 'xhtml', 'Full operational support - design, marketing, web', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(65, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}CPS.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(63, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}bad-ram-brewery.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(18, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Big-issue-foundation.png', 'none', 'Harper Creative have worked with the Big Issue Foundation over the last 4 years developing some of their most iconic campaign materials. Original design concepts, well crafted illustrations and beautiful layout has been as standard across all the work we have delivered. Projects include the Big Night Walk, the Big Sleep Out, The Big Knit, The Big Kick Off and the Big Plan!\n\n  \n\n <o:p> </o:p>', 'xhtml', ' ', 'xhtml', '"Big Night Walk" campaign material concept and original illustrations.', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(57, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Brand design', 'none', '{filedir_1}Trade-chimp.png', 'none', 'We have given full agency support to Trade Chimp, including developing a new brand, PR &amp; marketing strategy, website design &amp; build and mobile &amp; web app development. ', 'xhtml', ' ', 'xhtml', 'Full Design & Marketing support to develop an exciting new business.', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(53, 1, 2, 'We found Harper Creative to be responsive, creative and most of all efficient. They were able to distill a lot of competing demands into a coherent identity.\n\n <o:p> </o:p>', 'xhtml', 'Lynne Elliot CEO', 'none', 'The Vegetarian Society', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(20, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Drinkless.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(21, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Castle-combe-brewery.png', 'none', 'We have been lucky enough to work with Castle Combe from the conception of their business. We have developed their brand, point of sale, bottle labels and website.', 'xhtml', ' ', 'xhtml', 'Created bottle labels, pump clips, point of sale and website.', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(22, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}YMCA-humber.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(23, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Wensleydale-brewery.png', 'none', 'What’s not to like about Wensleydale Brewery! Carl and Geoff steer the great Wensleydale ship with experience beyond their years and create some of the finest ales in Yorkshire. Harper Creative were lucky enough to join Carl and Geoff at the very start of their Journey since talking over the brewery in 2012. From that initial cuppa on a very cold day in North Yorkshire, Harper Creative have developed the breweries full suite of branding, marketing, print and promotional materials, bottle labels and pump clips…. not to mention a cracking website, and possibly the best every brewery launch event which was held at Castle Bolton!\n\n  \n\n <o:p> </o:p>', 'xhtml', ' ', 'xhtml', ' Harper Creative have developed the breweries full suite of branding, marketing, print and promotional materials, bottle labels and pump clips.', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(24, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Tom-logo.png', 'none', 'Harper Creative have been honoured to work with this exceptional East Yorkshire charity on delivering the majority of their road safety campaigns. From concept to delivery we have collaborated with the TOM Foundation on the celebrated <i>Speed Dating</i> events for young people and created unique campaigns to deliver their key messages. We have managed and developed their website which continues to be the legacy of the project.\n\n  Take a look…\n\n  http://www.tomfoundation.co.uk/', 'xhtml', ' ', 'xhtml', 'Website & campaign management for East Yorkshire road safety charity.', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(25, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}rk-atkinson-online.png', 'none', 'R K Atkinson operate a specialist worldwide service for the shipping industry. At Harper Creative we have developed a logo, website and Google PPC campaign to enable them to compete in a global market. We work closely with R K Atkinson’s to continuously develop their marketing strategy. \n\n Take a look…......\n\n  http://www.rkatkinson.co.uk/', 'xhtml', ' ', 'xhtml', 'Logo development, website design & build, Google PPC campaign.', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(26, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}YMCA-online.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', 'Website design & development.', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(27, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Child-dynamix-online.png', 'none', 'Along with providing Design and Marketing support for Child Dinamix, Harper Creative designed and built their website and intranet.\n\n  Take a look…..\n\n  <a href="http://www.childdynamix.co.uk/" title="www.childdynamix.co.uk">http://www.childdynamix.co.uk</a>', 'xhtml', ' ', 'xhtml', 'Branding, design, website and intranet for children''s charity.', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(60, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}All-Occasions-storage.png', 'none', 'Lorem ipsum dolor sit amet, consecteturadipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo\n magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, perinceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer\n lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravidaorci lectus non tellus. Praesent aliquet sem vel mollis faucibus', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(32, 1, 2, 'Harper Creative provide full marketing and design support for the Andrew Jones Pies Brand. This has included the launch of our new foil pie range,  Google PPC campaign management, design/POS, website management, packaging design and product photography. We have found working with the team at Harper Creative to be a productive and enjoyable experience. All work has been delivered to high standard, on time and in budget. We would most definitely recommend working with Harper Creative Ltd.', 'xhtml', 'Tony Risso Gill – MD & Owner ', 'none', 'Little Big Food Company ', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(29, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}drinkless-online.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', 'Alcohol Awareness Week campaign for Hull City Council.', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(30, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'PR and Marketing for the national "Let There Be Beer" campaign.', 'none', '{filedir_1}daleside-morocco.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', 'PR and Marketing for the national "Let There Be Beer" campaign.', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(31, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Branding and design for "Hart Of The Wolds Sportive" official beer.', 'none', '{filedir_1}GNB-maillot-jaune.png', 'none', 'Great Newsome Maillot Jaune is a concept developed by Harper Creative in conjunction with Great Newsome Brewery and Wolds Events.Maillot Jaune has become somewhat iconic as a Yorkshire cycling ale, initially developed for the Heart of the Wolds Sportive, the beer was soon picked out as a firm favourite by both real ale and cycling fans across Yorkshire. Helped by the recent surge in Yorkshire cycling, the Grand Deprt and the New Tour De Yorkshire – Maillot Jaune is set to stay!\n\n  Harper Creative developed all design and promotions for the new ale and if you look closely you can see our HC logo on our rider.', 'xhtml', ' ', 'xhtml', 'Branding and design for "Hart Of The Wolds Sportive" official beer.', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(33, 1, 2, 'We have worked successfully with James and the team over recent months on various design and branding projects. Their approach and ability to meet deadlines has been refreshing and we look forward to working with them in the future.', 'xhtml', 'Matthew Hodgson', 'none', 'Great Newsome Brewery    ', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(34, 1, 2, 'Harper Creative have taken our charity from a position of obscurity within the myriad of charities and worked with us to make the most of the YMCA brand, helping it to stand out in the Humber Region. Overseeing a total refresh of our logo, website and corporate identity Harper Creative have been professional throughout, always working hard to achieve the goals agreed from the outset.', 'xhtml', 'Malcolm Smith', 'none', 'Chief Executive Officer YMCA Humber ', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(35, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Brid-ale-fest.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(36, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Tom-davies-tennis-school.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(37, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}andrew-jones-pies.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(38, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Tom-Speed-Dating.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(39, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}tiger-trust.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(40, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Tigers-film.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(41, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Wellbeing-games-film.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(42, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Meet-the-boozers.png', 'none', 'View all our films at: https://vimeo.com/user12364214', 'xhtml', ' ', 'xhtml', 'Public Health Film ', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(43, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Renew-film.png', 'none', 'This film helped to launch the Renew drug &amp; alcohol service in Hull. The aim of the film is to make young people think about their drinking habits. Our team at Harper Creative were involved on this project from conception to completion.\n\n  View all our films at:\n\n  https://vimeo.com/user12364214/videos', 'xhtml', ' ', 'xhtml', 'Film project for the Hull drug & alcohol service.', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(44, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}GNB-film.png', 'none', 'Great Newsome Brewery’s promotional film offers an insight into the working of the farm and brewery and an opportunity to meet the people behind these fantastic local beers. Our team at Harper Creative directed, filmed and edited the film which is now used on brewery tours and online.\n\n  View all our films at: \n\n  https://vimeo.com/user12364214', 'xhtml', ' ', 'xhtml', 'Brewery Promotional Film.', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(45, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}YMCA-humber-film.png', 'none', 'This film was created by Harper Creative (concept, film, direction, editing) for a celebration event that highlighted the work and positive changes that the YMCA Humber makes to Young peoples lives across the Humber region. The film has been extremely well received and has been used at many conference and events.\n\n  View all our films at:\n\n  https://vimeo.com/user12364214', 'xhtml', ' ', 'xhtml', 'Created to celebrate the successes of YMCA Humber.', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(46, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}onside.jpg', 'none', '​Brand and publicity materials developed for “on side” young peoples sports coaching delivered by Hull City, Hull KR &amp; Hull FC.', 'xhtml', ' ', 'xhtml', 'Brand & Publicity materials for young peoples sports coaching.', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(47, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Bike-Hub.png', 'none', 'The Bike Hub needed a brand developing and publicity materials for their launch event, we love cycling at Harper Creative so were more than happy to help!', 'xhtml', ' ', 'xhtml', 'Brand development and publicity materials.', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(66, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Yorkshire-wolds-cookery-school.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(48, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}8-sail-brewery.png', 'none', 'We are very proud to be part of the design development for the award winning 8 Sail Brewery in Lincolnshire. Working with a very traditional brewery we had the challenge of creating some iconic and modern design initially for the PC range and to then move on the the full bottle range. The designs have been extremely well received both by the brewery and by the punters. The New Bottle designs will be developed during 2015 so watch this space… And if you haven’t tried their ale – Merry Miller is a must! \n\n <o:p> </o:p> <o:p> </o:p> \n\n <o:p> </o:p>', 'xhtml', ' ', 'xhtml', 'Design development for the award winning 8 Sail Brewery in Lincolnshire.', 'none', 'Column', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(49, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Beverley-wine-festival.png', 'none', 'Harper Creative were responsible for the event management, branding development, print promotions, PR and website build for The Beverley Wine and Cheese festival. This event was supported by Infiniti Hull and Vanessa Deli and Café. \n\n  \n\n <o:p> </o:p>', 'xhtml', ' ', 'xhtml', 'Event management, branding development, print promotions, PR and website build.', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(62, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Antony-hatfield.jpg', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(51, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Pop-up-pub.png', 'none', 'An innovative and celebrated concept developed as a tool to engage the general public in a positive discourse around safe drinking. The pop up pub is still one of the the most successful public health campaigns delivered in Hull and has gained more positive media coverage than any other stunt delivered to date (source Hull City Council) The pop up pub takes on the role of a traditional pub, complete with bar, pub furniture, pub walls and drinks (the trick is all the drinks are alcohol free) There have been 5 outings for the pop up pub so far and at best we had over 1000 people visit in a 4 hour period. For more information please visit our dedicated pop up pub site\n\n  - <a href="http://www.thepopuppub.com/" title="">http://www.thepopuppub.com/</a>\n\n  \n\n <o:p> </o:p>', 'xhtml', ' ', 'xhtml', 'Event and PR stunt to engage the general public in a positive discourse around safe drinking.', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(52, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Slow-tour-of-yorkshire.png', 'none', 'Harper Creative worked with Sustrans Uk to develop the branding and promotional materials for the Slow Tour of Yorkshire cycle routes. These routes were developed as an off shoot of the recent Tour De France Grand Depart. Harper Creative developed and print managed all of the promotional materials.The design and materials have been extremely well received and as a result people from across Yorkshire have been taking to their bikes to enjoy these stunning new cycle routes.\n\n  http://www.sustrans.org.uk/ncn/map/themed-routes/slow-tour-yorkshire', 'xhtml', ' ', 'xhtml', 'Branding and promotional materials for the Slow Tour of Yorkshire cycle routes.', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(54, 1, 2, 'I have been very impressed with the quality of the film that Harper Creative produced for us. They understood our brief perfectly and created a resource that will be extremely useful for our service and our service users.&nbsp; I would whole-heartedly recommend Harper Creative.\n\n \n\n  \n\n ', 'xhtml', 'Emily Todd', 'none', 'ReNew - Drug & Alcohol Services - Hull City Council', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(55, 1, 2, 'Working with Harper Creative was a thoroughly positive experience. In particular, we found it difficult choosing a brand by way of internal consensus and I was impressed by James and his teams patience with us and making sure the project kept on track. The Slow Tour brand and designs for promotional materials created have been well received by our supporters across the county. Thank you!\n\n  ', 'xhtml', 'Sheridan Piggott', 'none', 'Sustrans - Smarter Choices Coordinator - Yorkshire and the Humber', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(56, 1, 2, 'Harper Creative helped us to deliver our Christmas themed safety event at St Stephens, Hull over the festive period. From the initial conception of the project idea to the delivery of goods and products Harper Creative were excellent to work with. Their attention to detail, excellent communication and prompt delivery of products ensured that the project ran smoothly.\n\n \n\n ', 'xhtml', 'Emma Tindall', 'none', 'Principal Environmental Health Officer - Hull City Council ', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(67, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Cuppa-mundi.png', 'none', 'Cuppa Mundi is a new coffee Brand and establishment based in Lincolnshire, we''ve loved helping them to develop their image and marketing and we wish them all the best with their new venture!\n\n', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(78, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}DTB-online.png', 'none', 'http://doubletopbrewery.co.uk/', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(79, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Castle-combe-brewery-online.png', 'none', 'To view this website click the link below\n\n<a href="http://www.castlecombebrewery.co.uk/index.html">www.castlecombebrewery.co.uk</a>', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(70, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Logo brand design', 'none', '{filedir_1}Data-to-decisions.png', 'none', 'Lorem ipsum dolor sit amet, consectetur\n\n  adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(71, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, 'Logo brand refresh', 'none', '{filedir_1}activfirst.png', 'none', 'Lorem ipsum dolor sit amet, consectetur\n\n  adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna.\n Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo\n magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per\n inceptos himenaeos', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(72, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}olmec.png', 'none', 'Lorem ipsum dolor sit amet, consectetur\n\n  adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna.\n Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo\n magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per\n inceptos himenaeos', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(73, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}VP-security.png', 'none', 'VP Security\n\n  Harper Creative have fully re-branded VP Security’s printed marketing materials. From letterheads and business cards to a new range of promotional leaflets.', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'xhtml'),
(77, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}GNB-online.png', 'none', 'http://www.greatnewsomebrewery.co.uk/', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(74, 1, 6, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, ' ', 'xhtml');
INSERT INTO `exp_channel_data` (`entry_id`, `site_id`, `channel_id`, `field_id_1`, `field_ft_1`, `field_id_2`, `field_ft_2`, `field_id_3`, `field_ft_3`, `field_id_4`, `field_ft_4`, `field_id_5`, `field_ft_5`, `field_id_6`, `field_ft_6`, `field_id_7`, `field_ft_7`, `field_id_8`, `field_ft_8`, `field_id_9`, `field_ft_9`, `field_id_10`, `field_ft_10`, `field_id_11`, `field_ft_11`, `field_id_12`, `field_ft_12`, `field_id_13`, `field_ft_13`, `field_id_14`, `field_ft_14`, `field_id_15`, `field_ft_15`, `field_id_16`, `field_ft_16`, `field_id_17`, `field_ft_17`, `field_id_18`, `field_ft_18`, `field_id_19`, `field_ft_19`) VALUES
(75, 1, 6, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, ' ', 'xhtml'),
(76, 1, 6, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, ' ', 'xhtml'),
(80, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}inside-leadership-online.png', 'none', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at enim facilisis, bibendum dolor quis, facilisis urna. Mauris in nulla mattis, commodo ligula quis, dictum tortor. Morbi ut justo magna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Quisque id nisl ut lorem aliquam ultricies non in ante. Duis faucibus nulla sed nisi lacinia, at molestie libero suscipit. Integer lobortis, arcu eu bibendum malesuada, ipsum ipsum facilisis risus, id gravida orci lectus non tellus. Praesent aliquet sem vel mollis faucibus.', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(81, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}Go-soup-online.png', 'none', 'To view this website click the link below\n\n<a href="To view this website click the link below">www.gosoup.co.uk/</a>', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL),
(82, 1, 4, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', 'none', '{filedir_1}The-Day-online.png', 'none', '<a href="http://www.thedaybeverley.co.uk/">www.thedaybeverley.co.uk/</a>', 'xhtml', ' ', 'xhtml', '', 'none', 'Row', 'none', '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL, '', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_entries_autosave`
--

CREATE TABLE IF NOT EXISTS `exp_channel_entries_autosave` (
  `entry_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `original_entry_id` int(10) unsigned NOT NULL,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `channel_id` int(4) unsigned NOT NULL,
  `author_id` int(10) unsigned NOT NULL DEFAULT '0',
  `forum_topic_id` int(10) unsigned DEFAULT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `title` varchar(100) NOT NULL,
  `url_title` varchar(75) NOT NULL,
  `status` varchar(50) NOT NULL,
  `versioning_enabled` char(1) NOT NULL DEFAULT 'n',
  `view_count_one` int(10) unsigned NOT NULL DEFAULT '0',
  `view_count_two` int(10) unsigned NOT NULL DEFAULT '0',
  `view_count_three` int(10) unsigned NOT NULL DEFAULT '0',
  `view_count_four` int(10) unsigned NOT NULL DEFAULT '0',
  `allow_comments` varchar(1) NOT NULL DEFAULT 'y',
  `sticky` varchar(1) NOT NULL DEFAULT 'n',
  `entry_date` int(10) NOT NULL,
  `year` char(4) NOT NULL,
  `month` char(2) NOT NULL,
  `day` char(3) NOT NULL,
  `expiration_date` int(10) NOT NULL DEFAULT '0',
  `comment_expiration_date` int(10) NOT NULL DEFAULT '0',
  `edit_date` bigint(14) DEFAULT NULL,
  `recent_comment_date` int(10) DEFAULT NULL,
  `comment_total` int(4) unsigned NOT NULL DEFAULT '0',
  `entry_data` text,
  PRIMARY KEY (`entry_id`),
  KEY `channel_id` (`channel_id`),
  KEY `author_id` (`author_id`),
  KEY `url_title` (`url_title`),
  KEY `status` (`status`),
  KEY `entry_date` (`entry_date`),
  KEY `expiration_date` (`expiration_date`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=68 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_fields`
--

CREATE TABLE IF NOT EXISTS `exp_channel_fields` (
  `field_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_id` int(4) unsigned NOT NULL,
  `field_name` varchar(32) NOT NULL,
  `field_label` varchar(50) NOT NULL,
  `field_instructions` text,
  `field_type` varchar(50) NOT NULL DEFAULT 'text',
  `field_list_items` text NOT NULL,
  `field_pre_populate` char(1) NOT NULL DEFAULT 'n',
  `field_pre_channel_id` int(6) unsigned DEFAULT NULL,
  `field_pre_field_id` int(6) unsigned DEFAULT NULL,
  `field_ta_rows` tinyint(2) DEFAULT '8',
  `field_maxl` smallint(3) DEFAULT NULL,
  `field_required` char(1) NOT NULL DEFAULT 'n',
  `field_text_direction` char(3) NOT NULL DEFAULT 'ltr',
  `field_search` char(1) NOT NULL DEFAULT 'n',
  `field_is_hidden` char(1) NOT NULL DEFAULT 'n',
  `field_fmt` varchar(40) NOT NULL DEFAULT 'xhtml',
  `field_show_fmt` char(1) NOT NULL DEFAULT 'y',
  `field_order` int(3) unsigned NOT NULL,
  `field_content_type` varchar(20) NOT NULL DEFAULT 'any',
  `field_settings` text,
  PRIMARY KEY (`field_id`),
  KEY `group_id` (`group_id`),
  KEY `field_type` (`field_type`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=20 ;

--
-- Dumping data for table `exp_channel_fields`
--

INSERT INTO `exp_channel_fields` (`field_id`, `site_id`, `group_id`, `field_name`, `field_label`, `field_instructions`, `field_type`, `field_list_items`, `field_pre_populate`, `field_pre_channel_id`, `field_pre_field_id`, `field_ta_rows`, `field_maxl`, `field_required`, `field_text_direction`, `field_search`, `field_is_hidden`, `field_fmt`, `field_show_fmt`, `field_order`, `field_content_type`, `field_settings`) VALUES
(1, 1, 1, 'testimonial_quote', 'Quote', '', 'rte', '', '0', 0, 0, 10, 128, 'y', 'ltr', 'y', 'n', 'xhtml', 'n', 1, 'any', 'YTo4OntzOjI0OiJydGVfZmllbGRfdGV4dF9kaXJlY3Rpb24iO3M6MzoibHRyIjtzOjExOiJydGVfdGFfcm93cyI7czoyOiIxMCI7czoxODoiZmllbGRfc2hvd19zbWlsZXlzIjtzOjE6Im4iO3M6MTk6ImZpZWxkX3Nob3dfZ2xvc3NhcnkiO3M6MToibiI7czoyMToiZmllbGRfc2hvd19zcGVsbGNoZWNrIjtzOjE6Im4iO3M6MjY6ImZpZWxkX3Nob3dfZm9ybWF0dGluZ19idG5zIjtzOjE6Im4iO3M6MjQ6ImZpZWxkX3Nob3dfZmlsZV9zZWxlY3RvciI7czoxOiJuIjtzOjIwOiJmaWVsZF9zaG93X3dyaXRlbW9kZSI7czoxOiJuIjt9'),
(2, 1, 1, 'testimonial_name', 'Name', '', 'text', '', '0', 0, 0, 6, 128, 'y', 'ltr', 'n', 'n', 'none', 'n', 2, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(3, 1, 1, 'testimonial_company', 'company', '', 'text', '', '0', 0, 0, 6, 128, 'y', 'ltr', 'n', 'n', 'none', 'n', 3, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(4, 1, 2, 'static_content', 'Content', '', 'rte', '', '0', 0, 0, 10, 128, 'y', 'ltr', 'y', 'n', 'xhtml', 'n', 1, 'any', 'YTo4OntzOjI0OiJydGVfZmllbGRfdGV4dF9kaXJlY3Rpb24iO3M6MzoibHRyIjtzOjExOiJydGVfdGFfcm93cyI7czoyOiIxMCI7czoxODoiZmllbGRfc2hvd19zbWlsZXlzIjtzOjE6Im4iO3M6MTk6ImZpZWxkX3Nob3dfZ2xvc3NhcnkiO3M6MToibiI7czoyMToiZmllbGRfc2hvd19zcGVsbGNoZWNrIjtzOjE6Im4iO3M6MjY6ImZpZWxkX3Nob3dfZm9ybWF0dGluZ19idG5zIjtzOjE6Im4iO3M6MjQ6ImZpZWxkX3Nob3dfZmlsZV9zZWxlY3RvciI7czoxOiJuIjtzOjIwOiJmaWVsZF9zaG93X3dyaXRlbW9kZSI7czoxOiJuIjt9'),
(5, 1, 2, 'static_images', 'Images', '', 'grid', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'xhtml', 'n', 2, 'any', 'YTo4OntzOjEzOiJncmlkX21pbl9yb3dzIjtpOjA7czoxMzoiZ3JpZF9tYXhfcm93cyI7czoxOiI0IjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(6, 1, 3, 'services_content', 'Content', '', 'rte', '', '0', 0, 0, 6, 128, 'y', 'ltr', 'y', 'n', 'xhtml', 'n', 1, 'any', 'YTo4OntzOjI0OiJydGVfZmllbGRfdGV4dF9kaXJlY3Rpb24iO3M6MzoibHRyIjtzOjExOiJydGVfdGFfcm93cyI7czoxOiI2IjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(7, 1, 4, 'work_subtitle', 'Subtitle', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'y', 'y', 'none', 'n', 1, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(8, 1, 4, 'work_feature_image', 'Feature image', 'This image will be used on the work page grid and homepage.', 'file', '', '0', 0, 0, 6, 128, 'y', 'ltr', 'n', 'n', 'none', 'n', 2, 'any', 'YToxMDp7czoxODoiZmllbGRfY29udGVudF90eXBlIjtzOjU6ImltYWdlIjtzOjE5OiJhbGxvd2VkX2RpcmVjdG9yaWVzIjtzOjE6IjEiO3M6MTM6InNob3dfZXhpc3RpbmciO3M6MToieSI7czoxMjoibnVtX2V4aXN0aW5nIjtzOjI6IjUwIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(9, 1, 4, 'work_content', 'Content', '', 'rte', '', '0', 0, 0, 10, 128, 'y', 'ltr', 'y', 'n', 'xhtml', 'n', 3, 'any', 'YTo4OntzOjI0OiJydGVfZmllbGRfdGV4dF9kaXJlY3Rpb24iO3M6MzoibHRyIjtzOjExOiJydGVfdGFfcm93cyI7czoyOiIxMCI7czoxODoiZmllbGRfc2hvd19zbWlsZXlzIjtzOjE6Im4iO3M6MTk6ImZpZWxkX3Nob3dfZ2xvc3NhcnkiO3M6MToibiI7czoyMToiZmllbGRfc2hvd19zcGVsbGNoZWNrIjtzOjE6Im4iO3M6MjY6ImZpZWxkX3Nob3dfZm9ybWF0dGluZ19idG5zIjtzOjE6Im4iO3M6MjQ6ImZpZWxkX3Nob3dfZmlsZV9zZWxlY3RvciI7czoxOiJuIjtzOjIwOiJmaWVsZF9zaG93X3dyaXRlbW9kZSI7czoxOiJuIjt9'),
(10, 1, 4, 'work_lightbox_images', 'Lightbox images', '', 'grid', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'xhtml', 'n', 5, 'any', 'YTo4OntzOjEzOiJncmlkX21pbl9yb3dzIjtpOjA7czoxMzoiZ3JpZF9tYXhfcm93cyI7czowOiIiO3M6MTg6ImZpZWxkX3Nob3dfc21pbGV5cyI7czoxOiJuIjtzOjE5OiJmaWVsZF9zaG93X2dsb3NzYXJ5IjtzOjE6Im4iO3M6MjE6ImZpZWxkX3Nob3dfc3BlbGxjaGVjayI7czoxOiJuIjtzOjI2OiJmaWVsZF9zaG93X2Zvcm1hdHRpbmdfYnRucyI7czoxOiJuIjtzOjI0OiJmaWVsZF9zaG93X2ZpbGVfc2VsZWN0b3IiO3M6MToibiI7czoyMDoiZmllbGRfc2hvd193cml0ZW1vZGUiO3M6MToibiI7fQ=='),
(11, 1, 4, 'work_summary', 'Summary', '', 'textarea', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 2, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(12, 1, 4, 'work_lightbox_image_orientation', 'Lightbox image orientation', '', 'radio', 'Row\nColumn', 'n', 0, 0, 6, 128, 'y', 'ltr', 'n', 'n', 'none', 'n', 4, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(13, 1, 5, 'single_address', 'Address', '', 'textarea', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 1, 'any', 'YTo2OntzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(14, 1, 5, 'single_telephone', 'Telephone', '', 'text', '', '0', 0, 0, 6, 15, 'n', 'ltr', 'n', 'n', 'none', 'n', 2, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(15, 1, 5, 'single_email', 'Email', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 3, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(16, 1, 5, 'single_facebook', 'Facebook', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 4, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(17, 1, 5, 'single_twitter', 'Twitter', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 5, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(18, 1, 5, 'single_vimeo', 'Vimeo', '', 'text', '', '0', 0, 0, 6, 128, 'n', 'ltr', 'n', 'n', 'none', 'n', 6, 'any', 'YTo3OntzOjE4OiJmaWVsZF9jb250ZW50X3R5cGUiO3M6MzoiYWxsIjtzOjE4OiJmaWVsZF9zaG93X3NtaWxleXMiO3M6MToibiI7czoxOToiZmllbGRfc2hvd19nbG9zc2FyeSI7czoxOiJuIjtzOjIxOiJmaWVsZF9zaG93X3NwZWxsY2hlY2siO3M6MToibiI7czoyNjoiZmllbGRfc2hvd19mb3JtYXR0aW5nX2J0bnMiO3M6MToibiI7czoyNDoiZmllbGRfc2hvd19maWxlX3NlbGVjdG9yIjtzOjE6Im4iO3M6MjA6ImZpZWxkX3Nob3dfd3JpdGVtb2RlIjtzOjE6Im4iO30='),
(19, 1, 6, 'image_block', 'Image block', '', 'grid', '', '0', 0, 0, 6, 128, 'y', 'ltr', 'n', 'n', 'xhtml', 'n', 1, 'any', 'YTo4OntzOjEzOiJncmlkX21pbl9yb3dzIjtpOjA7czoxMzoiZ3JpZF9tYXhfcm93cyI7czowOiIiO3M6MTg6ImZpZWxkX3Nob3dfc21pbGV5cyI7czoxOiJuIjtzOjE5OiJmaWVsZF9zaG93X2dsb3NzYXJ5IjtzOjE6Im4iO3M6MjE6ImZpZWxkX3Nob3dfc3BlbGxjaGVjayI7czoxOiJuIjtzOjI2OiJmaWVsZF9zaG93X2Zvcm1hdHRpbmdfYnRucyI7czoxOiJuIjtzOjI0OiJmaWVsZF9zaG93X2ZpbGVfc2VsZWN0b3IiO3M6MToibiI7czoyMDoiZmllbGRfc2hvd193cml0ZW1vZGUiO3M6MToibiI7fQ==');

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_form_settings`
--

CREATE TABLE IF NOT EXISTS `exp_channel_form_settings` (
  `channel_form_settings_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '0',
  `channel_id` int(6) unsigned NOT NULL DEFAULT '0',
  `default_status` varchar(50) NOT NULL DEFAULT 'open',
  `require_captcha` char(1) NOT NULL DEFAULT 'n',
  `allow_guest_posts` char(1) NOT NULL DEFAULT 'n',
  `default_author` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`channel_form_settings_id`),
  KEY `site_id` (`site_id`),
  KEY `channel_id` (`channel_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_grid_field_5`
--

CREATE TABLE IF NOT EXISTS `exp_channel_grid_field_5` (
  `row_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned DEFAULT NULL,
  `row_order` int(10) unsigned DEFAULT NULL,
  `col_id_1` text,
  PRIMARY KEY (`row_id`),
  KEY `entry_id` (`entry_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `exp_channel_grid_field_5`
--

INSERT INTO `exp_channel_grid_field_5` (`row_id`, `entry_id`, `row_order`, `col_id_1`) VALUES
(1, 5, 0, '{filedir_2}double-top-533x300.png'),
(2, 5, 1, '{filedir_2}double-top-533x300.png'),
(3, 5, 2, '{filedir_2}double-top-533x300.png');

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_grid_field_10`
--

CREATE TABLE IF NOT EXISTS `exp_channel_grid_field_10` (
  `row_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned DEFAULT NULL,
  `row_order` int(10) unsigned DEFAULT NULL,
  `col_id_2` text,
  PRIMARY KEY (`row_id`),
  KEY `entry_id` (`entry_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=224 ;

--
-- Dumping data for table `exp_channel_grid_field_10`
--

INSERT INTO `exp_channel_grid_field_10` (`row_id`, `entry_id`, `row_order`, `col_id_2`) VALUES
(165, 41, 1, '{filedir_1}Wellbeing-games-film2.png'),
(144, 59, 0, '{filedir_1}Hats-off-to-the-lord-mayor1.png'),
(118, 17, 1, '{filedir_1}daleside-2.png'),
(117, 17, 0, '{filedir_1}daleside-1.png'),
(73, 57, 1, '{filedir_1}Trade-chimp-2.jpg'),
(72, 57, 0, '{filedir_1}Trade-chimp-1.jpg'),
(126, 62, 1, '{filedir_1}Antony-hatfield2.png'),
(125, 62, 0, '{filedir_1}Antony-hatfield1.png'),
(119, 27, 0, '{filedir_1}Child-dynamix-online1.png'),
(180, 65, 2, '{filedir_1}CPS-bar.png'),
(178, 65, 0, '{filedir_1}CPS-home.png'),
(179, 65, 1, '{filedir_1}CPS-retail.png'),
(171, 20, 0, '{filedir_1}drinkless-work.png'),
(196, 70, 1, '{filedir_1}Data-to-decisions2.png'),
(211, 68, 3, '{filedir_1}Double-top-brewerypc3.png'),
(189, 35, 0, '{filedir_1}Brid-ale-fest-other.png'),
(185, 48, 0, '{filedir_1}8-sail-brewery1.png'),
(206, 22, 0, '{filedir_1}YMCA-work.png'),
(155, 61, 1, '{filedir_1}All-Occasions-marquees2.png'),
(151, 24, 0, '{filedir_1}tom-branded.png'),
(116, 13, 1, '{filedir_1}wensleydale-online-2.png'),
(115, 13, 0, '{filedir_1}wensleydale-online-1.png'),
(113, 25, 0, '{filedir_1}rk-atkinson-online-1.png'),
(122, 29, 1, '{filedir_1}drinkless-online2.png'),
(121, 29, 0, '{filedir_1}drinkless-online1.png'),
(152, 51, 0, '{filedir_1}Pop-up-pub1.png'),
(153, 51, 1, '{filedir_1}Pop-up-pub2.png'),
(175, 37, 0, '{filedir_1}andrew-jones-pies1.png'),
(195, 70, 0, '{filedir_1}Data-to-decisions1.png'),
(143, 6, 0, '{filedir_1}GNB-work.png'),
(170, 19, 1, '{filedir_1}NHS-mental-health-work2.png'),
(168, 36, 0, '{filedir_1}Tom-davies-tennis-school1.png'),
(112, 26, 1, '{filedir_1}YMCA-online2.png'),
(111, 26, 0, '{filedir_1}YMCA-online1.png'),
(45, 38, 0, '{filedir_1}Tom-Speed-Dating-2.jpg'),
(188, 47, 0, '{filedir_1}bike-hub1.png'),
(163, 43, 1, '{filedir_1}Renew-film2.png'),
(162, 43, 0, '{filedir_1}Renew-film1.png'),
(190, 39, 0, '{filedir_1}Tigers-work.png'),
(52, 42, 0, '{filedir_1}Meet-the-boozers1.jpg'),
(53, 42, 1, '{filedir_1}Meet-the-boozers2.jpg'),
(164, 41, 0, '{filedir_1}Wellbeing-games-film1.png'),
(161, 40, 1, '{filedir_1}Tigers-film2.png'),
(160, 40, 0, '{filedir_1}Tigers-film1.png'),
(159, 44, 1, '{filedir_1}GNB-film2.png'),
(158, 44, 0, '{filedir_1}GNB-film1.png'),
(169, 19, 0, '{filedir_1}NHS-mental-health-work.png'),
(191, 18, 0, '{filedir_1}Big-issue-foundation1.png'),
(200, 68, 1, '{filedir_1}Double-top-brewerypc1.png'),
(66, 49, 0, '{filedir_1}Beverley-wine-festival.jpg'),
(77, 60, 0, '{filedir_1}All-Occasions-web1.jpg'),
(154, 61, 0, '{filedir_1}All-Occasions-marquees1.png'),
(70, 52, 0, '{filedir_1}Slow-tour-of-yorkshire1.jpg'),
(71, 52, 1, '{filedir_1}Slow-tour-of-yorkshire2.jpg'),
(184, 64, 0, '{filedir_1}Humberside-police-lifestyle1.png'),
(145, 63, 0, '{filedir_1}Bad-ram_brewery1.png'),
(82, 60, 1, '{filedir_1}All-Occasions-web2.jpg'),
(146, 21, 0, '{filedir_1}Castle-combe-brewery1.png'),
(192, 46, 0, '{filedir_1}onside-1.png'),
(100, 67, 1, '{filedir_1}Cuppa-mundi2.jpg'),
(99, 67, 0, '{filedir_1}Cuppa-mundi1.jpg'),
(138, 31, 0, '{filedir_1}GNB-maillot-jaune1.png'),
(181, 66, 0, '{filedir_1}Yorkshire-wolds-cookery-school1.png'),
(140, 23, 0, '{filedir_1}wensleydale-brewery-1.png'),
(182, 58, 0, '{filedir_1}NVW-Share1.png'),
(183, 58, 1, '{filedir_1}NVW-Share2.png'),
(156, 45, 0, '{filedir_1}YMCA-humber-film1.png'),
(157, 45, 1, '{filedir_1}YMCA-humber-film2.png'),
(187, 48, 1, '{filedir_1}8-sail-brewery2.png'),
(194, 69, 0, '{filedir_1}ED-campaign1.png'),
(114, 25, 1, '{filedir_1}rk-atkinson-online-2.png'),
(120, 27, 1, '{filedir_1}Child-dynamix-online2.png'),
(139, 30, 0, '{filedir_1}daleside-morocco1.png'),
(197, 68, 0, '{filedir_1}Double-top-brewery1.png'),
(201, 71, 0, '{filedir_1}activfirst-logo.png'),
(199, 68, 2, '{filedir_1}Double-top-brewerypc2.png'),
(202, 72, 0, '{filedir_1}olmec-1.png'),
(203, 72, 1, '{filedir_1}olmec-2.png'),
(204, 72, 2, '{filedir_1}olmec-3.png'),
(207, 73, 1, '{filedir_1}VP-security1.png'),
(208, 73, 2, '{filedir_1}VP-security2.png'),
(209, 73, 0, '{filedir_1}VP-security3.png'),
(210, 16, 0, '{filedir_1}space-hop-1.png'),
(212, 77, 0, '{filedir_1}GNB-online1.jpg'),
(213, 77, 1, '{filedir_1}GNB-online2.jpg'),
(214, 78, 0, '{filedir_1}DTB-online1.jpg'),
(215, 78, 1, '{filedir_1}DTB-online2.jpg'),
(216, 79, 0, '{filedir_1}Castle-combe-brewery-online1.jpg'),
(217, 79, 1, '{filedir_1}Castle-combe-brewery-online2.jpg'),
(218, 80, 0, '{filedir_1}inside-leadership-online1.jpg'),
(219, 80, 1, '{filedir_1}inside-leadership-online2.jpg'),
(220, 81, 0, '{filedir_1}Go-soup-online1.jpg'),
(221, 81, 1, '{filedir_1}Go-soup-online2.jpg'),
(222, 82, 0, '{filedir_1}The-Day-online1.jpg'),
(223, 82, 1, '{filedir_1}The-Day-online2.jpg');

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_grid_field_19`
--

CREATE TABLE IF NOT EXISTS `exp_channel_grid_field_19` (
  `row_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned DEFAULT NULL,
  `row_order` int(10) unsigned DEFAULT NULL,
  `col_id_3` text,
  `col_id_4` text,
  `col_id_5` text,
  `col_id_6` text,
  PRIMARY KEY (`row_id`),
  KEY `entry_id` (`entry_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ;

--
-- Dumping data for table `exp_channel_grid_field_19`
--

INSERT INTO `exp_channel_grid_field_19` (`row_id`, `entry_id`, `row_order`, `col_id_3`, `col_id_4`, `col_id_5`, `col_id_6`) VALUES
(1, 74, 0, '{filedir_1}AJ-pies-261x300.png', '{filedir_1}cuppa-mundi-255x150.png', '{filedir_1}Share-255x150.png', '{filedir_1}double-top-522x300.png'),
(2, 75, 0, '{filedir_1}AJ-pies-261x300.png', '{filedir_1}cuppa-mundi-255x150.png', '{filedir_1}Share-255x150.png', ''),
(3, 76, 0, '{filedir_1}Brid-ale-fest-261x300.png', '{filedir_1}morocco-255x150.png', '{filedir_1}Share-255x150.png', ''),
(4, 75, 1, '{filedir_1}GNB-261x300.png', '{filedir_1}Olmec-255x150.png', '{filedir_1}Activfirst-255x150.png', ''),
(10, 75, 4, '{filedir_1}8-sail-261x300.png', '{filedir_1}slow-tour-255x150.png', '{filedir_1}bike-hub-255x150.png', ''),
(5, 74, 1, '{filedir_1}GNB-261x300.png', '{filedir_1}Olmec-255x150.png', '{filedir_1}morocco-255x150.png', '{filedir_1}slow-tour-522x300.png'),
(6, 75, 2, '{filedir_1}Trade-chimp-261x300.png', '{filedir_1}Bev-wine-fest-255x150.png', '{filedir_1}morocco-255x150.png', ''),
(7, 76, 1, '{filedir_1}AJ-pies-261x300.png', '{filedir_1}Bev-wine-fest-255x150.png', '{filedir_1}cuppa-mundi-255x150.png', ''),
(8, 75, 3, '{filedir_1}Double-top-261x300.png', '{filedir_1}castle-combe-255x150.png', '{filedir_1}tigers-trust-255x150.png', ''),
(9, 74, 2, '{filedir_1}Trade-chimp-261x300.png', '{filedir_1}Bev-wine-fest-255x150.png', '{filedir_1}castle-combe-255x150.png', '{filedir_1}HATS-OFF-522x300.png'),
(11, 76, 2, '{filedir_1}Trade-chimp-261x300.png', '{filedir_1}castle-combe-255x150.png', '{filedir_1}Olmec-255x150.png', ''),
(12, 76, 3, '{filedir_1}8-sail-261x300.png', '{filedir_1}Activfirst-255x150.png', '{filedir_1}bike-hub-255x150.png', '');

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_member_groups`
--

CREATE TABLE IF NOT EXISTS `exp_channel_member_groups` (
  `group_id` smallint(4) unsigned NOT NULL,
  `channel_id` int(6) unsigned NOT NULL,
  PRIMARY KEY (`group_id`,`channel_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `exp_channel_member_groups`
--

INSERT INTO `exp_channel_member_groups` (`group_id`, `channel_id`) VALUES
(6, 1),
(6, 2),
(6, 3),
(6, 4),
(6, 5),
(6, 6);

-- --------------------------------------------------------

--
-- Table structure for table `exp_channel_titles`
--

CREATE TABLE IF NOT EXISTS `exp_channel_titles` (
  `entry_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `channel_id` int(4) unsigned NOT NULL,
  `author_id` int(10) unsigned NOT NULL DEFAULT '0',
  `forum_topic_id` int(10) unsigned DEFAULT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `title` varchar(100) NOT NULL,
  `url_title` varchar(75) NOT NULL,
  `status` varchar(50) NOT NULL,
  `versioning_enabled` char(1) NOT NULL DEFAULT 'n',
  `view_count_one` int(10) unsigned NOT NULL DEFAULT '0',
  `view_count_two` int(10) unsigned NOT NULL DEFAULT '0',
  `view_count_three` int(10) unsigned NOT NULL DEFAULT '0',
  `view_count_four` int(10) unsigned NOT NULL DEFAULT '0',
  `allow_comments` varchar(1) NOT NULL DEFAULT 'y',
  `sticky` varchar(1) NOT NULL DEFAULT 'n',
  `entry_date` int(10) NOT NULL,
  `year` char(4) NOT NULL,
  `month` char(2) NOT NULL,
  `day` char(3) NOT NULL,
  `expiration_date` int(10) NOT NULL DEFAULT '0',
  `comment_expiration_date` int(10) NOT NULL DEFAULT '0',
  `edit_date` bigint(14) DEFAULT NULL,
  `recent_comment_date` int(10) DEFAULT NULL,
  `comment_total` int(4) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`entry_id`),
  KEY `channel_id` (`channel_id`),
  KEY `author_id` (`author_id`),
  KEY `url_title` (`url_title`),
  KEY `status` (`status`),
  KEY `entry_date` (`entry_date`),
  KEY `expiration_date` (`expiration_date`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=83 ;

--
-- Dumping data for table `exp_channel_titles`
--

INSERT INTO `exp_channel_titles` (`entry_id`, `site_id`, `channel_id`, `author_id`, `forum_topic_id`, `ip_address`, `title`, `url_title`, `status`, `versioning_enabled`, `view_count_one`, `view_count_two`, `view_count_three`, `view_count_four`, `allow_comments`, `sticky`, `entry_date`, `year`, `month`, `day`, `expiration_date`, `comment_expiration_date`, `edit_date`, `recent_comment_date`, `comment_total`) VALUES
(1, 1, 2, 1, NULL, '94.72.244.112', 'Suzanne Nicholls Quote', 'suzanne-nicholls', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1422568440, '2015', '01', '29', 0, 0, 20150225213332, 0, 0),
(3, 1, 3, 1, NULL, '77.86.46.165', 'Welcome to Harper Creative', 'home', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1422570060, '2015', '01', '29', 0, 0, 20150204130148, 0, 0),
(4, 1, 3, 1, NULL, '86.133.113.160', 'How can we help?', 'services', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1422570120, '2015', '01', '29', 0, 0, 20150326111104, 0, 0),
(5, 1, 3, 1, NULL, '87.102.21.100', 'Who are we?', 'about', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1422570120, '2015', '01', '29', 0, 0, 20150817194317, 0, 0),
(6, 1, 4, 1, NULL, '87.102.21.100', 'Great Newsome Brewery', 'subtitle', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1422697200, '2015', '01', '31', 0, 0, 20150709181645, 0, 0),
(7, 1, 1, 1, NULL, '127.0.0.1', 'Graphic Design', 'graphic-design', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1422793080, '2015', '02', '01', 0, 0, 20150201140701, 0, 0),
(8, 1, 1, 1, NULL, '127.0.0.1', 'Online', 'online', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1422811440, '2015', '02', '01', 0, 0, 20150201172433, 0, 0),
(9, 1, 1, 1, NULL, '127.0.0.1', 'Events', 'events', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1422811500, '2015', '02', '01', 0, 0, 20150201172803, 0, 0),
(10, 1, 1, 1, NULL, '127.0.0.1', 'PR', 'pr', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1422811680, '2015', '02', '01', 0, 0, 20150201172832, 0, 0),
(11, 1, 1, 1, NULL, '127.0.0.1', 'Marketing', 'marketing', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1422811680, '2015', '02', '01', 0, 0, 20150201172903, 0, 0),
(12, 1, 1, 1, NULL, '127.0.0.1', 'Film', 'film', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1422811740, '2015', '02', '01', 0, 0, 20150201173002, 0, 0),
(13, 1, 4, 1, NULL, '87.102.21.100', 'Wensleydale Brewery Website', 'wensleydale-brewery', 'Featured', 'y', 0, 0, 0, 0, 'n', 'n', 1422814200, '2015', '02', '01', 0, 0, 20150709135138, 0, 0),
(14, 1, 5, 1, NULL, '127.0.0.1', 'Single entry', 'single-entry', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1422820980, '2015', '02', '01', 0, 0, 20150201200728, 0, 0),
(16, 1, 4, 1, NULL, '87.102.21.100', 'Humber Hop', 'humber-hop', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423081320, '2015', '02', '04', 0, 0, 20150713193958, 0, 0),
(17, 1, 4, 1, NULL, '87.102.21.100', 'Daleside Brewery Website', 'daleside-brewery', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423081800, '2015', '02', '04', 0, 0, 20150709135444, 0, 0),
(18, 1, 4, 1, NULL, '81.131.220.32', 'The Big Issue', 'the-big-issue', 'Featured', 'y', 0, 0, 0, 0, 'n', 'n', 1438254900, '2015', '07', '30', 0, 0, 20150910111547, 0, 0),
(23, 1, 4, 2, NULL, '87.102.21.100', 'Wensleydale Brewery', 'wensleydale-brewery2', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423685340, '2015', '02', '11', 0, 0, 20150709155725, 0, 0),
(57, 1, 4, 2, NULL, '81.131.220.32', 'Trade Chimp', 'trade-chimp', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1438081860, '2015', '07', '28', 0, 0, 20150910111135, 0, 0),
(19, 1, 4, 2, NULL, '87.102.21.100', 'NHS Mental Health', 'nhs-mental-health', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423679040, '2015', '02', '11', 0, 0, 20150709212554, 0, 0),
(20, 1, 4, 2, NULL, '87.102.21.100', 'Drinkless 2014', 'drinkless-2014', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423681800, '2015', '02', '11', 0, 0, 20150709214141, 0, 0),
(21, 1, 4, 2, NULL, '81.131.220.32', 'Castle Combe Brewery', 'castle-combe-brewery', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1438254540, '2015', '07', '30', 0, 0, 20150910110943, 0, 0),
(22, 1, 4, 2, NULL, '87.102.21.100', 'YMCA Humber', 'ymca-humber', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423683360, '2015', '02', '11', 0, 0, 20150711165723, 0, 0),
(24, 1, 4, 2, NULL, '87.102.21.100', 'Tom Foundation', 'tom-foundation', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423686480, '2015', '02', '11', 0, 0, 20150709194757, 0, 0),
(25, 1, 4, 2, NULL, '87.102.21.100', 'RK Atkinson online', 'rk-atkinson-online', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423688760, '2015', '02', '11', 0, 0, 20150709134834, 0, 0),
(26, 1, 4, 2, NULL, '87.102.21.100', 'YMCA Humber', 'ymca-online', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423689120, '2015', '02', '11', 0, 0, 20150709134527, 0, 0),
(27, 1, 4, 2, NULL, '87.102.21.100', 'Child Dynamix', 'child-dynamix-online', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423690860, '2015', '02', '11', 0, 0, 20150709140006, 0, 0),
(29, 1, 4, 2, NULL, '87.102.21.100', 'Drinkless Campaign', 'drinkless-website', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423691940, '2015', '02', '11', 0, 0, 20150709140557, 0, 0),
(30, 1, 4, 2, NULL, '87.102.21.100', 'Daleside Brewery -  Morocco Ale', 'daleside-morocco-ale', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423693860, '2015', '02', '11', 0, 0, 20150709153155, 0, 0),
(31, 1, 4, 2, NULL, '81.131.220.32', 'Great Newsome Brewery - Maillot Jaune', 'gnb-maillot-jaune', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1436699640, '2015', '07', '12', 0, 0, 20150910111505, 0, 0),
(32, 1, 2, 2, NULL, '94.72.244.112', 'Andrew Jones Pies Quote', 'andrew-jones-pies-quote', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423750680, '2015', '02', '12', 0, 0, 20150225213201, 0, 0),
(33, 1, 2, 2, NULL, '94.72.244.112', 'Great Newsome Brewery Quote', 'great-newsome-brewery-quote', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423750920, '2015', '02', '12', 0, 0, 20150225213315, 0, 0),
(34, 1, 2, 2, NULL, '94.72.244.112', 'YMCA Humber Quote', 'ymca-humber-quote', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423751040, '2015', '02', '12', 0, 0, 20150225213255, 0, 0),
(68, 1, 4, 2, NULL, '87.102.21.100', 'Double Top Brewery', 'double-top-brewery', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1436620260, '2015', '07', '11', 0, 0, 20150720200840, 0, 0),
(35, 1, 4, 2, NULL, '87.102.21.100', 'Bridlington Real Ale Festival', 'bridlington-real-ale-festival', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423759140, '2015', '02', '12', 0, 0, 20150710191353, 0, 0),
(36, 1, 4, 2, NULL, '87.102.21.100', 'Tom Davies Tennis School', 'tom-davies-tennis-school', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423759620, '2015', '02', '12', 0, 0, 20150709211631, 0, 0),
(37, 1, 4, 2, NULL, '81.131.220.32', 'Andrew Jones Pies', 'andrew-jones-pies', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1436786040, '2015', '07', '13', 0, 0, 20150910111417, 0, 0),
(38, 1, 4, 2, NULL, '81.131.220.32', 'Tom Foundation Speed Dating', 'tom-foundation-speed-dating', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1437477180, '2015', '07', '21', 0, 0, 20150910111337, 0, 0),
(39, 1, 4, 2, NULL, '87.102.21.100', 'Tigers Trust', 'tigers-trust', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423762560, '2015', '02', '12', 0, 0, 20150710191455, 0, 0),
(40, 1, 4, 2, NULL, '87.102.21.100', 'Tigers FC', 'tigers-fc', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423768980, '2015', '02', '12', 0, 0, 20150709203320, 0, 0),
(41, 1, 4, 2, NULL, '87.102.21.100', 'Wellbeing Games', 'wellbeing-games', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423770420, '2015', '02', '12', 0, 0, 20150709204452, 0, 0),
(42, 1, 4, 2, NULL, '87.102.21.100', 'Meet the Boozers', 'meet-the-boozers', 'closed', 'y', 0, 0, 0, 0, 'n', 'n', 1423771500, '2015', '02', '12', 0, 0, 20150709102542, 0, 0),
(43, 1, 4, 2, NULL, '87.102.21.100', 'ReNew', 'renew', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423772580, '2015', '02', '12', 0, 0, 20150709204240, 0, 0),
(44, 1, 4, 2, NULL, '87.102.21.100', 'Great Newsome Brewery Film', 'great-newsome-brewery-film', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423780800, '2015', '02', '12', 0, 0, 20150709201115, 0, 0),
(45, 1, 4, 2, NULL, '87.102.21.100', 'YMCA Humber A Celebration', 'ymca-humber-film', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423782060, '2015', '02', '12', 0, 0, 20150709200628, 0, 0),
(46, 1, 4, 2, NULL, '87.102.21.100', 'Onside', 'onside', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423782540, '2015', '02', '12', 0, 0, 20150710193120, 0, 0),
(47, 1, 4, 2, NULL, '81.131.220.32', 'Bike Hub', 'bike-hub', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1437822720, '2015', '07', '25', 0, 0, 20150910111224, 0, 0),
(48, 1, 4, 2, NULL, '81.131.220.32', '8 Sail Brewery', '8-sail-brewery', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1437649920, '2015', '07', '23', 0, 0, 20150910111257, 0, 0),
(49, 1, 4, 2, NULL, '86.133.112.209', 'Beverley Wine Festival & Cheese', 'beverley-wine-festival-cheese', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423784460, '2015', '02', '12', 0, 0, 20150423120217, 0, 0),
(51, 1, 4, 2, NULL, '87.102.21.100', 'Pop Up Pub', 'pop-up-pub', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1423785420, '2015', '02', '12', 0, 0, 20150709195414, 0, 0),
(52, 1, 4, 2, NULL, '81.131.220.32', 'Slow Tour of Yorkshire', 'slow-tour-of-yorkshire', 'Featured', 'y', 0, 0, 0, 0, 'n', 'n', 1438513500, '2015', '08', '02', 0, 0, 20150910110607, 0, 0),
(60, 1, 4, 2, NULL, '87.102.21.100', 'All Occasions Marquee Storage', 'all-occasions-marquee-storage', 'closed', 'y', 0, 0, 0, 0, 'n', 'n', 1430383500, '2015', '04', '30', 0, 0, 20150709112505, 0, 0),
(53, 1, 2, 2, NULL, '86.133.113.160', 'Vegetarian Society Quote', 'vegetarian-society-quote', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1427363100, '2015', '03', '26', 0, 0, 20150326102413, 0, 0),
(54, 1, 2, 2, NULL, '86.133.113.160', 'ReNew Quote', 'renew-quote', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1427365440, '2015', '03', '26', 0, 0, 20150326102801, 0, 0),
(55, 1, 2, 2, NULL, '86.133.113.160', 'Sustrans Quote', 'sustrans-quote', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1427365680, '2015', '03', '26', 0, 0, 20150326103329, 0, 0),
(56, 1, 2, 2, NULL, '86.133.113.160', 'Emma Tindall Quote', 'emma-tindall-quote', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1427365980, '2015', '03', '26', 0, 0, 20150326103545, 0, 0),
(58, 1, 4, 2, NULL, '81.131.220.32', 'National Vegetarian Week "Share"', 'nvw-share', 'Featured', 'y', 0, 0, 0, 0, 'n', 'n', 1438772580, '2015', '08', '05', 0, 0, 20150910112753, 0, 0),
(59, 1, 4, 2, NULL, '81.131.220.32', 'Hats off to the Lord Mayor', 'hats-off-to-the-lord-mayor', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1429206240, '2015', '04', '16', 0, 0, 20150910113618, 0, 0),
(61, 1, 4, 2, NULL, '87.102.21.100', 'All Occasions Marquees', 'all-occasions-marquees', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1430386260, '2015', '04', '30', 0, 0, 20150709200305, 0, 0),
(62, 1, 4, 2, NULL, '87.102.21.100', 'Antony Hatfield', 'antony-hatfield', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1430396460, '2015', '04', '30', 0, 0, 20150709141855, 0, 0),
(63, 1, 4, 2, NULL, '87.102.21.100', 'Bad Ram Brewery', 'bad-ram-brewery', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1430398380, '2015', '04', '30', 0, 0, 20150709184158, 0, 0),
(64, 1, 4, 2, NULL, '87.102.21.100', 'Humberside Police Lifestyle', 'humberside-police-lifestyle', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1430399340, '2015', '04', '30', 0, 0, 20150710184917, 0, 0),
(65, 1, 4, 2, NULL, '87.102.21.100', 'CPS', 'cps', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1430398800, '2015', '04', '30', 0, 0, 20150710094022, 0, 0),
(66, 1, 4, 2, NULL, '87.102.21.100', 'Yorkshire Wolds Cookery School', 'yorkshire-wolds-cookery-school', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1430415360, '2015', '04', '30', 0, 0, 20150710111444, 0, 0),
(67, 1, 4, 2, NULL, '81.131.220.32', 'Cuppa Mundi', 'cuppa-mundi', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1438340820, '2015', '07', '31', 0, 0, 20150910121142, 0, 0),
(69, 1, 4, 2, NULL, '87.102.21.100', 'Oxford on-line Pharmacy', 'oxford-on-line-pharmacy', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1436620380, '2015', '07', '11', 0, 0, 20150711133743, 0, 0),
(70, 1, 4, 2, NULL, '81.131.220.32', 'Data to Decisions', 'data-to-decisions', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1430737800, '2015', '05', '04', 0, 0, 20150910111026, 0, 0),
(71, 1, 4, 2, NULL, '87.102.21.100', 'Activfirst', 'activfirst', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1436631540, '2015', '07', '11', 0, 0, 20150711162559, 0, 0),
(72, 1, 4, 2, NULL, '87.102.21.100', 'Olmec', 'olmec', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1436632320, '2015', '07', '11', 0, 0, 20150711164258, 0, 0),
(73, 1, 4, 2, NULL, '81.131.220.32', 'VP Security', 'vp-security', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1434538560, '2015', '06', '17', 0, 0, 20150910105625, 0, 0),
(74, 1, 6, 1, NULL, '87.102.21.100', 'About image block', 'about-image-block', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1439151120, '2015', '08', '09', 0, 0, 20150828153008, 0, 0),
(75, 1, 6, 1, NULL, '87.102.21.100', 'Home image block', 'home-image-block', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1439151180, '2015', '08', '09', 0, 0, 20150911111336, 0, 0),
(76, 1, 6, 1, NULL, '87.102.21.100', 'Services image block', 'services-image-block', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1439151300, '2015', '08', '09', 0, 0, 20150911120144, 0, 0),
(77, 1, 4, 2, NULL, '87.102.21.100', 'Great Newsome Brewery website', 'great-newsome-brewery-website', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1444987800, '2015', '10', '16', 0, 0, 20151016094404, 0, 0),
(78, 1, 4, 2, NULL, '87.102.21.100', 'Double Top Brewery Website', 'double-top-brewery-website', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1444988460, '2015', '10', '16', 0, 0, 20151016094334, 0, 0),
(79, 1, 4, 2, NULL, '87.102.21.100', 'Castle Combe Brewery Website', 'castle-combe-brewery-website', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1444989000, '2015', '10', '16', 0, 0, 20151016095244, 0, 0),
(80, 1, 4, 2, NULL, '87.102.21.100', 'Inside Leadership Website', 'inside-leadership-website', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1444989540, '2015', '10', '16', 0, 0, 20151016100149, 0, 0),
(81, 1, 4, 2, NULL, '87.102.21.100', 'Go Soup Website', 'go-soup-website', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1444990140, '2015', '10', '16', 0, 0, 20151016101207, 0, 0),
(82, 1, 4, 2, NULL, '87.102.21.100', 'The Day website', 'the-day-website', 'open', 'y', 0, 0, 0, 0, 'n', 'n', 1445018520, '2015', '10', '16', 0, 0, 20151016180539, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_content_types`
--

CREATE TABLE IF NOT EXISTS `exp_content_types` (
  `content_type_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL DEFAULT '',
  PRIMARY KEY (`content_type_id`),
  KEY `name` (`name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `exp_content_types`
--

INSERT INTO `exp_content_types` (`content_type_id`, `name`) VALUES
(1, 'grid'),
(2, 'channel');

-- --------------------------------------------------------

--
-- Table structure for table `exp_cp_log`
--

CREATE TABLE IF NOT EXISTS `exp_cp_log` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `member_id` int(10) unsigned NOT NULL,
  `username` varchar(32) NOT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `act_date` int(10) NOT NULL,
  `action` varchar(200) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=158 ;

--
-- Dumping data for table `exp_cp_log`
--

INSERT INTO `exp_cp_log` (`id`, `site_id`, `member_id`, `username`, `ip_address`, `act_date`, `action`) VALUES
(1, 1, 1, 'osadmin', '127.0.0.1', 1419417996, 'Logged in'),
(2, 1, 1, 'osadmin', '127.0.0.1', 1419423204, 'Logged in'),
(3, 1, 1, 'osadmin', '127.0.0.1', 1422563159, 'Logged in'),
(4, 1, 1, 'osadmin', '127.0.0.1', 1422563175, 'Username was changed to:&nbsp;&nbsp;admin'),
(5, 1, 1, 'admin', '127.0.0.1', 1422563288, 'Field Group Created:&nbsp;testimonial-fields'),
(6, 1, 1, 'admin', '127.0.0.1', 1422565630, 'Field Group Created:&nbsp;static-page-fields'),
(7, 1, 1, 'admin', '127.0.0.1', 1422567042, 'Category Group Created:&nbsp;&nbsp;Service categories'),
(8, 1, 1, 'admin', '127.0.0.1', 1422567149, 'Logged in'),
(9, 1, 1, 'admin', '127.0.0.1', 1422567881, 'Field Group Created:&nbsp;services-fields'),
(10, 1, 1, 'admin', '127.0.0.1', 1422567972, 'Channel Created:&nbsp;&nbsp;Services'),
(11, 1, 1, 'admin', '127.0.0.1', 1422568435, 'Channel Created:&nbsp;&nbsp;Testimonials'),
(12, 1, 1, 'admin', '127.0.0.1', 1422570009, 'Channel Created:&nbsp;&nbsp;Static page'),
(13, 1, 1, 'admin', '127.0.0.1', 1422695238, 'Logged in'),
(14, 1, 1, 'admin', '127.0.0.1', 1422695455, 'Field Group Created:&nbsp;work-fields'),
(15, 1, 1, 'admin', '127.0.0.1', 1422697115, 'Status Group Created:&nbsp;Work Status'),
(16, 1, 1, 'admin', '127.0.0.1', 1422697200, 'Channel Created:&nbsp;&nbsp;Work'),
(17, 1, 1, 'admin', '127.0.0.1', 1422742160, 'Logged in'),
(18, 1, 1, 'admin', '127.0.0.1', 1422791534, 'Logged in'),
(19, 1, 1, 'admin', '127.0.0.1', 1422811429, 'Logged in'),
(20, 1, 1, 'admin', '127.0.0.1', 1422816168, 'Field Group Created:&nbsp;Single entry fields'),
(21, 1, 1, 'admin', '127.0.0.1', 1422820972, 'Logged in'),
(22, 1, 1, 'admin', '127.0.0.1', 1422821026, 'Channel Created:&nbsp;&nbsp;Single'),
(23, 1, 1, 'admin', '127.0.0.1', 1422968172, 'Logged in'),
(24, 1, 1, 'admin', '127.0.0.1', 1422968173, 'Logged in'),
(25, 1, 1, 'admin', '127.0.0.1', 1422994962, 'Logged in'),
(26, 1, 1, 'admin', '127.0.0.1', 1423000394, 'Member Group Created:&nbsp;&nbsp;HC Staff'),
(27, 1, 1, 'admin', '94.72.244.112', 1423004323, 'Logged in'),
(28, 1, 1, 'admin', '94.72.244.112', 1423004452, 'Member profile created:&nbsp;&nbsp;harperj'),
(29, 1, 1, 'admin', '94.72.244.112', 1423005108, 'Logged in'),
(30, 1, 1, 'admin', '94.72.244.112', 1423005162, 'Logged out'),
(31, 1, 1, 'admin', '77.86.46.165', 1423054885, 'Logged in'),
(32, 1, 1, 'admin', '94.72.244.112', 1423080605, 'Logged in'),
(33, 1, 1, 'admin', '94.72.244.112', 1423515302, 'Logged in'),
(34, 1, 1, 'admin', '94.72.244.112', 1423517602, 'Logged in'),
(35, 1, 2, 'harperj', '81.153.163.162', 1423662155, 'Logged in'),
(36, 1, 2, 'harperj', '83.100.245.194', 1423667962, 'Logged in'),
(37, 1, 2, 'harperj', '83.100.245.194', 1423668314, 'Logged out'),
(38, 1, 2, 'harperj', '83.100.245.194', 1423670410, 'Logged in'),
(39, 1, 2, 'harperj', '83.100.245.194', 1423671506, 'Logged out'),
(40, 1, 2, 'harperj', '87.102.21.100', 1423676983, 'Logged in'),
(41, 1, 2, 'harperj', '87.102.21.100', 1423696645, 'Logged out'),
(42, 1, 2, 'harperj', '81.153.163.162', 1423735696, 'Logged in'),
(43, 1, 2, 'harperj', '81.153.163.162', 1423736241, 'Logged in'),
(44, 1, 2, 'harperj', '87.102.21.100', 1423737003, 'Logged in'),
(45, 1, 2, 'harperj', '87.102.21.100', 1423740596, 'Logged in'),
(46, 1, 2, 'harperj', '81.153.163.162', 1423740935, 'Logged in'),
(47, 1, 2, 'harperj', '87.102.21.100', 1423744328, 'Logged in'),
(48, 1, 2, 'harperj', '81.153.163.162', 1423747907, 'Logged in'),
(49, 1, 2, 'harperj', '87.102.21.100', 1423749643, 'Logged in'),
(50, 1, 2, 'harperj', '87.102.21.100', 1423750203, 'Logged out'),
(51, 1, 2, 'harperj', '87.102.21.100', 1423755612, 'Logged in'),
(52, 1, 2, 'harperj', '87.102.21.100', 1423769021, 'Logged in'),
(53, 1, 1, 'admin', '94.72.244.112', 1423777660, 'Logged in'),
(54, 1, 1, 'admin', '94.72.244.112', 1423777707, 'Member profile created:&nbsp;&nbsp;wilsona'),
(55, 1, 3, 'wilsona', '94.72.244.112', 1423779013, 'Logged in'),
(56, 1, 1, 'admin', '94.72.244.112', 1423779056, 'Member Group Updated:&nbsp;&nbsp;HC Staff'),
(57, 1, 1, 'admin', '94.72.244.112', 1423779174, 'Member Group Updated:&nbsp;&nbsp;HC Staff'),
(58, 1, 1, 'admin', '94.72.244.112', 1423779401, 'Member Group Updated:&nbsp;&nbsp;HC Staff'),
(59, 1, 1, 'admin', '94.72.244.112', 1423779425, 'Member Group Updated:&nbsp;&nbsp;HC Staff'),
(60, 1, 2, 'harperj', '87.102.21.100', 1423779965, 'Logged in'),
(61, 1, 2, 'harperj', '87.102.21.100', 1423785831, 'Logged out'),
(62, 1, 2, 'harperj', '87.102.21.100', 1423830820, 'Logged in'),
(63, 1, 2, 'harperj', '87.102.21.100', 1423834001, 'Logged in'),
(64, 1, 2, 'harperj', '81.153.163.162', 1423835671, 'Logged in'),
(65, 1, 2, 'harperj', '87.102.21.100', 1423837559, 'Logged out'),
(66, 1, 2, 'harperj', '87.102.21.100', 1423837564, 'Logged in'),
(67, 1, 2, 'harperj', '81.153.163.162', 1423838812, 'Logged in'),
(68, 1, 2, 'harperj', '87.102.21.100', 1423840073, 'Logged in'),
(69, 1, 2, 'harperj', '87.102.21.100', 1423844997, 'Logged in'),
(70, 1, 1, 'admin', '94.72.244.112', 1424721468, 'Logged in'),
(71, 1, 3, 'wilsona', '94.72.244.112', 1424721524, 'Logged in'),
(72, 1, 1, 'admin', '94.72.244.112', 1424721587, 'Logged out'),
(73, 1, 3, 'wilsona', '94.72.244.112', 1424721593, 'Logged in'),
(74, 1, 3, 'wilsona', '94.72.244.112', 1424721621, 'Logged out'),
(75, 1, 1, 'admin', '94.72.244.112', 1424721628, 'Logged in'),
(76, 1, 1, 'admin', '94.72.244.112', 1424721717, 'Member Group Updated:&nbsp;&nbsp;HC Staff'),
(77, 1, 3, 'wilsona', '94.72.244.112', 1424721739, 'Logged in'),
(78, 1, 1, 'admin', '94.72.244.112', 1424721864, 'Member Group Updated:&nbsp;&nbsp;HC Staff'),
(79, 1, 1, 'admin', '94.72.244.112', 1424722075, 'Member Group Updated:&nbsp;&nbsp;HC Staff'),
(80, 1, 1, 'admin', '94.72.244.112', 1424722696, 'Member Group Updated:&nbsp;&nbsp;HC Staff'),
(81, 1, 1, 'admin', '94.72.244.112', 1424722719, 'Member Group Updated:&nbsp;&nbsp;HC Staff'),
(82, 1, 1, 'admin', '94.72.244.112', 1424722745, 'Member Group Updated:&nbsp;&nbsp;HC Staff'),
(83, 1, 3, 'wilsona', '94.72.244.112', 1424726018, 'Logged in'),
(84, 1, 1, 'admin', '94.72.244.112', 1424896261, 'Logged in'),
(85, 1, 2, 'harperj', '86.133.113.160', 1427291306, 'Logged in'),
(86, 1, 2, 'harperj', '86.133.113.160', 1427361537, 'Logged in'),
(87, 1, 2, 'harperj', '86.133.113.160', 1427797962, 'Logged in'),
(88, 1, 2, 'harperj', '87.102.21.100', 1429181393, 'Logged in'),
(89, 1, 2, 'harperj', '87.102.21.100', 1429186287, 'Logged in'),
(90, 1, 2, 'harperj', '87.102.21.100', 1429191992, 'Logged in'),
(91, 1, 1, 'admin', '94.72.244.112', 1429214878, 'Logged in'),
(92, 1, 2, 'harperj', '86.133.112.209', 1429787292, 'Logged in'),
(93, 1, 2, 'harperj', '86.133.112.209', 1429881421, 'Logged in'),
(94, 1, 2, 'harperj', '86.133.112.209', 1429884231, 'Logged in'),
(95, 1, 2, 'harperj', '86.133.114.35', 1430313446, 'Logged in'),
(96, 1, 1, 'admin', '94.72.244.112', 1430339311, 'Logged in'),
(97, 1, 2, 'harperj', '87.102.21.100', 1430381020, 'Logged in'),
(98, 1, 2, 'harperj', '87.102.21.100', 1430390250, 'Logged out'),
(99, 1, 2, 'harperj', '87.102.21.100', 1430396355, 'Logged in'),
(100, 1, 2, 'harperj', '86.133.114.35', 1430399491, 'Logged in'),
(101, 1, 2, 'harperj', '87.102.21.100', 1430404710, 'Logged in'),
(102, 1, 2, 'harperj', '87.102.21.100', 1430410709, 'Logged in'),
(103, 1, 2, 'harperj', '87.102.21.100', 1430419746, 'Logged in'),
(104, 1, 2, 'harperj', '87.102.21.100', 1430419878, 'Logged in'),
(105, 1, 1, 'admin', '94.72.244.112', 1434738025, 'Logged in'),
(106, 1, 1, 'admin', '94.72.244.112', 1434738970, 'Logged out'),
(107, 1, 1, 'admin', '94.72.244.112', 1434739264, 'Logged in'),
(108, 1, 1, 'admin', '94.72.244.112', 1434742728, 'Logged in'),
(109, 1, 1, 'admin', '94.72.244.112', 1434744073, 'Logged out'),
(110, 1, 2, 'harperj', '87.102.21.100', 1436435291, 'Logged in'),
(111, 1, 2, 'harperj', '87.102.21.100', 1436448062, 'Logged in'),
(112, 1, 2, 'harperj', '87.102.21.100', 1436465460, 'Logged in'),
(113, 1, 2, 'harperj', '87.102.21.100', 1436480752, 'Logged out'),
(114, 1, 2, 'harperj', '87.102.21.100', 1436480840, 'Logged in'),
(115, 1, 2, 'harperj', '87.102.21.100', 1436515888, 'Logged in'),
(116, 1, 2, 'harperj', '87.102.21.100', 1436553974, 'Logged in'),
(117, 1, 2, 'harperj', '87.102.21.100', 1436618495, 'Logged in'),
(118, 1, 2, 'harperj', '87.102.21.100', 1436618866, 'Logged out'),
(119, 1, 2, 'harperj', '87.102.21.100', 1436619065, 'Logged in'),
(120, 1, 2, 'harperj', '87.102.21.100', 1436619431, 'Logged in'),
(121, 1, 2, 'harperj', '87.102.21.100', 1436620166, 'Logged in'),
(122, 1, 2, 'harperj', '87.102.21.100', 1436620274, 'Logged in'),
(123, 1, 2, 'harperj', '87.102.21.100', 1436629203, 'Logged in'),
(124, 1, 2, 'harperj', '87.102.21.100', 1436811011, 'Logged in'),
(125, 1, 2, 'harperj', '87.102.21.100', 1436816278, 'Logged in'),
(126, 1, 2, 'harperj', '87.102.21.100', 1437422576, 'Logged in'),
(127, 1, 1, 'admin', '94.72.244.112', 1439150770, 'Logged in'),
(128, 1, 1, 'admin', '94.72.244.112', 1439150789, 'Field Group Created:&nbsp;Image block'),
(129, 1, 1, 'admin', '94.72.244.112', 1439151138, 'Channel Created:&nbsp;&nbsp;Image blocks'),
(130, 1, 2, 'harperj', '87.102.21.100', 1439828042, 'Logged in'),
(131, 1, 2, 'harperj', '87.102.21.100', 1439830403, 'Logged in'),
(132, 1, 2, 'harperj', '87.102.21.100', 1439830404, 'Logged in'),
(133, 1, 2, 'harperj', '87.102.21.100', 1439830866, 'Logged in'),
(134, 1, 2, 'harperj', '87.102.21.100', 1439838834, 'Logged in'),
(135, 1, 2, 'harperj', '87.102.21.100', 1439840870, 'Logged out'),
(136, 1, 1, 'admin', '94.72.244.112', 1439842434, 'Logged in'),
(137, 1, 1, 'admin', '94.72.244.112', 1439842501, 'Member Group Updated:&nbsp;&nbsp;HC Staff'),
(138, 1, 2, 'harperj', '87.102.21.100', 1439883569, 'Logged in'),
(139, 1, 2, 'harperj', '87.102.21.100', 1439891479, 'Logged in'),
(140, 1, 2, 'harperj', '87.102.21.100', 1439894754, 'Logged in'),
(141, 1, 2, 'harperj', '87.102.21.100', 1440106947, 'Logged in'),
(142, 1, 2, 'harperj', '87.102.21.100', 1440106991, 'Logged out'),
(143, 1, 1, 'admin', '94.72.244.112', 1440706545, 'Logged in'),
(144, 1, 1, 'admin', '94.72.244.112', 1440708190, 'Logged out'),
(145, 1, 2, 'harperj', '87.102.21.100', 1440747664, 'Logged in'),
(146, 1, 2, 'harperj', '87.102.21.100', 1440754249, 'Logged in'),
(147, 1, 2, 'harperj', '87.102.21.100', 1440767163, 'Logged in'),
(148, 1, 2, 'harperj', '87.102.21.100', 1440775619, 'Logged in'),
(149, 1, 2, 'harperj', '87.102.21.100', 1440783959, 'Logged in'),
(150, 1, 2, 'harperj', '81.131.220.32', 1441881131, 'Logged in'),
(151, 1, 2, 'harperj', '87.102.21.100', 1441968385, 'Logged in'),
(152, 1, 2, 'harperj', '87.102.21.100', 1441977006, 'Logged in'),
(153, 1, 1, 'admin', '94.72.244.112', 1442352237, 'Logged in'),
(154, 1, 2, 'harperj', '87.102.21.100', 1444986619, 'Logged in'),
(155, 1, 2, 'harperj', '87.102.21.100', 1444990762, 'Logged out'),
(156, 1, 2, 'harperj', '87.102.21.100', 1445018559, 'Logged in'),
(157, 1, 2, 'harperj', '87.102.21.100', 1445018770, 'Logged out');

-- --------------------------------------------------------

--
-- Table structure for table `exp_cp_search_index`
--

CREATE TABLE IF NOT EXISTS `exp_cp_search_index` (
  `search_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `controller` varchar(20) DEFAULT NULL,
  `method` varchar(50) DEFAULT NULL,
  `language` varchar(20) DEFAULT NULL,
  `access` varchar(50) DEFAULT NULL,
  `keywords` text,
  PRIMARY KEY (`search_id`),
  FULLTEXT KEY `keywords` (`keywords`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_cr_twitter_settings`
--

CREATE TABLE IF NOT EXISTS `exp_cr_twitter_settings` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(8) unsigned NOT NULL DEFAULT '1',
  `var` varchar(60) NOT NULL,
  `var_value` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `exp_cr_twitter_settings`
--

INSERT INTO `exp_cr_twitter_settings` (`id`, `site_id`, `var`, `var_value`) VALUES
(1, 1, 'consumer_key', 'kgRkA9sO8S2OjdbqFksp9B8yO'),
(2, 1, 'consumer_secret', 'l7wU6CwUPVDM3ZuS43HzN9qp7VrydblnwkXEHVzGXmFBnO43Ga');

-- --------------------------------------------------------

--
-- Table structure for table `exp_developer_log`
--

CREATE TABLE IF NOT EXISTS `exp_developer_log` (
  `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` int(10) unsigned NOT NULL,
  `viewed` char(1) NOT NULL DEFAULT 'n',
  `description` text,
  `function` varchar(100) DEFAULT NULL,
  `line` int(10) unsigned DEFAULT NULL,
  `file` varchar(255) DEFAULT NULL,
  `deprecated_since` varchar(10) DEFAULT NULL,
  `use_instead` varchar(100) DEFAULT NULL,
  `template_id` int(10) unsigned NOT NULL DEFAULT '0',
  `template_name` varchar(100) DEFAULT NULL,
  `template_group` varchar(100) DEFAULT NULL,
  `addon_module` varchar(100) DEFAULT NULL,
  `addon_method` varchar(100) DEFAULT NULL,
  `snippets` text,
  `hash` char(32) NOT NULL,
  PRIMARY KEY (`log_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_email_cache`
--

CREATE TABLE IF NOT EXISTS `exp_email_cache` (
  `cache_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `cache_date` int(10) unsigned NOT NULL DEFAULT '0',
  `total_sent` int(6) unsigned NOT NULL,
  `from_name` varchar(70) NOT NULL,
  `from_email` varchar(75) NOT NULL,
  `recipient` text NOT NULL,
  `cc` text NOT NULL,
  `bcc` text NOT NULL,
  `recipient_array` mediumtext NOT NULL,
  `subject` varchar(120) NOT NULL,
  `message` mediumtext NOT NULL,
  `plaintext_alt` mediumtext NOT NULL,
  `mailinglist` char(1) NOT NULL DEFAULT 'n',
  `mailtype` varchar(6) NOT NULL,
  `text_fmt` varchar(40) NOT NULL,
  `wordwrap` char(1) NOT NULL DEFAULT 'y',
  `priority` char(1) NOT NULL DEFAULT '3',
  PRIMARY KEY (`cache_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_email_cache_mg`
--

CREATE TABLE IF NOT EXISTS `exp_email_cache_mg` (
  `cache_id` int(6) unsigned NOT NULL,
  `group_id` smallint(4) NOT NULL,
  PRIMARY KEY (`cache_id`,`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `exp_email_cache_ml`
--

CREATE TABLE IF NOT EXISTS `exp_email_cache_ml` (
  `cache_id` int(6) unsigned NOT NULL,
  `list_id` smallint(4) NOT NULL,
  PRIMARY KEY (`cache_id`,`list_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `exp_email_console_cache`
--

CREATE TABLE IF NOT EXISTS `exp_email_console_cache` (
  `cache_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `cache_date` int(10) unsigned NOT NULL DEFAULT '0',
  `member_id` int(10) unsigned NOT NULL,
  `member_name` varchar(50) NOT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `recipient` varchar(75) NOT NULL,
  `recipient_name` varchar(50) NOT NULL,
  `subject` varchar(120) NOT NULL,
  `message` mediumtext NOT NULL,
  PRIMARY KEY (`cache_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_email_tracker`
--

CREATE TABLE IF NOT EXISTS `exp_email_tracker` (
  `email_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `email_date` int(10) unsigned NOT NULL DEFAULT '0',
  `sender_ip` varchar(45) NOT NULL,
  `sender_email` varchar(75) NOT NULL,
  `sender_username` varchar(50) NOT NULL,
  `number_recipients` int(4) unsigned NOT NULL DEFAULT '1',
  PRIMARY KEY (`email_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_entry_versioning`
--

CREATE TABLE IF NOT EXISTS `exp_entry_versioning` (
  `version_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned NOT NULL,
  `channel_id` int(4) unsigned NOT NULL,
  `author_id` int(10) unsigned NOT NULL,
  `version_date` int(10) NOT NULL,
  `version_data` mediumtext NOT NULL,
  PRIMARY KEY (`version_id`),
  KEY `entry_id` (`entry_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_extensions`
--

CREATE TABLE IF NOT EXISTS `exp_extensions` (
  `extension_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `class` varchar(50) NOT NULL DEFAULT '',
  `method` varchar(50) NOT NULL DEFAULT '',
  `hook` varchar(50) NOT NULL DEFAULT '',
  `settings` text NOT NULL,
  `priority` int(2) NOT NULL DEFAULT '10',
  `version` varchar(10) NOT NULL DEFAULT '',
  `enabled` char(1) NOT NULL DEFAULT 'y',
  PRIMARY KEY (`extension_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `exp_extensions`
--

INSERT INTO `exp_extensions` (`extension_id`, `class`, `method`, `hook`, `settings`, `priority`, `version`, `enabled`) VALUES
(1, 'Rte_ext', 'myaccount_nav_setup', 'myaccount_nav_setup', '', 10, '1.0.1', 'y'),
(2, 'Rte_ext', 'cp_menu_array', 'cp_menu_array', '', 10, '1.0.1', 'y');

-- --------------------------------------------------------

--
-- Table structure for table `exp_fieldtypes`
--

CREATE TABLE IF NOT EXISTS `exp_fieldtypes` (
  `fieldtype_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `version` varchar(12) NOT NULL,
  `settings` text,
  `has_global_settings` char(1) DEFAULT 'n',
  PRIMARY KEY (`fieldtype_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;

--
-- Dumping data for table `exp_fieldtypes`
--

INSERT INTO `exp_fieldtypes` (`fieldtype_id`, `name`, `version`, `settings`, `has_global_settings`) VALUES
(1, 'select', '1.0', 'YTowOnt9', 'n'),
(2, 'text', '1.0', 'YTowOnt9', 'n'),
(3, 'textarea', '1.0', 'YTowOnt9', 'n'),
(4, 'date', '1.0', 'YTowOnt9', 'n'),
(5, 'file', '1.0', 'YTowOnt9', 'n'),
(6, 'grid', '1.0', 'YTowOnt9', 'n'),
(7, 'multi_select', '1.0', 'YTowOnt9', 'n'),
(8, 'checkboxes', '1.0', 'YTowOnt9', 'n'),
(9, 'radio', '1.0', 'YTowOnt9', 'n'),
(10, 'relationship', '1.0', 'YTowOnt9', 'n'),
(11, 'rte', '1.0', 'YTowOnt9', 'n');

-- --------------------------------------------------------

--
-- Table structure for table `exp_field_formatting`
--

CREATE TABLE IF NOT EXISTS `exp_field_formatting` (
  `formatting_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `field_id` int(10) unsigned NOT NULL,
  `field_fmt` varchar(40) NOT NULL,
  PRIMARY KEY (`formatting_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=77 ;

--
-- Dumping data for table `exp_field_formatting`
--

INSERT INTO `exp_field_formatting` (`formatting_id`, `field_id`, `field_fmt`) VALUES
(1, 1, 'none'),
(2, 1, 'br'),
(3, 1, 'markdown'),
(4, 1, 'xhtml'),
(5, 2, 'none'),
(6, 2, 'br'),
(7, 2, 'markdown'),
(8, 2, 'xhtml'),
(9, 3, 'none'),
(10, 3, 'br'),
(11, 3, 'markdown'),
(12, 3, 'xhtml'),
(13, 4, 'none'),
(14, 4, 'br'),
(15, 4, 'markdown'),
(16, 4, 'xhtml'),
(17, 5, 'none'),
(18, 5, 'br'),
(19, 5, 'markdown'),
(20, 5, 'xhtml'),
(21, 6, 'none'),
(22, 6, 'br'),
(23, 6, 'markdown'),
(24, 6, 'xhtml'),
(25, 7, 'none'),
(26, 7, 'br'),
(27, 7, 'markdown'),
(28, 7, 'xhtml'),
(29, 8, 'none'),
(30, 8, 'br'),
(31, 8, 'markdown'),
(32, 8, 'xhtml'),
(33, 9, 'none'),
(34, 9, 'br'),
(35, 9, 'markdown'),
(36, 9, 'xhtml'),
(37, 10, 'none'),
(38, 10, 'br'),
(39, 10, 'markdown'),
(40, 10, 'xhtml'),
(41, 11, 'none'),
(42, 11, 'br'),
(43, 11, 'markdown'),
(44, 11, 'xhtml'),
(45, 12, 'none'),
(46, 12, 'br'),
(47, 12, 'markdown'),
(48, 12, 'xhtml'),
(49, 13, 'none'),
(50, 13, 'br'),
(51, 13, 'markdown'),
(52, 13, 'xhtml'),
(53, 14, 'none'),
(54, 14, 'br'),
(55, 14, 'markdown'),
(56, 14, 'xhtml'),
(57, 15, 'none'),
(58, 15, 'br'),
(59, 15, 'markdown'),
(60, 15, 'xhtml'),
(61, 16, 'none'),
(62, 16, 'br'),
(63, 16, 'markdown'),
(64, 16, 'xhtml'),
(65, 17, 'none'),
(66, 17, 'br'),
(67, 17, 'markdown'),
(68, 17, 'xhtml'),
(69, 18, 'none'),
(70, 18, 'br'),
(71, 18, 'markdown'),
(72, 18, 'xhtml'),
(73, 19, 'none'),
(74, 19, 'br'),
(75, 19, 'markdown'),
(76, 19, 'xhtml');

-- --------------------------------------------------------

--
-- Table structure for table `exp_field_groups`
--

CREATE TABLE IF NOT EXISTS `exp_field_groups` (
  `group_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_name` varchar(50) NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `exp_field_groups`
--

INSERT INTO `exp_field_groups` (`group_id`, `site_id`, `group_name`) VALUES
(1, 1, 'testimonial-fields'),
(2, 1, 'static-page-fields'),
(3, 1, 'services-fields'),
(4, 1, 'work-fields'),
(5, 1, 'Single entry fields'),
(6, 1, 'Image block');

-- --------------------------------------------------------

--
-- Table structure for table `exp_files`
--

CREATE TABLE IF NOT EXISTS `exp_files` (
  `file_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned DEFAULT '1',
  `title` varchar(255) DEFAULT NULL,
  `upload_location_id` int(4) unsigned DEFAULT '0',
  `rel_path` varchar(255) DEFAULT NULL,
  `mime_type` varchar(255) DEFAULT NULL,
  `file_name` varchar(255) DEFAULT NULL,
  `file_size` int(10) DEFAULT '0',
  `description` text,
  `credit` varchar(255) DEFAULT NULL,
  `location` varchar(255) DEFAULT NULL,
  `uploaded_by_member_id` int(10) unsigned DEFAULT '0',
  `upload_date` int(10) DEFAULT NULL,
  `modified_by_member_id` int(10) unsigned DEFAULT '0',
  `modified_date` int(10) DEFAULT NULL,
  `file_hw_original` varchar(20) NOT NULL DEFAULT '',
  PRIMARY KEY (`file_id`),
  KEY `upload_location_id` (`upload_location_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=389 ;

--
-- Dumping data for table `exp_files`
--

INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES
(1, 1, 'graphic-design.png', 2, '/private/var/www/vhosts/dev.harper-creative.co.uk/httpdocs/assets/img/uploads/services/graphic-design.png', 'image/png', 'graphic-design.png', 5806, NULL, NULL, NULL, 1, 1422567252, 1, 1422567252, '127 127'),
(2, 1, 'online.png', 2, '/private/var/www/vhosts/dev.harper-creative.co.uk/httpdocs/assets/img/uploads/services/online.png', 'image/png', 'online.png', 3379, NULL, NULL, NULL, 1, 1422567295, 1, 1422567295, '127 127'),
(3, 1, 'events.png', 2, '/private/var/www/vhosts/dev.harper-creative.co.uk/httpdocs/assets/img/uploads/services/events.png', 'image/png', 'events.png', 4434, NULL, NULL, NULL, 1, 1422567332, 1, 1422567332, '127 127'),
(4, 1, 'pr.png', 2, '/private/var/www/vhosts/dev.harper-creative.co.uk/httpdocs/assets/img/uploads/services/pr.png', 'image/png', 'pr.png', 3922, NULL, NULL, NULL, 1, 1422567354, 1, 1422567354, '127 127'),
(5, 1, 'marketing.png', 2, '/private/var/www/vhosts/dev.harper-creative.co.uk/httpdocs/assets/img/uploads/services/marketing.png', 'image/png', 'marketing.png', 4321, NULL, NULL, NULL, 1, 1422567384, 1, 1422567384, '127 127'),
(6, 1, 'film.png', 2, '/private/var/www/vhosts/dev.harper-creative.co.uk/httpdocs/assets/img/uploads/services/film.png', 'image/png', 'film.png', 4116, NULL, NULL, NULL, 1, 1422567416, 1, 1422567416, '127 127'),
(7, 1, 'latest_greatnewsome_home.jpg', 1, '/private/var/www/vhosts/dev.harper-creative.co.uk/httpdocs/assets/img/uploads/work/latest_greatnewsome_home.jpg', 'image/jpeg', 'latest_greatnewsome_home.jpg', 107592, NULL, NULL, NULL, 1, 1422697304, 1, 1422697304, '547 820'),
(8, 1, 'castle-combe-1.jpg', 1, '/private/var/www/vhosts/dev.harper-creative.co.uk/httpdocs/assets/img/uploads/work/castle-combe-1.jpg', 'image/jpeg', 'castle-combe-1.jpg', 68884, NULL, NULL, NULL, 1, 1422697375, 1, 1422697375, '709 300'),
(9, 1, 'castle-combe-2.jpg', 1, '/private/var/www/vhosts/dev.harper-creative.co.uk/httpdocs/assets/img/uploads/work/castle-combe-2.jpg', 'image/jpeg', 'castle-combe-2.jpg', 65966, NULL, NULL, NULL, 1, 1422697391, 1, 1422697391, '709 300'),
(10, 1, 'wensleydale-online-1.jpg', 1, '/private/var/www/vhosts/dev.harper-creative.co.uk/httpdocs/assets/img/uploads/work/wensleydale-online-1.jpg', 'image/jpeg', 'wensleydale-online-1.jpg', 54456, NULL, NULL, NULL, 1, 1422814468, 2, 1423690712, '441 640'),
(11, 1, 'wensleydale-online-2.jpg', 1, '/private/var/www/vhosts/dev.harper-creative.co.uk/httpdocs/assets/img/uploads/work/wensleydale-online-2.jpg', 'image/jpeg', 'wensleydale-online-2.jpg', 51098, NULL, NULL, NULL, 1, 1422814491, 2, 1423690726, '441 640'),
(12, 1, 'wensleydale-brewery-1.jpg', 1, '/private/var/www/vhosts/dev.harper-creative.co.uk/httpdocs/assets/img/uploads/work/wensleydale-brewery-1.jpg', 'image/jpeg', 'wensleydale-brewery-1.jpg', 75930, NULL, NULL, NULL, 1, 1422996893, 2, 1423685711, '737 312'),
(13, 1, 'wensleydale-brewery-2.jpg', 1, '/private/var/www/vhosts/dev.harper-creative.co.uk/httpdocs/assets/img/uploads/work/wensleydale-brewery-2.jpg', 'image/jpeg', 'wensleydale-brewery-2.jpg', 77128, NULL, NULL, NULL, 1, 1422996913, 1, 1422996913, '711 247'),
(14, 1, 'space-hop-1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/space-hop-1.jpg', 'image/jpeg', 'space-hop-1.jpg', 78510, NULL, NULL, NULL, 1, 1423081389, 2, 1423692735, '737 312'),
(15, 1, 'space-hop-2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/space-hop-2.jpg', 'image/jpeg', 'space-hop-2.jpg', 68628, NULL, NULL, NULL, 1, 1423081405, 2, 1423692747, '737 312'),
(16, 1, 'space-hop-feature.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/space-hop-feature.jpg', 'image/jpeg', 'space-hop-feature.jpg', 26921, NULL, NULL, NULL, 1, 1423081471, 1, 1423081471, '269 300'),
(17, 1, 'daleside-1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/daleside-1.jpg', 'image/jpeg', 'daleside-1.jpg', 50770, NULL, NULL, NULL, 1, 1423081905, 2, 1423690607, '441 640'),
(18, 1, 'daleside-2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/daleside-2.jpg', 'image/jpeg', 'daleside-2.jpg', 50442, NULL, NULL, NULL, 1, 1423081956, 2, 1423690621, '441 640'),
(19, 1, 'the-big-issue-feature.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/the-big-issue-feature.jpg', 'image/jpeg', 'the-big-issue-feature.jpg', 22190, NULL, NULL, NULL, 1, 1423082468, 1, 1423082468, '187 246'),
(20, 1, 'the-big-issue-1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/the-big-issue-1.jpg', 'image/jpeg', 'the-big-issue-1.jpg', 68383, NULL, NULL, NULL, 1, 1423082494, 1, 1423082494, '708 247'),
(21, 1, 'the-big-issue-2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/the-big-issue-2.jpg', 'image/jpeg', 'the-big-issue-2.jpg', 79821, NULL, NULL, NULL, 1, 1423082527, 1, 1423082527, '669 279'),
(22, 1, 'Great-newsome-brewery.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Great-newsome-brewery.jpg', 'image/jpeg', 'Great-newsome-brewery.jpg', 27453, NULL, NULL, NULL, 2, 1423678451, 2, 1423678451, '283 283'),
(23, 1, 'Great-newsome-brewery.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Great-newsome-brewery.png', 'image/png', 'Great-newsome-brewery.png', 268196, NULL, NULL, NULL, 2, 1423678868, 2, 1423757027, '320 480'),
(24, 1, 'NHS-Mental-health.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/NHS-Mental-health.png', 'image/png', 'NHS-Mental-health.png', 196250, NULL, NULL, NULL, 2, 1423679092, 2, 1423744694, '320 480'),
(25, 1, 'NHS-mental-health-work.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/NHS-mental-health-work.jpg', 'image/jpeg', 'NHS-mental-health-work.jpg', 30904, NULL, NULL, NULL, 2, 1423679496, 2, 1423679496, '340 482'),
(26, 1, 'NHS-mental-health-work2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/NHS-mental-health-work2.jpg', 'image/jpeg', 'NHS-mental-health-work2.jpg', 43909, NULL, NULL, NULL, 2, 1423679509, 2, 1423679509, '340 482'),
(27, 1, 'Drinkless.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Drinkless.png', 'image/png', 'Drinkless.png', 276603, NULL, NULL, NULL, 2, 1423681855, 2, 1423744362, '320 480'),
(28, 1, 'drinkless-banner.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/drinkless-banner.jpg', 'image/jpeg', 'drinkless-banner.jpg', 63795, NULL, NULL, NULL, 2, 1423681869, 2, 1423681869, '737 312'),
(29, 1, 'drinkless-work.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/drinkless-work.jpg', 'image/jpeg', 'drinkless-work.jpg', 53985, NULL, NULL, NULL, 2, 1423681884, 2, 1423681884, '737 312'),
(30, 1, 'Castle-combe-brewery.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Castle-combe-brewery.png', 'image/png', 'Castle-combe-brewery.png', 185477, NULL, NULL, NULL, 2, 1423682175, 2, 1423745299, '320 480'),
(31, 1, 'Humber-hop-feature.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Humber-hop-feature.png', 'image/png', 'Humber-hop-feature.png', 128512, NULL, NULL, NULL, 2, 1423682520, 2, 1423745585, '320 480'),
(32, 1, 'GNB-banner.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-banner.jpg', 'image/jpeg', 'GNB-banner.jpg', 72090, NULL, NULL, NULL, 2, 1423682957, 2, 1423682957, '737 312'),
(33, 1, 'GNB-work.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-work.jpg', 'image/jpeg', 'GNB-work.jpg', 62740, NULL, NULL, NULL, 2, 1423682972, 2, 1423682972, '737 312'),
(34, 1, 'YMCA-humber.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-humber.png', 'image/png', 'YMCA-humber.png', 202414, NULL, NULL, NULL, 2, 1423683435, 2, 1423758045, '320 480'),
(35, 1, 'YMCA-banner.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-banner.jpg', 'image/jpeg', 'YMCA-banner.jpg', 79165, NULL, NULL, NULL, 2, 1423683459, 2, 1423683459, '737 312'),
(36, 1, 'YMCA-work.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-work.jpg', 'image/jpeg', 'YMCA-work.jpg', 63508, NULL, NULL, NULL, 2, 1423683470, 2, 1423683470, '737 312'),
(37, 1, 'Big-issue-foundation.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Big-issue-foundation.png', 'image/png', 'Big-issue-foundation.png', 280484, NULL, NULL, NULL, 2, 1423683758, 2, 1423757668, '320 480'),
(38, 1, 'Wensleydale-brewery.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Wensleydale-brewery.png', 'image/png', 'Wensleydale-brewery.png', 286689, NULL, NULL, NULL, 2, 1423684625, 2, 1423745031, '320 480'),
(39, 1, 'Wensleydale-brewery-work.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Wensleydale-brewery-work.jpg', 'image/jpeg', 'Wensleydale-brewery-work.jpg', 77629, NULL, NULL, NULL, 2, 1423685458, 2, 1423685458, '737 312'),
(41, 1, 'Tom-logo.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tom-logo.png', 'image/png', 'Tom-logo.png', 165775, NULL, NULL, NULL, 2, 1423686660, 2, 1423755641, '320 480'),
(42, 1, 'tom-fruit-machine1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/tom-fruit-machine1.jpg', 'image/jpeg', 'tom-fruit-machine1.jpg', 58778, NULL, NULL, NULL, 2, 1423686677, 2, 1423686677, '737 312'),
(43, 1, 'tom-branded.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/tom-branded.jpg', 'image/jpeg', 'tom-branded.jpg', 63529, NULL, NULL, NULL, 2, 1423686702, 2, 1423686702, '737 312'),
(48, 1, 'Daleside-web.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Daleside-web.png', 'image/png', 'Daleside-web.png', 215214, NULL, NULL, NULL, 2, 1423688127, 2, 1423756853, '320 480'),
(49, 1, 'wensleydale-online.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/wensleydale-online.png', 'image/png', 'wensleydale-online.png', 267080, NULL, NULL, NULL, 2, 1423688353, 2, 1423756604, '320 480'),
(50, 1, 'rk-atkinson-online-1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/rk-atkinson-online-1.jpg', 'image/jpeg', 'rk-atkinson-online-1.jpg', 33772, NULL, NULL, NULL, 2, 1423688827, 2, 1423690451, '441 640'),
(51, 1, 'rk-atkinson-online-2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/rk-atkinson-online-2.jpg', 'image/jpeg', 'rk-atkinson-online-2.jpg', 29194, NULL, NULL, NULL, 2, 1423688839, 2, 1423690475, '441 640'),
(52, 1, 'rk-atkinson-online.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/rk-atkinson-online.png', 'image/png', 'rk-atkinson-online.png', 242801, NULL, NULL, NULL, 2, 1423688850, 2, 1423756205, '320 480'),
(53, 1, 'YMCA-online.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-online.png', 'image/png', 'YMCA-online.png', 195604, NULL, NULL, NULL, 2, 1423689182, 2, 1423756077, '320 480'),
(54, 1, 'YMCA-online1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-online1.jpg', 'image/jpeg', 'YMCA-online1.jpg', 55695, NULL, NULL, NULL, 2, 1423689206, 2, 1423690835, '441 640'),
(55, 1, 'YMCA-online2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-online2.jpg', 'image/jpeg', 'YMCA-online2.jpg', 45189, NULL, NULL, NULL, 2, 1423689219, 2, 1423690850, '441 640'),
(64, 1, 'Child-dynamix-online.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Child-dynamix-online.png', 'image/png', 'Child-dynamix-online.png', 188293, NULL, NULL, NULL, 2, 1423690922, 2, 1423757421, '320 480'),
(65, 1, 'Child-dynamix-online1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Child-dynamix-online1.jpg', 'image/jpeg', 'Child-dynamix-online1.jpg', 37325, NULL, NULL, NULL, 2, 1423690936, 2, 1423690936, '441 640'),
(66, 1, 'Child-dynamix-online2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Child-dynamix-online2.jpg', 'image/jpeg', 'Child-dynamix-online2.jpg', 35584, NULL, NULL, NULL, 2, 1423690945, 2, 1423690945, '441 640'),
(67, 1, 's-mathers-online.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/s-mathers-online.png', 'image/png', 's-mathers-online.png', 106977, NULL, NULL, NULL, 2, 1423691531, 2, 1423691531, '283 283'),
(68, 1, 's-mathers-online1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/s-mathers-online1.jpg', 'image/jpeg', 's-mathers-online1.jpg', 42895, NULL, NULL, NULL, 2, 1423691554, 2, 1423691554, '441 640'),
(69, 1, 's-mathers-online2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/s-mathers-online2.jpg', 'image/jpeg', 's-mathers-online2.jpg', 36977, NULL, NULL, NULL, 2, 1423691567, 2, 1423691567, '441 640'),
(70, 1, 'drinkless-online.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/drinkless-online.png', 'image/png', 'drinkless-online.png', 110715, NULL, NULL, NULL, 2, 1423692121, 2, 1423755915, '320 480'),
(71, 1, 'drinkless-online1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/drinkless-online1.jpg', 'image/jpeg', 'drinkless-online1.jpg', 36721, NULL, NULL, NULL, 2, 1423692139, 2, 1423692139, '441 640'),
(72, 1, 'drinkless-online2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/drinkless-online2.jpg', 'image/jpeg', 'drinkless-online2.jpg', 39936, NULL, NULL, NULL, 2, 1423692156, 2, 1423692156, '441 640'),
(75, 1, 'daleside-morocco.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/daleside-morocco.png', 'image/png', 'daleside-morocco.png', 200141, NULL, NULL, NULL, 2, 1423693905, 2, 1423741617, '320 480'),
(76, 1, 'daleside-morocco1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/daleside-morocco1.jpg', 'image/jpeg', 'daleside-morocco1.jpg', 73656, NULL, NULL, NULL, 2, 1423693928, 2, 1423693928, '737 312'),
(77, 1, 'daleside-morocco2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/daleside-morocco2.jpg', 'image/jpeg', 'daleside-morocco2.jpg', 61225, NULL, NULL, NULL, 2, 1423693946, 2, 1423693946, '737 312'),
(78, 1, 'GNB-maillot-jaune.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-maillot-jaune.png', 'image/png', 'GNB-maillot-jaune.png', 321597, NULL, NULL, NULL, 2, 1423694720, 2, 1423740626, '320 480'),
(79, 1, 'GNB-maillot-jaune2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-maillot-jaune2.jpg', 'image/jpeg', 'GNB-maillot-jaune2.jpg', 55378, NULL, NULL, NULL, 2, 1423694741, 2, 1423694741, '737 312'),
(80, 1, 'GNB-maillot-jaune1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-maillot-jaune1.jpg', 'image/jpeg', 'GNB-maillot-jaune1.jpg', 56934, NULL, NULL, NULL, 2, 1423694755, 2, 1423694755, '737 312'),
(81, 1, 'Wensleydale-brewery-PR.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Wensleydale-brewery-PR.png', 'image/png', 'Wensleydale-brewery-PR.png', 203684, NULL, NULL, NULL, 2, 1423696619, 2, 1423746758, '320 480'),
(100, 1, 'Brid-ale-fest.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Brid-ale-fest.png', 'image/png', 'Brid-ale-fest.png', 176753, NULL, NULL, NULL, 2, 1423759266, 2, 1423759266, '320 480'),
(101, 1, 'Brid-ale-fest-banner.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Brid-ale-fest-banner.jpg', 'image/jpeg', 'Brid-ale-fest-banner.jpg', 67482, NULL, NULL, NULL, 2, 1423759289, 2, 1423759289, '737 312'),
(102, 1, 'Brid-ale-fest-other.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Brid-ale-fest-other.jpg', 'image/jpeg', 'Brid-ale-fest-other.jpg', 58286, NULL, NULL, NULL, 2, 1423759308, 2, 1423759308, '737 312'),
(103, 1, 'Tom-davies-tennis-school.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tom-davies-tennis-school.png', 'image/png', 'Tom-davies-tennis-school.png', 48691, NULL, NULL, NULL, 2, 1423759651, 2, 1423759651, '320 480'),
(104, 1, 'Tom-davies-tennis-school1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tom-davies-tennis-school1.jpg', 'image/jpeg', 'Tom-davies-tennis-school1.jpg', 67041, NULL, NULL, NULL, 2, 1423759674, 2, 1423759674, '441 640'),
(105, 1, 'Tom-davies-tennis-school2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tom-davies-tennis-school2.jpg', 'image/jpeg', 'Tom-davies-tennis-school2.jpg', 59197, NULL, NULL, NULL, 2, 1423759690, 2, 1423759690, '441 640'),
(106, 1, 'andrew-jones-pies.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/andrew-jones-pies.png', 'image/png', 'andrew-jones-pies.png', 185682, NULL, NULL, NULL, 2, 1423760794, 2, 1423760794, '320 480'),
(107, 1, 'andrew-jones-pies1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/andrew-jones-pies1.jpg', 'image/jpeg', 'andrew-jones-pies1.jpg', 62444, NULL, NULL, NULL, 2, 1423760819, 2, 1423760819, '737 312'),
(108, 1, 'andrew-jones-pies2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/andrew-jones-pies2.jpg', 'image/jpeg', 'andrew-jones-pies2.jpg', 52982, NULL, NULL, NULL, 2, 1423760833, 2, 1423760833, '737 312'),
(109, 1, 'Tom-Speed-Dating.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tom-Speed-Dating.png', 'image/png', 'Tom-Speed-Dating.png', 228588, NULL, NULL, NULL, 2, 1423761839, 2, 1423761839, '320 480'),
(110, 1, 'Tom-Speed-Dating-2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tom-Speed-Dating-2.jpg', 'image/jpeg', 'Tom-Speed-Dating-2.jpg', 90092, NULL, NULL, NULL, 2, 1423761859, 2, 1423761859, '441 640'),
(111, 1, 'tiger-trust.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/tiger-trust.png', 'image/png', 'tiger-trust.png', 255273, NULL, NULL, NULL, 2, 1423762842, 2, 1423762842, '320 480'),
(112, 1, 'Tigers-banner.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tigers-banner.jpg', 'image/jpeg', 'Tigers-banner.jpg', 66806, NULL, NULL, NULL, 2, 1423762870, 2, 1423762870, '737 312'),
(113, 1, 'Tigers-work.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tigers-work.jpg', 'image/jpeg', 'Tigers-work.jpg', 652636, NULL, NULL, NULL, 2, 1423762896, 2, 1436481266, '1000 544'),
(114, 1, 'Tigers-film.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tigers-film.png', 'image/png', 'Tigers-film.png', 9503, NULL, NULL, NULL, 2, 1423769068, 2, 1429196718, '320 480'),
(115, 1, 'Tigers-film1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tigers-film1.jpg', 'image/jpeg', 'Tigers-film1.jpg', 102830, NULL, NULL, NULL, 2, 1423769107, 2, 1423769107, '537 956'),
(116, 1, 'Tigers-film2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tigers-film2.jpg', 'image/jpeg', 'Tigers-film2.jpg', 62341, NULL, NULL, NULL, 2, 1423769122, 2, 1423769122, '537 956'),
(118, 1, 'Wellbeing-games-film.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Wellbeing-games-film.png', 'image/png', 'Wellbeing-games-film.png', 10025, NULL, NULL, NULL, 2, 1423770498, 2, 1429197326, '320 480'),
(119, 1, 'Wellbeing-games-film1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Wellbeing-games-film1.jpg', 'image/jpeg', 'Wellbeing-games-film1.jpg', 68813, NULL, NULL, NULL, 2, 1423770522, 2, 1423770522, '537 956'),
(120, 1, 'Wellbeing-games-film2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Wellbeing-games-film2.jpg', 'image/jpeg', 'Wellbeing-games-film2.jpg', 87982, NULL, NULL, NULL, 2, 1423770538, 2, 1423770538, '537 956'),
(121, 1, 'Meet-the-boozers.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Meet-the-boozers.png', 'image/png', 'Meet-the-boozers.png', 193260, NULL, NULL, NULL, 2, 1423771587, 2, 1423771587, '320 480'),
(122, 1, 'Meet-the-boozers1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Meet-the-boozers1.jpg', 'image/jpeg', 'Meet-the-boozers1.jpg', 81265, NULL, NULL, NULL, 2, 1423771603, 2, 1423771603, '537 956'),
(123, 1, 'Meet-the-boozers2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Meet-the-boozers2.jpg', 'image/jpeg', 'Meet-the-boozers2.jpg', 79104, NULL, NULL, NULL, 2, 1423771617, 2, 1423771617, '537 956'),
(124, 1, 'Renew-film.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Renew-film.png', 'image/png', 'Renew-film.png', 8520, NULL, NULL, NULL, 2, 1423772666, 2, 1429192035, '320 480'),
(125, 1, 'Renew-film1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Renew-film1.jpg', 'image/jpeg', 'Renew-film1.jpg', 73390, NULL, NULL, NULL, 2, 1423772692, 2, 1423772692, '537 956'),
(126, 1, 'Renew-film2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Renew-film2.jpg', 'image/jpeg', 'Renew-film2.jpg', 78377, NULL, NULL, NULL, 2, 1423772710, 2, 1423772710, '537 956'),
(127, 1, 'GNB-film.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-film.png', 'image/png', 'GNB-film.png', 7649, NULL, NULL, NULL, 2, 1423780855, 2, 1429198752, '320 480'),
(128, 1, 'GNB-film1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-film1.jpg', 'image/jpeg', 'GNB-film1.jpg', 71700, NULL, NULL, NULL, 2, 1423780875, 2, 1423780875, '537 956'),
(129, 1, 'GNB-film2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-film2.jpg', 'image/jpeg', 'GNB-film2.jpg', 63816, NULL, NULL, NULL, 2, 1423780887, 2, 1423780887, '537 956'),
(130, 1, 'YMCA-humber-film.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-humber-film.png', 'image/png', 'YMCA-humber-film.png', 8561, NULL, NULL, NULL, 2, 1423782160, 2, 1429195034, '320 480'),
(131, 1, 'YMCA-humber-film1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-humber-film1.jpg', 'image/jpeg', 'YMCA-humber-film1.jpg', 87695, NULL, NULL, NULL, 2, 1423782176, 2, 1423782176, '537 956'),
(132, 1, 'YMCA-humber-film2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-humber-film2.jpg', 'image/jpeg', 'YMCA-humber-film2.jpg', 118917, NULL, NULL, NULL, 2, 1423782195, 2, 1423782195, '537 956'),
(133, 1, 'onside.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/onside.jpg', 'image/jpeg', 'onside.jpg', 59013, NULL, NULL, NULL, 2, 1423782666, 2, 1423782666, '320 480'),
(134, 1, 'onside-1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/onside-1.jpg', 'image/jpeg', 'onside-1.jpg', 41257, NULL, NULL, NULL, 2, 1423782681, 2, 1423845280, '737 312'),
(135, 1, 'onside-2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/onside-2.jpg', 'image/jpeg', 'onside-2.jpg', 69140, NULL, NULL, NULL, 2, 1423782700, 2, 1423845629, '737 312'),
(136, 1, 'Bike-Hub.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Bike-Hub.png', 'image/png', 'Bike-Hub.png', 170435, NULL, NULL, NULL, 2, 1423783309, 2, 1423783309, '320 480'),
(137, 1, 'bike-hub1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/bike-hub1.jpg', 'image/jpeg', 'bike-hub1.jpg', 39424, NULL, NULL, NULL, 2, 1423783328, 2, 1423783328, '737 312'),
(138, 1, 'bike-hub2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/bike-hub2.jpg', 'image/jpeg', 'bike-hub2.jpg', 84777, NULL, NULL, NULL, 2, 1423783341, 2, 1423783341, '737 312'),
(139, 1, '8-sail-brewery.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/8-sail-brewery.png', 'image/png', '8-sail-brewery.png', 157389, NULL, NULL, NULL, 2, 1423784030, 2, 1423784030, '320 480'),
(140, 1, '8-sail-brewery1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/8-sail-brewery1.jpg', 'image/jpeg', '8-sail-brewery1.jpg', 53299, NULL, NULL, NULL, 2, 1423784045, 2, 1423784045, '737 312'),
(141, 1, '8-sail-brewery2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/8-sail-brewery2.jpg', 'image/jpeg', '8-sail-brewery2.jpg', 61942, NULL, NULL, NULL, 2, 1423784055, 2, 1423784055, '737 312'),
(142, 1, 'Beverley-wine-festival.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Beverley-wine-festival.png', 'image/png', 'Beverley-wine-festival.png', 118630, NULL, NULL, NULL, 2, 1423784557, 2, 1423784557, '320 480'),
(143, 1, 'Beverley-wine-festival.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Beverley-wine-festival.jpg', 'image/jpeg', 'Beverley-wine-festival.jpg', 64389, NULL, NULL, NULL, 2, 1423784573, 2, 1423784573, '441 640'),
(144, 1, 'Young-safe.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Young-safe.png', 'image/png', 'Young-safe.png', 135373, NULL, NULL, NULL, 2, 1423785011, 2, 1423785011, '320 480'),
(145, 1, 'Young-safe1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Young-safe1.jpg', 'image/jpeg', 'Young-safe1.jpg', 54057, NULL, NULL, NULL, 2, 1423785027, 2, 1423785027, '737 312'),
(146, 1, 'Pop-up-pub.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Pop-up-pub.png', 'image/png', 'Pop-up-pub.png', 300380, NULL, NULL, NULL, 2, 1423785508, 2, 1423785508, '320 480'),
(147, 1, 'Pop-up-pub1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Pop-up-pub1.jpg', 'image/jpeg', 'Pop-up-pub1.jpg', 86999, NULL, NULL, NULL, 2, 1423785528, 2, 1423785528, '441 640'),
(148, 1, 'Pop-up-pub2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Pop-up-pub2.jpg', 'image/jpeg', 'Pop-up-pub2.jpg', 53944, NULL, NULL, NULL, 2, 1423785545, 2, 1423785545, '441 640'),
(149, 1, 'Slow-tour-of-yorkshire.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Slow-tour-of-yorkshire.png', 'image/png', 'Slow-tour-of-yorkshire.png', 56904, NULL, NULL, NULL, 2, 1423837967, 2, 1429199974, '320 480'),
(150, 1, 'Slow-tour-of-yorkshire1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Slow-tour-of-yorkshire1.jpg', 'image/jpeg', 'Slow-tour-of-yorkshire1.jpg', 72172, NULL, NULL, NULL, 2, 1423838040, 2, 1423838040, '441 640'),
(151, 1, 'Slow-tour-of-yorkshire2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Slow-tour-of-yorkshire2.jpg', 'image/jpeg', 'Slow-tour-of-yorkshire2.jpg', 70676, NULL, NULL, NULL, 2, 1423838056, 2, 1423838056, '441 640'),
(168, 1, 'Trade-chimp.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Trade-chimp.png', 'image/png', 'Trade-chimp.png', 49654, NULL, NULL, NULL, 2, 1429199174, 2, 1429199174, '320 480'),
(169, 1, 'Trade-chimp-1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Trade-chimp-1.jpg', 'image/jpeg', 'Trade-chimp-1.jpg', 25928, NULL, NULL, NULL, 2, 1429199578, 2, 1429199578, '441 640'),
(170, 1, 'Trade-chimp-2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Trade-chimp-2.jpg', 'image/jpeg', 'Trade-chimp-2.jpg', 42588, NULL, NULL, NULL, 2, 1429199612, 2, 1429199612, '441 640'),
(172, 1, 'NVW-Share1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/NVW-Share1.jpg', 'image/jpeg', 'NVW-Share1.jpg', 127949, NULL, NULL, NULL, 2, 1429201591, 2, 1429205335, '441 640'),
(173, 1, 'NVW-Share.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/NVW-Share.png', 'image/png', 'NVW-Share.png', 193802, NULL, NULL, NULL, 2, 1429202453, 2, 1436440931, '320 480'),
(175, 1, 'NVW-Share2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/NVW-Share2.jpg', 'image/jpeg', 'NVW-Share2.jpg', 130427, NULL, NULL, NULL, 2, 1429205387, 2, 1429205529, '441 640'),
(177, 1, 'Hats-off-to-the-lord-mayor.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Hats-off-to-the-lord-mayor.png', 'image/png', 'Hats-off-to-the-lord-mayor.png', 22508, NULL, NULL, NULL, 2, 1429206399, 2, 1429206399, '320 480'),
(178, 1, 'Hats-off-to-the-lord-mayor1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Hats-off-to-the-lord-mayor1.jpg', 'image/jpeg', 'Hats-off-to-the-lord-mayor1.jpg', 111084, NULL, NULL, NULL, 2, 1429206513, 2, 1429206513, '441 640'),
(179, 1, 'All-Occasions-storage.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/All-Occasions-storage.png', 'image/png', 'All-Occasions-storage.png', 34253, NULL, NULL, NULL, 2, 1430383688, 2, 1430383688, '320 480'),
(180, 1, 'All-Occasions-web1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/All-Occasions-web1.jpg', 'image/jpeg', 'All-Occasions-web1.jpg', 39035, NULL, NULL, NULL, 2, 1430383710, 2, 1430383710, '441 640'),
(181, 1, 'All-Occasions-web2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/All-Occasions-web2.jpg', 'image/jpeg', 'All-Occasions-web2.jpg', 83886, NULL, NULL, NULL, 2, 1430383725, 2, 1430390035, '441 640'),
(182, 1, 'All-Occasions-marquees1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/All-Occasions-marquees1.jpg', 'image/jpeg', 'All-Occasions-marquees1.jpg', 142121, NULL, NULL, NULL, 2, 1430386398, 2, 1430386398, '441 640'),
(183, 1, 'All-Occasions-marquees.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/All-Occasions-marquees.png', 'image/png', 'All-Occasions-marquees.png', 26429, NULL, NULL, NULL, 2, 1430386453, 2, 1436441024, '320 480'),
(184, 1, 'All-Occasions-marquees2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/All-Occasions-marquees2.jpg', 'image/jpeg', 'All-Occasions-marquees2.jpg', 42199, NULL, NULL, NULL, 2, 1430388347, 2, 1430388347, '441 640'),
(186, 1, 'Antony-hatfield.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Antony-hatfield.jpg', 'image/jpeg', 'Antony-hatfield.jpg', 82473, NULL, NULL, NULL, 2, 1430396517, 2, 1436442747, '320 480'),
(187, 1, 'Antony-hatfield1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Antony-hatfield1.jpg', 'image/jpeg', 'Antony-hatfield1.jpg', 25078, NULL, NULL, NULL, 2, 1430396578, 2, 1430396578, '441 640'),
(188, 1, 'Antony-hatfield2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Antony-hatfield2.jpg', 'image/jpeg', 'Antony-hatfield2.jpg', 29952, NULL, NULL, NULL, 2, 1430396592, 2, 1430396592, '441 640'),
(190, 1, 'bad-ram-brewery.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/bad-ram-brewery.png', 'image/png', 'bad-ram-brewery.png', 208783, NULL, NULL, NULL, 2, 1430398436, 2, 1436442340, '320 480'),
(191, 1, 'Bad-ram_brewery1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Bad-ram_brewery1.jpg', 'image/jpeg', 'Bad-ram_brewery1.jpg', 79923, NULL, NULL, NULL, 2, 1430398458, 2, 1436442362, '737 312'),
(192, 1, 'Bad-ram_brewery2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Bad-ram_brewery2.jpg', 'image/jpeg', 'Bad-ram_brewery2.jpg', 82053, NULL, NULL, NULL, 2, 1430398474, 2, 1436442386, '737 312'),
(194, 1, 'Humberside-police-lifestyle.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Humberside-police-lifestyle.png', 'image/png', 'Humberside-police-lifestyle.png', 226181, NULL, NULL, NULL, 2, 1430399407, 2, 1436444070, '320 480'),
(195, 1, 'Humberside-police-lifestyle1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Humberside-police-lifestyle1.jpg', 'image/jpeg', 'Humberside-police-lifestyle1.jpg', 385229, NULL, NULL, NULL, 2, 1430399435, 2, 1436444097, '737 312'),
(196, 1, 'Humberside-police-lifestyle2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Humberside-police-lifestyle2.jpg', 'image/jpeg', 'Humberside-police-lifestyle2.jpg', 90460, NULL, NULL, NULL, 2, 1430399576, 2, 1430399576, '737 312'),
(197, 1, 'CPS.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/CPS.png', 'image/png', 'CPS.png', 96338, NULL, NULL, NULL, 2, 1430405029, 2, 1436520974, '320 480'),
(198, 1, 'CPS-1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/CPS-1.jpg', 'image/jpeg', 'CPS-1.jpg', 56361, NULL, NULL, NULL, 2, 1430405046, 2, 1430405046, '737 312'),
(199, 1, 'CPS-2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/CPS-2.jpg', 'image/jpeg', 'CPS-2.jpg', 63355, NULL, NULL, NULL, 2, 1430405059, 2, 1430405059, '737 312'),
(200, 1, 'CPS-3.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/CPS-3.jpg', 'image/jpeg', 'CPS-3.jpg', 57620, NULL, NULL, NULL, 2, 1430405082, 2, 1430405082, '737 312'),
(201, 1, 'Yorkshire-wolds-cookery-school.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Yorkshire-wolds-cookery-school.png', 'image/png', 'Yorkshire-wolds-cookery-school.png', 66775, NULL, NULL, NULL, 2, 1430415440, 2, 1436442601, '320 480'),
(202, 1, 'Yorkshire-wolds-cookery-school1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Yorkshire-wolds-cookery-school1.jpg', 'image/jpeg', 'Yorkshire-wolds-cookery-school1.jpg', 152750, NULL, NULL, NULL, 2, 1430415467, 2, 1430415467, '441 640'),
(203, 1, 'Cuppa-mundi.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Cuppa-mundi.png', 'image/png', 'Cuppa-mundi.png', 73308, NULL, NULL, NULL, 2, 1430419914, 2, 1436442495, '320 480'),
(204, 1, 'Cuppa-mundi2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Cuppa-mundi2.jpg', 'image/jpeg', 'Cuppa-mundi2.jpg', 198359, NULL, NULL, NULL, 2, 1430419949, 2, 1430419949, '441 640'),
(205, 1, 'Cuppa-mundi1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Cuppa-mundi1.jpg', 'image/jpeg', 'Cuppa-mundi1.jpg', 28836, NULL, NULL, NULL, 2, 1430419962, 2, 1436442524, '441 640'),
(208, 1, 'All-Occasions-marquees1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/All-Occasions-marquees1.jpg', 'image/jpeg', 'All-Occasions-marquees1.jpg', 142121, NULL, NULL, NULL, 2, 1436441052, 2, 1436441052, '441 640'),
(209, 1, 'All-Occasions-marquees2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/All-Occasions-marquees2.jpg', 'image/jpeg', 'All-Occasions-marquees2.jpg', 42199, NULL, NULL, NULL, 2, 1436441067, 2, 1436441067, '441 640'),
(213, 1, 'Cuppa-mundi1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Cuppa-mundi1.jpg', 'image/jpeg', 'Cuppa-mundi1.jpg', 28836, NULL, NULL, NULL, 2, 1436442474, 2, 1436442474, '441 640'),
(216, 1, 'Cuppa-mundi2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Cuppa-mundi2.jpg', 'image/jpeg', 'Cuppa-mundi2.jpg', 198359, NULL, NULL, NULL, 2, 1436442541, 2, 1436442541, '441 640'),
(218, 1, 'Yorkshire-wolds-cookery-school1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Yorkshire-wolds-cookery-school1.jpg', 'image/jpeg', 'Yorkshire-wolds-cookery-school1.jpg', 152750, NULL, NULL, NULL, 2, 1436442622, 2, 1436442622, '441 640'),
(220, 1, 'Antony-hatfield1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Antony-hatfield1.jpg', 'image/jpeg', 'Antony-hatfield1.jpg', 25078, NULL, NULL, NULL, 2, 1436442763, 2, 1436442763, '441 640'),
(221, 1, 'Antony-hatfield2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Antony-hatfield2.jpg', 'image/jpeg', 'Antony-hatfield2.jpg', 29952, NULL, NULL, NULL, 2, 1436442777, 2, 1436442777, '441 640'),
(222, 1, 'tigers-banner.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/tigers-banner.png', 'image/png', 'tigers-banner.png', 280801, NULL, NULL, NULL, 2, 1436443169, 2, 1436443169, '737 312'),
(223, 1, 'Tigers-trust.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tigers-trust.png', 'image/png', 'Tigers-trust.png', 209254, NULL, NULL, NULL, 2, 1436443652, 2, 1436443652, '737 312'),
(226, 1, 'Humberside-police-lifestyle1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Humberside-police-lifestyle1.png', 'image/png', 'Humberside-police-lifestyle1.png', 682045, NULL, NULL, NULL, 2, 1436444219, 2, 1436554154, '710 544'),
(227, 1, 'Humberside-police-lifestyle2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Humberside-police-lifestyle2.png', 'image/png', 'Humberside-police-lifestyle2.png', 381911, NULL, NULL, NULL, 2, 1436444254, 2, 1436444254, '737 312'),
(228, 1, '8-sail-brewery1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/8-sail-brewery1.png', 'image/png', '8-sail-brewery1.png', 217979, NULL, NULL, NULL, 2, 1436444513, 2, 1436555096, '500 640'),
(229, 1, '8-sail-brewery2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/8-sail-brewery2.png', 'image/png', '8-sail-brewery2.png', 110787, NULL, NULL, NULL, 2, 1436444530, 2, 1436555233, '270 640'),
(230, 1, 'andrew-jones-pies2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/andrew-jones-pies2.png', 'image/png', 'andrew-jones-pies2.png', 168612, NULL, NULL, NULL, 2, 1436448612, 2, 1436448612, '737 312'),
(231, 1, 'andrew-jones-pies1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/andrew-jones-pies1.png', 'image/png', 'andrew-jones-pies1.png', 582461, NULL, NULL, NULL, 2, 1436448636, 2, 1436480193, '1000 544'),
(232, 1, 'YMCA-online1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-online1.png', 'image/png', 'YMCA-online1.png', 251075, NULL, NULL, NULL, 2, 1436449494, 2, 1436449494, '441 640'),
(233, 1, 'YMCA-online2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-online2.png', 'image/png', 'YMCA-online2.png', 208241, NULL, NULL, NULL, 2, 1436449523, 2, 1436449523, '441 640'),
(234, 1, 'rk-atkinson-online-1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/rk-atkinson-online-1.png', 'image/png', 'rk-atkinson-online-1.png', 261048, NULL, NULL, NULL, 2, 1436449686, 2, 1436449686, '441 640'),
(235, 1, 'rk-atkinson-online-2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/rk-atkinson-online-2.png', 'image/png', 'rk-atkinson-online-2.png', 248637, NULL, NULL, NULL, 2, 1436449710, 2, 1436449710, '441 640'),
(236, 1, 'wensleydale-online-1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/wensleydale-online-1.png', 'image/png', 'wensleydale-online-1.png', 323891, NULL, NULL, NULL, 2, 1436449872, 2, 1436449872, '441 640'),
(237, 1, 'wensleydale-online-2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/wensleydale-online-2.png', 'image/png', 'wensleydale-online-2.png', 294697, NULL, NULL, NULL, 2, 1436449894, 2, 1436449894, '441 640'),
(238, 1, 'daleside-1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/daleside-1.png', 'image/png', 'daleside-1.png', 318034, NULL, NULL, NULL, 2, 1436450060, 2, 1436450060, '441 640'),
(239, 1, 'daleside-2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/daleside-2.png', 'image/png', 'daleside-2.png', 300728, NULL, NULL, NULL, 2, 1436450081, 2, 1436450081, '441 640'),
(240, 1, 'Child-dynamix-online1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Child-dynamix-online1.png', 'image/png', 'Child-dynamix-online1.png', 160840, NULL, NULL, NULL, 2, 1436450317, 2, 1436450317, '441 640'),
(241, 1, 'Child-dynamix-online2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Child-dynamix-online2.png', 'image/png', 'Child-dynamix-online2.png', 144579, NULL, NULL, NULL, 2, 1436450335, 2, 1436450335, '441 640'),
(242, 1, 'drinkless-online1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/drinkless-online1.png', 'image/png', 'drinkless-online1.png', 148541, NULL, NULL, NULL, 2, 1436450735, 2, 1436450735, '441 640'),
(243, 1, 'drinkless-online2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/drinkless-online2.png', 'image/png', 'drinkless-online2.png', 147671, NULL, NULL, NULL, 2, 1436450753, 2, 1436450753, '441 640'),
(244, 1, 'space-hop-1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/space-hop-1.png', 'image/png', 'space-hop-1.png', 1193677, NULL, NULL, NULL, 2, 1436451044, 2, 1436816392, '679 544'),
(245, 1, 'space-hop-2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/space-hop-2.png', 'image/png', 'space-hop-2.png', 272640, NULL, NULL, NULL, 2, 1436451183, 2, 1436451183, '737 312'),
(246, 1, 'Antony-hatfield1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Antony-hatfield1.png', 'image/png', 'Antony-hatfield1.png', 123587, NULL, NULL, NULL, 2, 1436451508, 2, 1436451508, '441 640'),
(247, 1, 'Antony-hatfield2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Antony-hatfield2.png', 'image/png', 'Antony-hatfield2.png', 143862, NULL, NULL, NULL, 2, 1436451531, 2, 1436451531, '441 640'),
(248, 1, 'daleside-morocco1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/daleside-morocco1.png', 'image/png', 'daleside-morocco1.png', 593705, NULL, NULL, NULL, 2, 1436451716, 2, 1436455909, '1000 544'),
(249, 1, 'daleside-morocco2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/daleside-morocco2.png', 'image/png', 'daleside-morocco2.png', 210924, NULL, NULL, NULL, 2, 1436451732, 2, 1436451732, '737 312'),
(250, 1, 'GNB-maillot-jaune1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-maillot-jaune1.png', 'image/png', 'GNB-maillot-jaune1.png', 468337, NULL, NULL, NULL, 2, 1436452193, 2, 1436455693, '1000 544'),
(251, 1, 'GNB-maillot-jaune2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-maillot-jaune2.png', 'image/png', 'GNB-maillot-jaune2.png', 230287, NULL, NULL, NULL, 2, 1436452225, 2, 1436452225, '737 312'),
(252, 1, 'wensleydale-banner.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/wensleydale-banner.png', 'image/png', 'wensleydale-banner.png', 369684, NULL, NULL, NULL, 2, 1436452726, 2, 1436452726, '737 312'),
(253, 1, 'wensleydale-brewery-1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/wensleydale-brewery-1.png', 'image/png', 'wensleydale-brewery-1.png', 826173, NULL, NULL, NULL, 2, 1436452748, 2, 1436457430, '1000 544'),
(254, 1, 'YMCA-banner.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-banner.png', 'image/png', 'YMCA-banner.png', 359434, NULL, NULL, NULL, 2, 1436454424, 2, 1436454424, '737 312'),
(255, 1, 'YMCA-work.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-work.png', 'image/png', 'YMCA-work.png', 1260237, NULL, NULL, NULL, 2, 1436454446, 2, 1436633840, '740 544'),
(319, 1, 'Data-to-decisions1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Data-to-decisions1.png', 'image/png', 'Data-to-decisions1.png', 101612, NULL, NULL, NULL, 2, 1436621630, 2, 1436621630, '213 640'),
(262, 1, 'GNB-work.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-work.png', 'image/png', 'GNB-work.png', 898335, NULL, NULL, NULL, 2, 1436465570, 2, 1436465801, '1000 544'),
(265, 1, 'Hats-off-to-the-lord-mayor1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Hats-off-to-the-lord-mayor1.png', 'image/png', 'Hats-off-to-the-lord-mayor1.png', 475648, NULL, NULL, NULL, 2, 1436466192, 2, 1436466192, '1000 544'),
(266, 1, 'Bad-ram_brewery1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Bad-ram_brewery1.png', 'image/png', 'Bad-ram_brewery1.png', 530053, NULL, NULL, NULL, 2, 1436467314, 2, 1436467314, '1000 544'),
(267, 1, 'Castle-combe-brewery1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Castle-combe-brewery1.png', 'image/png', 'Castle-combe-brewery1.png', 719923, NULL, NULL, NULL, 2, 1436468332, 2, 1436468332, '1000 544'),
(268, 1, 'ED-campaign1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/ED-campaign1.png', 'image/png', 'ED-campaign1.png', 65382, NULL, NULL, NULL, 2, 1436469333, 2, 1436469333, '1000 544'),
(269, 1, 'ED-campaign.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/ED-campaign.png', 'image/png', 'ED-campaign.png', 29102, NULL, NULL, NULL, 2, 1436469349, 2, 1436469349, '320 480'),
(270, 1, 'Brid-ale-fest-other.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Brid-ale-fest-other.png', 'image/png', 'Brid-ale-fest-other.png', 792965, NULL, NULL, NULL, 2, 1436469876, 2, 1436555533, '747 544'),
(271, 1, 'tom-branded.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/tom-branded.png', 'image/png', 'tom-branded.png', 610867, NULL, NULL, NULL, 2, 1436470372, 2, 1436471274, '1000 544'),
(275, 1, 'Pop-up-pub1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Pop-up-pub1.png', 'image/png', 'Pop-up-pub1.png', 528527, NULL, NULL, NULL, 2, 1436471617, 2, 1436471617, '441 640'),
(276, 1, 'Pop-up-pub2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Pop-up-pub2.png', 'image/png', 'Pop-up-pub2.png', 271841, NULL, NULL, NULL, 2, 1436471648, 2, 1436471648, '441 640'),
(277, 1, 'All-Occasions-marquees1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/All-Occasions-marquees1.png', 'image/png', 'All-Occasions-marquees1.png', 261161, NULL, NULL, NULL, 2, 1436472105, 2, 1436472105, '441 640'),
(278, 1, 'All-Occasions-marquees2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/All-Occasions-marquees2.png', 'image/png', 'All-Occasions-marquees2.png', 456765, NULL, NULL, NULL, 2, 1436472180, 2, 1436472180, '441 640'),
(279, 1, 'YMCA-humber-film1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-humber-film1.png', 'image/png', 'YMCA-humber-film1.png', 557906, NULL, NULL, NULL, 2, 1436472360, 2, 1436472360, '537 956'),
(280, 1, 'YMCA-humber-film2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/YMCA-humber-film2.png', 'image/png', 'YMCA-humber-film2.png', 651909, NULL, NULL, NULL, 2, 1436472384, 2, 1436472384, '537 956'),
(281, 1, 'GNB-film1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-film1.png', 'image/png', 'GNB-film1.png', 461804, NULL, NULL, NULL, 2, 1436472644, 2, 1436472644, '537 956'),
(282, 1, 'GNB-film2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-film2.png', 'image/png', 'GNB-film2.png', 436920, NULL, NULL, NULL, 2, 1436472672, 2, 1436472672, '537 956'),
(283, 1, 'Tigers-film1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tigers-film1.png', 'image/png', 'Tigers-film1.png', 602255, NULL, NULL, NULL, 2, 1436473971, 2, 1436473971, '537 956'),
(284, 1, 'Tigers-film2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tigers-film2.png', 'image/png', 'Tigers-film2.png', 401275, NULL, NULL, NULL, 2, 1436473995, 2, 1436473995, '537 956'),
(285, 1, 'Renew-film1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Renew-film1.png', 'image/png', 'Renew-film1.png', 527258, NULL, NULL, NULL, 2, 1436474532, 2, 1436474532, '537 956'),
(286, 1, 'Renew-film2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Renew-film2.png', 'image/png', 'Renew-film2.png', 507924, NULL, NULL, NULL, 2, 1436474556, 2, 1436474556, '537 956'),
(287, 1, 'Wellbeing-games-film1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Wellbeing-games-film1.png', 'image/png', 'Wellbeing-games-film1.png', 428442, NULL, NULL, NULL, 2, 1436474661, 2, 1436474661, '537 956');
INSERT INTO `exp_files` (`file_id`, `site_id`, `title`, `upload_location_id`, `rel_path`, `mime_type`, `file_name`, `file_size`, `description`, `credit`, `location`, `uploaded_by_member_id`, `upload_date`, `modified_by_member_id`, `modified_date`, `file_hw_original`) VALUES
(288, 1, 'Wellbeing-games-film2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Wellbeing-games-film2.png', 'image/png', 'Wellbeing-games-film2.png', 527483, NULL, NULL, NULL, 2, 1436474686, 2, 1436474686, '537 956'),
(289, 1, 'bike-hub1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/bike-hub1.png', 'image/png', 'bike-hub1.png', 681196, NULL, NULL, NULL, 2, 1436475834, 2, 1436555448, '906 544'),
(290, 1, 'Tom-davies-tennis-school1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tom-davies-tennis-school1.png', 'image/png', 'Tom-davies-tennis-school1.png', 263455, NULL, NULL, NULL, 2, 1436476162, 2, 1436476587, '1000 544'),
(292, 1, 'NHS-mental-health-work.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/NHS-mental-health-work.png', 'image/png', 'NHS-mental-health-work.png', 155515, NULL, NULL, NULL, 2, 1436477129, 2, 1436477129, '441 640'),
(293, 1, 'NHS-mental-health-work2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/NHS-mental-health-work2.png', 'image/png', 'NHS-mental-health-work2.png', 235264, NULL, NULL, NULL, 2, 1436477150, 2, 1436477150, '441 640'),
(294, 1, 'drinkless-work.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/drinkless-work.png', 'image/png', 'drinkless-work.png', 602286, NULL, NULL, NULL, 2, 1436478098, 2, 1436478098, '1000 544'),
(295, 1, 'onside-1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/onside-1.png', 'image/png', 'onside-1.png', 451799, NULL, NULL, NULL, 2, 1436478991, 2, 1436556668, '841 544'),
(300, 1, 'Tigers-work.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Tigers-work.png', 'image/png', 'Tigers-work.png', 1396306, NULL, NULL, NULL, 2, 1436481313, 2, 1436555691, '900 544'),
(341, 1, 'Double-top-brewerypc3.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Double-top-brewerypc3.png', 'image/png', 'Double-top-brewerypc3.png', 478659, NULL, NULL, NULL, 2, 1437422657, 2, 1437422915, '327 640'),
(301, 1, 'Big-issue-foundation1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Big-issue-foundation1.png', 'image/png', 'Big-issue-foundation1.png', 944364, NULL, NULL, NULL, 2, 1436518716, 2, 1436556499, '645 544'),
(303, 1, 'CPS-home.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/CPS-home.png', 'image/png', 'CPS-home.png', 436869, NULL, NULL, NULL, 2, 1436521165, 2, 1436521165, '500 640'),
(304, 1, 'CPS-retail.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/CPS-retail.png', 'image/png', 'CPS-retail.png', 404285, NULL, NULL, NULL, 2, 1436521190, 2, 1436521190, '500 640'),
(305, 1, 'CPS-bar.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/CPS-bar.png', 'image/png', 'CPS-bar.png', 388506, NULL, NULL, NULL, 2, 1436521211, 2, 1436521211, '500 640'),
(306, 1, 'Yorkshire-wolds-cookery-school1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Yorkshire-wolds-cookery-school1.png', 'image/png', 'Yorkshire-wolds-cookery-school1.png', 366449, NULL, NULL, NULL, 2, 1436526880, 2, 1436526880, '500 640'),
(307, 1, 'NVW-Share1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/NVW-Share1.png', 'image/png', 'NVW-Share1.png', 218173, NULL, NULL, NULL, 2, 1436528146, 2, 1436528146, '500 640'),
(308, 1, 'NVW-Share2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/NVW-Share2.png', 'image/png', 'NVW-Share2.png', 319867, NULL, NULL, NULL, 2, 1436528167, 2, 1436528167, '500 640'),
(318, 1, 'Data-to-decisions2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Data-to-decisions2.png', 'image/png', 'Data-to-decisions2.png', 33935, NULL, NULL, NULL, 2, 1436621557, 2, 1436621557, '500 640'),
(320, 1, 'Data-to-decisions.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Data-to-decisions.png', 'image/png', 'Data-to-decisions.png', 49357, NULL, NULL, NULL, 2, 1436621665, 2, 1436621814, '320 480'),
(322, 1, 'Double-top-brewery1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Double-top-brewery1.png', 'image/png', 'Double-top-brewery1.png', 171540, NULL, NULL, NULL, 2, 1436622608, 2, 1436622608, '314 640'),
(323, 1, 'Double-top-brewery.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Double-top-brewery.png', 'image/png', 'Double-top-brewery.png', 102636, NULL, NULL, NULL, 2, 1436622634, 2, 1436622634, '320 480'),
(324, 1, 'Double-top-brewerypc1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Double-top-brewerypc1.png', 'image/png', 'Double-top-brewerypc1.png', 531139, NULL, NULL, NULL, 2, 1436622672, 2, 1436630345, '312 640'),
(325, 1, 'Double-top-brewerypc2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Double-top-brewerypc2.png', 'image/png', 'Double-top-brewerypc2.png', 574208, NULL, NULL, NULL, 2, 1436622707, 2, 1436622707, '309 640'),
(327, 1, 'activfirst.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/activfirst.png', 'image/png', 'activfirst.png', 254034, NULL, NULL, NULL, 2, 1436631599, 2, 1436631934, '320 480'),
(328, 1, 'activfirst-logo.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/activfirst-logo.png', 'image/png', 'activfirst-logo.png', 51384, NULL, NULL, NULL, 2, 1436631625, 2, 1436631625, '500 640'),
(330, 1, 'olmec.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/olmec.png', 'image/png', 'olmec.png', 99830, NULL, NULL, NULL, 2, 1436632441, 2, 1436632441, '320 480'),
(331, 1, 'olmec-1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/olmec-1.png', 'image/png', 'olmec-1.png', 135537, NULL, NULL, NULL, 2, 1436632468, 2, 1436632468, '500 640'),
(332, 1, 'olmec-2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/olmec-2.png', 'image/png', 'olmec-2.png', 149350, NULL, NULL, NULL, 2, 1436632486, 2, 1436632486, '417 640'),
(333, 1, 'olmec-3.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/olmec-3.png', 'image/png', 'olmec-3.png', 245719, NULL, NULL, NULL, 2, 1436632508, 2, 1436632508, '416 640'),
(336, 1, 'VP-security.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/VP-security.png', 'image/png', 'VP-security.png', 62751, NULL, NULL, NULL, 2, 1436634809, 2, 1436634809, '320 480'),
(337, 1, 'VP-security1.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/VP-security1.png', 'image/png', 'VP-security1.png', 491622, NULL, NULL, NULL, 2, 1436634968, 2, 1436634968, '326 640'),
(338, 1, 'VP-security2.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/VP-security2.png', 'image/png', 'VP-security2.png', 476447, NULL, NULL, NULL, 2, 1436634988, 2, 1436634988, '321 640'),
(339, 1, 'VP-security3.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/VP-security3.png', 'image/png', 'VP-security3.png', 298639, NULL, NULL, NULL, 2, 1436811226, 2, 1436811226, '500 640'),
(343, 1, 'double-top-533x300.png', 2, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/services/double-top-533x300.png', 'image/png', 'double-top-533x300.png', 151214, NULL, NULL, NULL, 2, 1439840051, 2, 1439840051, '300 522'),
(344, 1, 'AJ-pies-261x300.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/AJ-pies-261x300.png', 'image/png', 'AJ-pies-261x300.png', 138568, NULL, NULL, NULL, 2, 1439895671, 2, 1440748336, '300 320'),
(345, 1, 'cuppa-mundi-255x150.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/cuppa-mundi-255x150.png', 'image/png', 'cuppa-mundi-255x150.png', 94515, NULL, NULL, NULL, 2, 1439895689, 2, 1440749156, '150 520'),
(346, 1, 'Share-255x150.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Share-255x150.png', 'image/png', 'Share-255x150.png', 64471, NULL, NULL, NULL, 2, 1439895701, 2, 1440748765, '150 520'),
(347, 1, 'double-top-522x300.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/double-top-522x300.png', 'image/png', 'double-top-522x300.png', 186501, NULL, NULL, NULL, 2, 1439895729, 2, 1440749048, '350 650'),
(353, 1, 'slow-tour-522x300.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/slow-tour-522x300.png', 'image/png', 'slow-tour-522x300.png', 101151, NULL, NULL, NULL, 2, 1440754345, 2, 1440755236, '350 650'),
(354, 1, 'Trade-chimp-261x300.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Trade-chimp-261x300.png', 'image/png', 'Trade-chimp-261x300.png', 70124, NULL, NULL, NULL, 2, 1440754397, 2, 1440775710, '300 320'),
(355, 1, 'Bev-wine-fest-255x150.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Bev-wine-fest-255x150.png', 'image/png', 'Bev-wine-fest-255x150.png', 32727, NULL, NULL, NULL, 2, 1440754686, 2, 1440754686, '150 520'),
(356, 1, 'Activfirst-255x150.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Activfirst-255x150.png', 'image/png', 'Activfirst-255x150.png', 86989, NULL, NULL, NULL, 2, 1440754700, 2, 1440754700, '150 520'),
(357, 1, 'GNB-261x300.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-261x300.png', 'image/png', 'GNB-261x300.png', 181207, NULL, NULL, NULL, 2, 1440754973, 2, 1440754973, '300 320'),
(359, 1, 'morocco-255x150.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/morocco-255x150.png', 'image/png', 'morocco-255x150.png', 72899, NULL, NULL, NULL, 2, 1440755252, 2, 1440755252, '150 520'),
(360, 1, 'Olmec-255x150.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Olmec-255x150.png', 'image/png', 'Olmec-255x150.png', 50934, NULL, NULL, NULL, 2, 1440755267, 2, 1440755267, '150 520'),
(361, 1, 'Brid-ale-fest-261x300.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Brid-ale-fest-261x300.png', 'image/png', 'Brid-ale-fest-261x300.png', 146944, NULL, NULL, NULL, 2, 1440755873, 2, 1440755873, '300 320'),
(362, 1, 'Double-top-261x300.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Double-top-261x300.png', 'image/png', 'Double-top-261x300.png', 157676, NULL, NULL, NULL, 2, 1440767333, 2, 1440767333, '300 320'),
(363, 1, 'castle-combe-255x150.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/castle-combe-255x150.png', 'image/png', 'castle-combe-255x150.png', 70195, NULL, NULL, NULL, 2, 1440768617, 2, 1440768617, '150 520'),
(364, 1, 'tigers-trust-255x150.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/tigers-trust-255x150.png', 'image/png', 'tigers-trust-255x150.png', 88484, NULL, NULL, NULL, 2, 1440768775, 2, 1440768775, '150 520'),
(365, 1, 'HATS-OFF-522x300.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/HATS-OFF-522x300.png', 'image/png', 'HATS-OFF-522x300.png', 24617, NULL, NULL, NULL, 2, 1440775646, 2, 1440775646, '350 650'),
(367, 1, 'Slow-tour-261x300.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Slow-tour-261x300.png', 'image/png', 'Slow-tour-261x300.png', 41615, NULL, NULL, NULL, 2, 1441968565, 2, 1441968565, '300 320'),
(368, 1, '8-sail-261x300.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/8-sail-261x300.png', 'image/png', '8-sail-261x300.png', 80701, NULL, NULL, NULL, 2, 1441968823, 2, 1441968823, '300 320'),
(369, 1, 'slow-tour-255x150.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/slow-tour-255x150.png', 'image/png', 'slow-tour-255x150.png', 32287, NULL, NULL, NULL, 2, 1441968986, 2, 1441968986, '150 520'),
(370, 1, 'bike-hub-255x150.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/bike-hub-255x150.png', 'image/png', 'bike-hub-255x150.png', 30075, NULL, NULL, NULL, 2, 1441970008, 2, 1441970008, '150 520'),
(371, 1, 'GNB-online.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-online.png', 'image/png', 'GNB-online.png', 218798, NULL, NULL, NULL, 2, 1444988413, 2, 1444988413, '320 480'),
(372, 1, 'GNB-online1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-online1.jpg', 'image/jpeg', 'GNB-online1.jpg', 45783, NULL, NULL, NULL, 2, 1444988465, 2, 1444988465, '441 640'),
(373, 1, 'GNB-online2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/GNB-online2.jpg', 'image/jpeg', 'GNB-online2.jpg', 50688, NULL, NULL, NULL, 2, 1444988480, 2, 1444988480, '441 640'),
(374, 1, 'DTB-online.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/DTB-online.png', 'image/png', 'DTB-online.png', 224492, NULL, NULL, NULL, 2, 1444988535, 2, 1444988535, '320 480'),
(375, 1, 'DTB-online1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/DTB-online1.jpg', 'image/jpeg', 'DTB-online1.jpg', 44227, NULL, NULL, NULL, 2, 1444988577, 2, 1444988577, '441 640'),
(376, 1, 'DTB-online2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/DTB-online2.jpg', 'image/jpeg', 'DTB-online2.jpg', 42936, NULL, NULL, NULL, 2, 1444988598, 2, 1444988598, '441 640'),
(377, 1, 'Castle-combe-brewery-online.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Castle-combe-brewery-online.png', 'image/png', 'Castle-combe-brewery-online.png', 226826, NULL, NULL, NULL, 2, 1444989055, 2, 1444989055, '320 480'),
(378, 1, 'Castle-combe-brewery-online1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Castle-combe-brewery-online1.jpg', 'image/jpeg', 'Castle-combe-brewery-online1.jpg', 47862, NULL, NULL, NULL, 2, 1444989096, 2, 1444989096, '441 640'),
(379, 1, 'Castle-combe-brewery-online2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Castle-combe-brewery-online2.jpg', 'image/jpeg', 'Castle-combe-brewery-online2.jpg', 43182, NULL, NULL, NULL, 2, 1444989108, 2, 1444989108, '441 640'),
(380, 1, 'inside-leadership-online.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/inside-leadership-online.png', 'image/png', 'inside-leadership-online.png', 149330, NULL, NULL, NULL, 2, 1444989613, 2, 1444989613, '320 480'),
(381, 1, 'inside-leadership-online1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/inside-leadership-online1.jpg', 'image/jpeg', 'inside-leadership-online1.jpg', 39496, NULL, NULL, NULL, 2, 1444989644, 2, 1444989644, '441 640'),
(382, 1, 'inside-leadership-online2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/inside-leadership-online2.jpg', 'image/jpeg', 'inside-leadership-online2.jpg', 35820, NULL, NULL, NULL, 2, 1444989662, 2, 1444989662, '441 640'),
(383, 1, 'Go-soup-online.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Go-soup-online.png', 'image/png', 'Go-soup-online.png', 211988, NULL, NULL, NULL, 2, 1444990214, 2, 1444990214, '320 480'),
(384, 1, 'Go-soup-online1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Go-soup-online1.jpg', 'image/jpeg', 'Go-soup-online1.jpg', 44063, NULL, NULL, NULL, 2, 1444990303, 2, 1444990303, '441 640'),
(385, 1, 'Go-soup-online2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/Go-soup-online2.jpg', 'image/jpeg', 'Go-soup-online2.jpg', 35963, NULL, NULL, NULL, 2, 1444990316, 2, 1444990316, '441 640'),
(386, 1, 'The-Day-online.png', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/The-Day-online.png', 'image/png', 'The-Day-online.png', 170936, NULL, NULL, NULL, 2, 1445018679, 2, 1445018679, '320 480'),
(387, 1, 'The-Day-online1.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/The-Day-online1.jpg', 'image/jpeg', 'The-Day-online1.jpg', 35277, NULL, NULL, NULL, 2, 1445018711, 2, 1445018711, '441 640'),
(388, 1, 'The-Day-online2.jpg', 1, '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/The-Day-online2.jpg', 'image/jpeg', 'The-Day-online2.jpg', 41185, NULL, NULL, NULL, 2, 1445018728, 2, 1445018728, '441 640');

-- --------------------------------------------------------

--
-- Table structure for table `exp_file_categories`
--

CREATE TABLE IF NOT EXISTS `exp_file_categories` (
  `file_id` int(10) unsigned DEFAULT NULL,
  `cat_id` int(10) unsigned DEFAULT NULL,
  `sort` int(10) unsigned DEFAULT '0',
  `is_cover` char(1) DEFAULT 'n',
  KEY `file_id` (`file_id`),
  KEY `cat_id` (`cat_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `exp_file_dimensions`
--

CREATE TABLE IF NOT EXISTS `exp_file_dimensions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `upload_location_id` int(4) unsigned DEFAULT NULL,
  `title` varchar(255) DEFAULT '',
  `short_name` varchar(255) DEFAULT '',
  `resize_type` varchar(50) DEFAULT '',
  `width` int(10) DEFAULT '0',
  `height` int(10) DEFAULT '0',
  `watermark_id` int(4) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `upload_location_id` (`upload_location_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_file_watermarks`
--

CREATE TABLE IF NOT EXISTS `exp_file_watermarks` (
  `wm_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `wm_name` varchar(80) DEFAULT NULL,
  `wm_type` varchar(10) DEFAULT 'text',
  `wm_image_path` varchar(100) DEFAULT NULL,
  `wm_test_image_path` varchar(100) DEFAULT NULL,
  `wm_use_font` char(1) DEFAULT 'y',
  `wm_font` varchar(30) DEFAULT NULL,
  `wm_font_size` int(3) unsigned DEFAULT NULL,
  `wm_text` varchar(100) DEFAULT NULL,
  `wm_vrt_alignment` varchar(10) DEFAULT 'top',
  `wm_hor_alignment` varchar(10) DEFAULT 'left',
  `wm_padding` int(3) unsigned DEFAULT NULL,
  `wm_opacity` int(3) unsigned DEFAULT NULL,
  `wm_hor_offset` int(4) unsigned DEFAULT NULL,
  `wm_vrt_offset` int(4) unsigned DEFAULT NULL,
  `wm_x_transp` int(4) DEFAULT NULL,
  `wm_y_transp` int(4) DEFAULT NULL,
  `wm_font_color` varchar(7) DEFAULT NULL,
  `wm_use_drop_shadow` char(1) DEFAULT 'y',
  `wm_shadow_distance` int(3) unsigned DEFAULT NULL,
  `wm_shadow_color` varchar(7) DEFAULT NULL,
  PRIMARY KEY (`wm_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_global_variables`
--

CREATE TABLE IF NOT EXISTS `exp_global_variables` (
  `variable_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `variable_name` varchar(50) NOT NULL,
  `variable_data` text NOT NULL,
  PRIMARY KEY (`variable_id`),
  KEY `variable_name` (`variable_name`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_grid_columns`
--

CREATE TABLE IF NOT EXISTS `exp_grid_columns` (
  `col_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `field_id` int(10) unsigned DEFAULT NULL,
  `content_type` varchar(50) DEFAULT NULL,
  `col_order` int(3) unsigned DEFAULT NULL,
  `col_type` varchar(50) DEFAULT NULL,
  `col_label` varchar(50) DEFAULT NULL,
  `col_name` varchar(32) DEFAULT NULL,
  `col_instructions` text,
  `col_required` char(1) DEFAULT NULL,
  `col_search` char(1) DEFAULT NULL,
  `col_width` int(3) unsigned DEFAULT NULL,
  `col_settings` text,
  PRIMARY KEY (`col_id`),
  KEY `field_id` (`field_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `exp_grid_columns`
--

INSERT INTO `exp_grid_columns` (`col_id`, `field_id`, `content_type`, `col_order`, `col_type`, `col_label`, `col_name`, `col_instructions`, `col_required`, `col_search`, `col_width`, `col_settings`) VALUES
(1, 5, 'channel', 0, 'file', 'Image', 'static_image', '', 'n', 'n', 0, '{"field_content_type":"image","allowed_directories":"2","show_existing":"y","num_existing":"50","field_required":"n"}'),
(2, 10, 'channel', 0, 'file', 'Lightbox image', 'work_lightbox_image', '', 'y', 'n', 0, '{"field_content_type":"image","allowed_directories":"1","show_existing":"y","num_existing":"50","field_required":"y"}'),
(3, 19, 'channel', 0, 'file', 'Left image', 'left_image', '', 'y', 'n', 0, '{"field_content_type":"image","allowed_directories":"1","show_existing":"y","num_existing":"50","field_required":"y"}'),
(4, 19, 'channel', 1, 'file', 'Middle image 1', 'middle_image_1', 'This is the middle top image', 'y', 'n', 0, '{"field_content_type":"image","allowed_directories":"1","show_existing":"y","num_existing":"50","field_required":"y"}'),
(5, 19, 'channel', 2, 'file', 'Middle image 2', 'middle_image_2', 'This is the middle bottom image', 'y', 'n', 0, '{"field_content_type":"image","allowed_directories":"1","show_existing":"y","num_existing":"50","field_required":"y"}'),
(6, 19, 'channel', 3, 'file', 'Right image', 'right_image', 'This field is only applicable on the About Us entry', 'n', 'n', 0, '{"field_content_type":"image","allowed_directories":"1","show_existing":"y","num_existing":"50","field_required":"n"}');

-- --------------------------------------------------------

--
-- Table structure for table `exp_html_buttons`
--

CREATE TABLE IF NOT EXISTS `exp_html_buttons` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `member_id` int(10) NOT NULL DEFAULT '0',
  `tag_name` varchar(32) NOT NULL,
  `tag_open` varchar(120) NOT NULL,
  `tag_close` varchar(120) NOT NULL,
  `accesskey` varchar(32) NOT NULL,
  `tag_order` int(3) unsigned NOT NULL,
  `tag_row` char(1) NOT NULL DEFAULT '1',
  `classname` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;

--
-- Dumping data for table `exp_html_buttons`
--

INSERT INTO `exp_html_buttons` (`id`, `site_id`, `member_id`, `tag_name`, `tag_open`, `tag_close`, `accesskey`, `tag_order`, `tag_row`, `classname`) VALUES
(1, 1, 0, 'b', '<strong>', '</strong>', 'b', 1, '1', 'btn_b'),
(2, 1, 0, 'i', '<em>', '</em>', 'i', 2, '1', 'btn_i'),
(3, 1, 0, 'blockquote', '<blockquote>', '</blockquote>', 'q', 3, '1', 'btn_blockquote'),
(4, 1, 0, 'a', '<a href="[![Link:!:http://]!]"(!( title="[![Title]!]")!)>', '</a>', 'a', 4, '1', 'btn_a'),
(5, 1, 0, 'img', '<img src="[![Link:!:http://]!]" alt="[![Alternative text]!]" />', '', '', 5, '1', 'btn_img');

-- --------------------------------------------------------

--
-- Table structure for table `exp_layout_publish`
--

CREATE TABLE IF NOT EXISTS `exp_layout_publish` (
  `layout_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `member_group` int(4) unsigned NOT NULL DEFAULT '0',
  `channel_id` int(4) unsigned NOT NULL DEFAULT '0',
  `field_layout` text,
  PRIMARY KEY (`layout_id`),
  KEY `site_id` (`site_id`),
  KEY `member_group` (`member_group`),
  KEY `channel_id` (`channel_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;

--
-- Dumping data for table `exp_layout_publish`
--

INSERT INTO `exp_layout_publish` (`layout_id`, `site_id`, `member_group`, `channel_id`, `field_layout`) VALUES
(1, 1, 1, 1, 'a:5:{s:7:"publish";a:6:{s:10:"_tab_label";s:7:"Publish";s:5:"title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:9:"url_title";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:6;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:16:"pages__pages_uri";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:24:"pages__pages_template_id";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:4:"date";a:3:{s:10:"_tab_label";s:4:"Date";s:10:"entry_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:15:"expiration_date";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:10:"categories";a:2:{s:10:"_tab_label";s:10:"Categories";s:8:"category";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:7:"options";a:5:{s:10:"_tab_label";s:7:"Options";s:11:"new_channel";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"status";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"author";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:7:"options";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:8:"seo_lite";a:3:{s:24:"seo_lite__seo_lite_title";a:4:{s:7:"visible";s:4:"true";s:8:"collapse";s:5:"false";s:11:"htmlbuttons";s:5:"false";s:5:"width";s:4:"100%";}s:27:"seo_lite__seo_lite_keywords";a:4:{s:7:"visible";s:4:"true";s:8:"collapse";s:5:"false";s:11:"htmlbuttons";s:5:"false";s:5:"width";s:4:"100%";}s:30:"seo_lite__seo_lite_description";a:4:{s:7:"visible";s:4:"true";s:8:"collapse";s:5:"false";s:11:"htmlbuttons";s:5:"false";s:5:"width";s:4:"100%";}}}'),
(2, 1, 1, 3, 'a:4:{s:7:"publish";a:8:{s:10:"_tab_label";s:7:"Publish";s:5:"title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:9:"url_title";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:4;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:5;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:8:"category";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:16:"pages__pages_uri";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:24:"pages__pages_template_id";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:4:"date";a:3:{s:10:"_tab_label";s:4:"Date";s:10:"entry_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:15:"expiration_date";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:7:"options";a:5:{s:10:"_tab_label";s:7:"Options";s:11:"new_channel";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"status";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"author";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:7:"options";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:8:"seo_lite";a:3:{s:24:"seo_lite__seo_lite_title";a:4:{s:7:"visible";s:4:"true";s:8:"collapse";s:5:"false";s:11:"htmlbuttons";s:5:"false";s:5:"width";s:4:"100%";}s:27:"seo_lite__seo_lite_keywords";a:4:{s:7:"visible";s:4:"true";s:8:"collapse";s:5:"false";s:11:"htmlbuttons";s:5:"false";s:5:"width";s:4:"100%";}s:30:"seo_lite__seo_lite_description";a:4:{s:7:"visible";s:4:"true";s:8:"collapse";s:5:"false";s:11:"htmlbuttons";s:5:"false";s:5:"width";s:4:"100%";}}}'),
(3, 1, 1, 2, 'a:5:{s:7:"publish";a:8:{s:10:"_tab_label";s:7:"Publish";s:5:"title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:9:"url_title";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:1;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:2;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:3;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:16:"pages__pages_uri";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:24:"pages__pages_template_id";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:4:"date";a:3:{s:10:"_tab_label";s:4:"Date";s:10:"entry_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:15:"expiration_date";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:10:"categories";a:2:{s:10:"_tab_label";s:10:"Categories";s:8:"category";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:7:"options";a:5:{s:10:"_tab_label";s:7:"Options";s:11:"new_channel";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"status";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"author";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:7:"options";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:8:"seo_lite";a:3:{s:24:"seo_lite__seo_lite_title";a:4:{s:7:"visible";s:4:"true";s:8:"collapse";s:5:"false";s:11:"htmlbuttons";s:5:"false";s:5:"width";s:4:"100%";}s:27:"seo_lite__seo_lite_keywords";a:4:{s:7:"visible";s:4:"true";s:8:"collapse";s:5:"false";s:11:"htmlbuttons";s:5:"false";s:5:"width";s:4:"100%";}s:30:"seo_lite__seo_lite_description";a:4:{s:7:"visible";s:4:"true";s:8:"collapse";s:5:"false";s:11:"htmlbuttons";s:5:"false";s:5:"width";s:4:"100%";}}}'),
(5, 1, 1, 4, 'a:5:{s:7:"publish";a:11:{s:10:"_tab_label";s:7:"Publish";s:5:"title";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:9:"url_title";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:7;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:8;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:11;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:9;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:12;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}i:10;a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:16:"pages__pages_uri";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:24:"pages__pages_template_id";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:4:"date";a:3:{s:10:"_tab_label";s:4:"Date";s:10:"entry_date";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:15:"expiration_date";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:10:"categories";a:2:{s:10:"_tab_label";s:10:"Categories";s:8:"category";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:7:"options";a:5:{s:10:"_tab_label";s:7:"Options";s:11:"new_channel";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"status";a:4:{s:7:"visible";b:1;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:6:"author";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}s:7:"options";a:4:{s:7:"visible";b:0;s:8:"collapse";b:0;s:11:"htmlbuttons";b:1;s:5:"width";s:4:"100%";}}s:8:"seo_lite";a:3:{s:24:"seo_lite__seo_lite_title";a:4:{s:7:"visible";s:4:"true";s:8:"collapse";s:5:"false";s:11:"htmlbuttons";s:5:"false";s:5:"width";s:4:"100%";}s:27:"seo_lite__seo_lite_keywords";a:4:{s:7:"visible";s:4:"true";s:8:"collapse";s:5:"false";s:11:"htmlbuttons";s:5:"false";s:5:"width";s:4:"100%";}s:30:"seo_lite__seo_lite_description";a:4:{s:7:"visible";s:4:"true";s:8:"collapse";s:5:"false";s:11:"htmlbuttons";s:5:"false";s:5:"width";s:4:"100%";}}}');

-- --------------------------------------------------------

--
-- Table structure for table `exp_members`
--

CREATE TABLE IF NOT EXISTS `exp_members` (
  `member_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `group_id` smallint(4) NOT NULL DEFAULT '0',
  `username` varchar(50) NOT NULL,
  `screen_name` varchar(50) NOT NULL,
  `password` varchar(128) NOT NULL,
  `salt` varchar(128) NOT NULL DEFAULT '',
  `unique_id` varchar(40) NOT NULL,
  `crypt_key` varchar(40) DEFAULT NULL,
  `authcode` varchar(10) DEFAULT NULL,
  `email` varchar(75) NOT NULL,
  `url` varchar(150) DEFAULT NULL,
  `location` varchar(50) DEFAULT NULL,
  `occupation` varchar(80) DEFAULT NULL,
  `interests` varchar(120) DEFAULT NULL,
  `bday_d` int(2) DEFAULT NULL,
  `bday_m` int(2) DEFAULT NULL,
  `bday_y` int(4) DEFAULT NULL,
  `aol_im` varchar(50) DEFAULT NULL,
  `yahoo_im` varchar(50) DEFAULT NULL,
  `msn_im` varchar(50) DEFAULT NULL,
  `icq` varchar(50) DEFAULT NULL,
  `bio` text,
  `signature` text,
  `avatar_filename` varchar(120) DEFAULT NULL,
  `avatar_width` int(4) unsigned DEFAULT NULL,
  `avatar_height` int(4) unsigned DEFAULT NULL,
  `photo_filename` varchar(120) DEFAULT NULL,
  `photo_width` int(4) unsigned DEFAULT NULL,
  `photo_height` int(4) unsigned DEFAULT NULL,
  `sig_img_filename` varchar(120) DEFAULT NULL,
  `sig_img_width` int(4) unsigned DEFAULT NULL,
  `sig_img_height` int(4) unsigned DEFAULT NULL,
  `ignore_list` text,
  `private_messages` int(4) unsigned NOT NULL DEFAULT '0',
  `accept_messages` char(1) NOT NULL DEFAULT 'y',
  `last_view_bulletins` int(10) NOT NULL DEFAULT '0',
  `last_bulletin_date` int(10) NOT NULL DEFAULT '0',
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `join_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_visit` int(10) unsigned NOT NULL DEFAULT '0',
  `last_activity` int(10) unsigned NOT NULL DEFAULT '0',
  `total_entries` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `total_comments` mediumint(8) unsigned NOT NULL DEFAULT '0',
  `total_forum_topics` mediumint(8) NOT NULL DEFAULT '0',
  `total_forum_posts` mediumint(8) NOT NULL DEFAULT '0',
  `last_entry_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_comment_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_forum_post_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_email_date` int(10) unsigned NOT NULL DEFAULT '0',
  `in_authorlist` char(1) NOT NULL DEFAULT 'n',
  `accept_admin_email` char(1) NOT NULL DEFAULT 'y',
  `accept_user_email` char(1) NOT NULL DEFAULT 'y',
  `notify_by_default` char(1) NOT NULL DEFAULT 'y',
  `notify_of_pm` char(1) NOT NULL DEFAULT 'y',
  `display_avatars` char(1) NOT NULL DEFAULT 'y',
  `display_signatures` char(1) NOT NULL DEFAULT 'y',
  `parse_smileys` char(1) NOT NULL DEFAULT 'y',
  `smart_notifications` char(1) NOT NULL DEFAULT 'y',
  `language` varchar(50) NOT NULL,
  `timezone` varchar(50) NOT NULL,
  `time_format` char(2) NOT NULL DEFAULT '12',
  `date_format` varchar(8) NOT NULL DEFAULT '%n/%j/%y',
  `include_seconds` char(1) NOT NULL DEFAULT 'n',
  `cp_theme` varchar(32) DEFAULT NULL,
  `profile_theme` varchar(32) DEFAULT NULL,
  `forum_theme` varchar(32) DEFAULT NULL,
  `tracker` text,
  `template_size` varchar(2) NOT NULL DEFAULT '28',
  `notepad` text,
  `notepad_size` varchar(2) NOT NULL DEFAULT '18',
  `quick_links` text,
  `quick_tabs` text,
  `show_sidebar` char(1) NOT NULL DEFAULT 'n',
  `pmember_id` int(10) NOT NULL DEFAULT '0',
  `rte_enabled` char(1) NOT NULL DEFAULT 'y',
  `rte_toolset_id` int(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`member_id`),
  KEY `group_id` (`group_id`),
  KEY `unique_id` (`unique_id`),
  KEY `password` (`password`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `exp_members`
--

INSERT INTO `exp_members` (`member_id`, `group_id`, `username`, `screen_name`, `password`, `salt`, `unique_id`, `crypt_key`, `authcode`, `email`, `url`, `location`, `occupation`, `interests`, `bday_d`, `bday_m`, `bday_y`, `aol_im`, `yahoo_im`, `msn_im`, `icq`, `bio`, `signature`, `avatar_filename`, `avatar_width`, `avatar_height`, `photo_filename`, `photo_width`, `photo_height`, `sig_img_filename`, `sig_img_width`, `sig_img_height`, `ignore_list`, `private_messages`, `accept_messages`, `last_view_bulletins`, `last_bulletin_date`, `ip_address`, `join_date`, `last_visit`, `last_activity`, `total_entries`, `total_comments`, `total_forum_topics`, `total_forum_posts`, `last_entry_date`, `last_comment_date`, `last_forum_post_date`, `last_email_date`, `in_authorlist`, `accept_admin_email`, `accept_user_email`, `notify_by_default`, `notify_of_pm`, `display_avatars`, `display_signatures`, `parse_smileys`, `smart_notifications`, `language`, `timezone`, `time_format`, `date_format`, `include_seconds`, `cp_theme`, `profile_theme`, `forum_theme`, `tracker`, `template_size`, `notepad`, `notepad_size`, `quick_links`, `quick_tabs`, `show_sidebar`, `pmember_id`, `rte_enabled`, `rte_toolset_id`) VALUES
(1, 1, 'admin', 'Admin', '70e21b28958d75f0f92c673a382a8ad27980009d7562d6395279ab495b1b70ac17e6f657cfec46f9d914c5b97de90193352db5468c7be3ee5b004bede2f0dead', '2$vyQ8McQwYU,X~5^B/D%H@m4nEy^T$%)?p=WBONA%+Zbz?6%So>9F_KFb*)P]inhzilW5rvr2d5,mvC-z)Ye-o,R`E0[8>kFMe)$}!EjQ9"f+@9X=:fq{#Hy!fRjvLF', 'b596cc14f002624f14c073aa3f732b6149eb379a', '21cde3d1cd3f743ba7532abcf264d163e9a3b1f7', NULL, 'awilson82@hotmail.co.uk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '127.0.0.1', 1419416985, 1440708172, 1442352237, 19, 0, 0, 0, 1439151390, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'Europe/London', '12', '%n/%j/%y', 'n', NULL, NULL, NULL, NULL, '28', NULL, '18', '', NULL, 'n', 0, 'y', 0),
(2, 6, 'harperj', 'James H', '449e473cc75c520dfad2994587910ea96c4f07e82c8041b1af45506bb01bd8d7ff2ac659e1644168bfd863ce61a6a1a499e71cea02dd388f8ac407d846d9a9f7', ']u4!\\E,@|/@:j)xP*_~l\\8I+08]V%*~|B0NDt!`X[NDXDVO@Rx<8"Hz+DDq:Pjw''^.I+p_&&-#;j9$(C]oYT4S*eGiv]~*QTvC\\^"XMg9H:)-_''Abd)Qm".6A5euto/}', '7667b7b0af040ec9e8c63600b23a09a3f86534a5', 'c2a85a0fe0ecd13fa49aa398c9492db5cd05b178', NULL, 'james@harper-creative.co.uk', '', '', '', '', NULL, NULL, NULL, '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '94.72.244.112', 1423004452, 1444990762, 1445018559, 59, 0, 0, 0, 1445018739, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'Europe/London', '12', '%n/%j/%y', 'n', NULL, NULL, NULL, NULL, '28', NULL, '18', NULL, NULL, 'n', 0, 'y', 0),
(3, 6, 'wilsona', 'Andy', 'd503a93c1e98a2b65228653e01fb5aed0bb08dad1638590c998fda271c9751851808458ea4c2ddbac45bae144c6a00d25450602f962baeb5521f252ef51e8cc7', 'yaEJcB!eYt{5>`eR#dI6}_]gihw41x@%/B/2.gq(6o-G<hWSOqqD\\*{SSSjFvY[ik<d;TRs$>o`8qMFhQ>1TzmYE;{ImEY+/)l%SQ&w''"(vPYR5[8L!5yHKwm(o@WnbX', '2db0624de424d7fe8dc1e8ac1a1103bb4b319dfd', 'e84bc2e181668c2dfacc575c719b7b1ea467690c', NULL, 'f_bike@hotmail.com', '', '', '', '', NULL, NULL, NULL, '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'y', 0, 0, '94.72.244.112', 1423777707, 1423779404, 1424729125, 0, 0, 0, 0, 0, 0, 0, 0, 'n', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'english', 'Europe/London', '12', '%n/%j/%y', 'n', NULL, NULL, NULL, NULL, '28', NULL, '18', NULL, NULL, 'n', 0, 'y', 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_member_bulletin_board`
--

CREATE TABLE IF NOT EXISTS `exp_member_bulletin_board` (
  `bulletin_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `sender_id` int(10) unsigned NOT NULL,
  `bulletin_group` int(8) unsigned NOT NULL,
  `bulletin_date` int(10) unsigned NOT NULL,
  `hash` varchar(10) NOT NULL DEFAULT '',
  `bulletin_expires` int(10) unsigned NOT NULL DEFAULT '0',
  `bulletin_message` text NOT NULL,
  PRIMARY KEY (`bulletin_id`),
  KEY `sender_id` (`sender_id`),
  KEY `hash` (`hash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_member_data`
--

CREATE TABLE IF NOT EXISTS `exp_member_data` (
  `member_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `exp_member_data`
--

INSERT INTO `exp_member_data` (`member_id`) VALUES
(1),
(2),
(3);

-- --------------------------------------------------------

--
-- Table structure for table `exp_member_fields`
--

CREATE TABLE IF NOT EXISTS `exp_member_fields` (
  `m_field_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `m_field_name` varchar(32) NOT NULL,
  `m_field_label` varchar(50) NOT NULL,
  `m_field_description` text NOT NULL,
  `m_field_type` varchar(12) NOT NULL DEFAULT 'text',
  `m_field_list_items` text NOT NULL,
  `m_field_ta_rows` tinyint(2) DEFAULT '8',
  `m_field_maxl` smallint(3) NOT NULL,
  `m_field_width` varchar(6) NOT NULL,
  `m_field_search` char(1) NOT NULL DEFAULT 'y',
  `m_field_required` char(1) NOT NULL DEFAULT 'n',
  `m_field_public` char(1) NOT NULL DEFAULT 'y',
  `m_field_reg` char(1) NOT NULL DEFAULT 'n',
  `m_field_cp_reg` char(1) NOT NULL DEFAULT 'n',
  `m_field_fmt` char(5) NOT NULL DEFAULT 'none',
  `m_field_order` int(3) unsigned NOT NULL,
  PRIMARY KEY (`m_field_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_member_groups`
--

CREATE TABLE IF NOT EXISTS `exp_member_groups` (
  `group_id` smallint(4) unsigned NOT NULL,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_title` varchar(100) NOT NULL,
  `group_description` text NOT NULL,
  `is_locked` char(1) NOT NULL DEFAULT 'y',
  `can_view_offline_system` char(1) NOT NULL DEFAULT 'n',
  `can_view_online_system` char(1) NOT NULL DEFAULT 'y',
  `can_access_cp` char(1) NOT NULL DEFAULT 'y',
  `can_access_content` char(1) NOT NULL DEFAULT 'n',
  `can_access_publish` char(1) NOT NULL DEFAULT 'n',
  `can_access_edit` char(1) NOT NULL DEFAULT 'n',
  `can_access_files` char(1) NOT NULL DEFAULT 'n',
  `can_access_fieldtypes` char(1) NOT NULL DEFAULT 'n',
  `can_access_design` char(1) NOT NULL DEFAULT 'n',
  `can_access_addons` char(1) NOT NULL DEFAULT 'n',
  `can_access_modules` char(1) NOT NULL DEFAULT 'n',
  `can_access_extensions` char(1) NOT NULL DEFAULT 'n',
  `can_access_accessories` char(1) NOT NULL DEFAULT 'n',
  `can_access_plugins` char(1) NOT NULL DEFAULT 'n',
  `can_access_members` char(1) NOT NULL DEFAULT 'n',
  `can_access_admin` char(1) NOT NULL DEFAULT 'n',
  `can_access_sys_prefs` char(1) NOT NULL DEFAULT 'n',
  `can_access_content_prefs` char(1) NOT NULL DEFAULT 'n',
  `can_access_tools` char(1) NOT NULL DEFAULT 'n',
  `can_access_comm` char(1) NOT NULL DEFAULT 'n',
  `can_access_utilities` char(1) NOT NULL DEFAULT 'n',
  `can_access_data` char(1) NOT NULL DEFAULT 'n',
  `can_access_logs` char(1) NOT NULL DEFAULT 'n',
  `can_admin_channels` char(1) NOT NULL DEFAULT 'n',
  `can_admin_upload_prefs` char(1) NOT NULL DEFAULT 'n',
  `can_admin_design` char(1) NOT NULL DEFAULT 'n',
  `can_admin_members` char(1) NOT NULL DEFAULT 'n',
  `can_delete_members` char(1) NOT NULL DEFAULT 'n',
  `can_admin_mbr_groups` char(1) NOT NULL DEFAULT 'n',
  `can_admin_mbr_templates` char(1) NOT NULL DEFAULT 'n',
  `can_ban_users` char(1) NOT NULL DEFAULT 'n',
  `can_admin_modules` char(1) NOT NULL DEFAULT 'n',
  `can_admin_templates` char(1) NOT NULL DEFAULT 'n',
  `can_edit_categories` char(1) NOT NULL DEFAULT 'n',
  `can_delete_categories` char(1) NOT NULL DEFAULT 'n',
  `can_view_other_entries` char(1) NOT NULL DEFAULT 'n',
  `can_edit_other_entries` char(1) NOT NULL DEFAULT 'n',
  `can_assign_post_authors` char(1) NOT NULL DEFAULT 'n',
  `can_delete_self_entries` char(1) NOT NULL DEFAULT 'n',
  `can_delete_all_entries` char(1) NOT NULL DEFAULT 'n',
  `can_view_other_comments` char(1) NOT NULL DEFAULT 'n',
  `can_edit_own_comments` char(1) NOT NULL DEFAULT 'n',
  `can_delete_own_comments` char(1) NOT NULL DEFAULT 'n',
  `can_edit_all_comments` char(1) NOT NULL DEFAULT 'n',
  `can_delete_all_comments` char(1) NOT NULL DEFAULT 'n',
  `can_moderate_comments` char(1) NOT NULL DEFAULT 'n',
  `can_send_email` char(1) NOT NULL DEFAULT 'n',
  `can_send_cached_email` char(1) NOT NULL DEFAULT 'n',
  `can_email_member_groups` char(1) NOT NULL DEFAULT 'n',
  `can_email_mailinglist` char(1) NOT NULL DEFAULT 'n',
  `can_email_from_profile` char(1) NOT NULL DEFAULT 'n',
  `can_view_profiles` char(1) NOT NULL DEFAULT 'n',
  `can_edit_html_buttons` char(1) NOT NULL DEFAULT 'n',
  `can_delete_self` char(1) NOT NULL DEFAULT 'n',
  `mbr_delete_notify_emails` varchar(255) DEFAULT NULL,
  `can_post_comments` char(1) NOT NULL DEFAULT 'n',
  `exclude_from_moderation` char(1) NOT NULL DEFAULT 'n',
  `can_search` char(1) NOT NULL DEFAULT 'n',
  `search_flood_control` mediumint(5) unsigned NOT NULL,
  `can_send_private_messages` char(1) NOT NULL DEFAULT 'n',
  `prv_msg_send_limit` smallint(5) unsigned NOT NULL DEFAULT '20',
  `prv_msg_storage_limit` smallint(5) unsigned NOT NULL DEFAULT '60',
  `can_attach_in_private_messages` char(1) NOT NULL DEFAULT 'n',
  `can_send_bulletins` char(1) NOT NULL DEFAULT 'n',
  `include_in_authorlist` char(1) NOT NULL DEFAULT 'n',
  `include_in_memberlist` char(1) NOT NULL DEFAULT 'y',
  `include_in_mailinglists` char(1) NOT NULL DEFAULT 'y',
  PRIMARY KEY (`group_id`,`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `exp_member_groups`
--

INSERT INTO `exp_member_groups` (`group_id`, `site_id`, `group_title`, `group_description`, `is_locked`, `can_view_offline_system`, `can_view_online_system`, `can_access_cp`, `can_access_content`, `can_access_publish`, `can_access_edit`, `can_access_files`, `can_access_fieldtypes`, `can_access_design`, `can_access_addons`, `can_access_modules`, `can_access_extensions`, `can_access_accessories`, `can_access_plugins`, `can_access_members`, `can_access_admin`, `can_access_sys_prefs`, `can_access_content_prefs`, `can_access_tools`, `can_access_comm`, `can_access_utilities`, `can_access_data`, `can_access_logs`, `can_admin_channels`, `can_admin_upload_prefs`, `can_admin_design`, `can_admin_members`, `can_delete_members`, `can_admin_mbr_groups`, `can_admin_mbr_templates`, `can_ban_users`, `can_admin_modules`, `can_admin_templates`, `can_edit_categories`, `can_delete_categories`, `can_view_other_entries`, `can_edit_other_entries`, `can_assign_post_authors`, `can_delete_self_entries`, `can_delete_all_entries`, `can_view_other_comments`, `can_edit_own_comments`, `can_delete_own_comments`, `can_edit_all_comments`, `can_delete_all_comments`, `can_moderate_comments`, `can_send_email`, `can_send_cached_email`, `can_email_member_groups`, `can_email_mailinglist`, `can_email_from_profile`, `can_view_profiles`, `can_edit_html_buttons`, `can_delete_self`, `mbr_delete_notify_emails`, `can_post_comments`, `exclude_from_moderation`, `can_search`, `search_flood_control`, `can_send_private_messages`, `prv_msg_send_limit`, `prv_msg_storage_limit`, `can_attach_in_private_messages`, `can_send_bulletins`, `include_in_authorlist`, `include_in_memberlist`, `include_in_mailinglists`) VALUES
(1, 1, 'Super Admins', '', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', 'y', '', 'y', 'y', 'y', 0, 'y', 20, 60, 'y', 'y', 'y', 'y', 'y'),
(2, 1, 'Banned', '', 'y', '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', 60, 'n', 20, 60, 'n', 'n', 'n', 'n', 'n'),
(3, 1, 'Guests', '', 'y', 'n', 'y', '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', 'y', 'n', 'n', 'n', 'n', '', 'y', 'n', 'y', 15, 'n', 20, 60, 'n', 'n', 'n', 'n', 'n'),
(4, 1, 'Pending', '', 'y', 'n', 'y', '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', 'y', 'n', 'n', 'n', 'n', '', 'y', 'n', 'y', 15, 'n', 20, 60, 'n', 'n', 'n', 'n', 'n'),
(5, 1, 'Members', '', 'y', 'n', 'y', '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', 'y', 'y', 'y', 'n', '', 'y', 'n', 'y', 10, 'y', 20, 60, 'y', 'n', 'n', 'y', 'y'),
(6, 1, 'HC Staff', '', 'y', 'n', 'y', 'y', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'y', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'y', 'n', 'y', 'y', 'y', 'y', 'y', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', 'n', '', 'n', 'n', 'y', 0, 'n', 20, 60, 'n', 'n', 'n', 'n', 'n');

-- --------------------------------------------------------

--
-- Table structure for table `exp_member_homepage`
--

CREATE TABLE IF NOT EXISTS `exp_member_homepage` (
  `member_id` int(10) unsigned NOT NULL,
  `recent_entries` char(1) NOT NULL DEFAULT 'l',
  `recent_entries_order` int(3) unsigned NOT NULL DEFAULT '0',
  `recent_comments` char(1) NOT NULL DEFAULT 'l',
  `recent_comments_order` int(3) unsigned NOT NULL DEFAULT '0',
  `recent_members` char(1) NOT NULL DEFAULT 'n',
  `recent_members_order` int(3) unsigned NOT NULL DEFAULT '0',
  `site_statistics` char(1) NOT NULL DEFAULT 'r',
  `site_statistics_order` int(3) unsigned NOT NULL DEFAULT '0',
  `member_search_form` char(1) NOT NULL DEFAULT 'n',
  `member_search_form_order` int(3) unsigned NOT NULL DEFAULT '0',
  `notepad` char(1) NOT NULL DEFAULT 'r',
  `notepad_order` int(3) unsigned NOT NULL DEFAULT '0',
  `bulletin_board` char(1) NOT NULL DEFAULT 'r',
  `bulletin_board_order` int(3) unsigned NOT NULL DEFAULT '0',
  `pmachine_news_feed` char(1) NOT NULL DEFAULT 'n',
  `pmachine_news_feed_order` int(3) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `exp_member_homepage`
--

INSERT INTO `exp_member_homepage` (`member_id`, `recent_entries`, `recent_entries_order`, `recent_comments`, `recent_comments_order`, `recent_members`, `recent_members_order`, `site_statistics`, `site_statistics_order`, `member_search_form`, `member_search_form_order`, `notepad`, `notepad_order`, `bulletin_board`, `bulletin_board_order`, `pmachine_news_feed`, `pmachine_news_feed_order`) VALUES
(1, 'l', 1, 'l', 2, 'n', 0, 'r', 1, 'n', 0, 'r', 2, 'r', 0, 'l', 0),
(2, 'l', 0, 'l', 0, 'n', 0, 'r', 0, 'n', 0, 'r', 0, 'r', 0, 'n', 0),
(3, 'l', 0, 'l', 0, 'n', 0, 'r', 0, 'n', 0, 'r', 0, 'r', 0, 'n', 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_member_search`
--

CREATE TABLE IF NOT EXISTS `exp_member_search` (
  `search_id` varchar(32) NOT NULL,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `search_date` int(10) unsigned NOT NULL,
  `keywords` varchar(200) NOT NULL,
  `fields` varchar(200) NOT NULL,
  `member_id` int(10) unsigned NOT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `total_results` int(8) unsigned NOT NULL,
  `query` text NOT NULL,
  PRIMARY KEY (`search_id`),
  KEY `member_id` (`member_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `exp_message_attachments`
--

CREATE TABLE IF NOT EXISTS `exp_message_attachments` (
  `attachment_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `sender_id` int(10) unsigned NOT NULL DEFAULT '0',
  `message_id` int(10) unsigned NOT NULL DEFAULT '0',
  `attachment_name` varchar(50) NOT NULL DEFAULT '',
  `attachment_hash` varchar(40) NOT NULL DEFAULT '',
  `attachment_extension` varchar(20) NOT NULL DEFAULT '',
  `attachment_location` varchar(150) NOT NULL DEFAULT '',
  `attachment_date` int(10) unsigned NOT NULL DEFAULT '0',
  `attachment_size` int(10) unsigned NOT NULL DEFAULT '0',
  `is_temp` char(1) NOT NULL DEFAULT 'y',
  PRIMARY KEY (`attachment_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_message_copies`
--

CREATE TABLE IF NOT EXISTS `exp_message_copies` (
  `copy_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `message_id` int(10) unsigned NOT NULL DEFAULT '0',
  `sender_id` int(10) unsigned NOT NULL DEFAULT '0',
  `recipient_id` int(10) unsigned NOT NULL DEFAULT '0',
  `message_received` char(1) NOT NULL DEFAULT 'n',
  `message_read` char(1) NOT NULL DEFAULT 'n',
  `message_time_read` int(10) unsigned NOT NULL DEFAULT '0',
  `attachment_downloaded` char(1) NOT NULL DEFAULT 'n',
  `message_folder` int(10) unsigned NOT NULL DEFAULT '1',
  `message_authcode` varchar(10) NOT NULL DEFAULT '',
  `message_deleted` char(1) NOT NULL DEFAULT 'n',
  `message_status` varchar(10) NOT NULL DEFAULT '',
  PRIMARY KEY (`copy_id`),
  KEY `message_id` (`message_id`),
  KEY `recipient_id` (`recipient_id`),
  KEY `sender_id` (`sender_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_message_data`
--

CREATE TABLE IF NOT EXISTS `exp_message_data` (
  `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `sender_id` int(10) unsigned NOT NULL DEFAULT '0',
  `message_date` int(10) unsigned NOT NULL DEFAULT '0',
  `message_subject` varchar(255) NOT NULL DEFAULT '',
  `message_body` text NOT NULL,
  `message_tracking` char(1) NOT NULL DEFAULT 'y',
  `message_attachments` char(1) NOT NULL DEFAULT 'n',
  `message_recipients` varchar(200) NOT NULL DEFAULT '',
  `message_cc` varchar(200) NOT NULL DEFAULT '',
  `message_hide_cc` char(1) NOT NULL DEFAULT 'n',
  `message_sent_copy` char(1) NOT NULL DEFAULT 'n',
  `total_recipients` int(5) unsigned NOT NULL DEFAULT '0',
  `message_status` varchar(25) NOT NULL DEFAULT '',
  PRIMARY KEY (`message_id`),
  KEY `sender_id` (`sender_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_message_folders`
--

CREATE TABLE IF NOT EXISTS `exp_message_folders` (
  `member_id` int(10) unsigned NOT NULL DEFAULT '0',
  `folder1_name` varchar(50) NOT NULL DEFAULT 'InBox',
  `folder2_name` varchar(50) NOT NULL DEFAULT 'Sent',
  `folder3_name` varchar(50) NOT NULL DEFAULT '',
  `folder4_name` varchar(50) NOT NULL DEFAULT '',
  `folder5_name` varchar(50) NOT NULL DEFAULT '',
  `folder6_name` varchar(50) NOT NULL DEFAULT '',
  `folder7_name` varchar(50) NOT NULL DEFAULT '',
  `folder8_name` varchar(50) NOT NULL DEFAULT '',
  `folder9_name` varchar(50) NOT NULL DEFAULT '',
  `folder10_name` varchar(50) NOT NULL DEFAULT '',
  PRIMARY KEY (`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `exp_message_folders`
--

INSERT INTO `exp_message_folders` (`member_id`, `folder1_name`, `folder2_name`, `folder3_name`, `folder4_name`, `folder5_name`, `folder6_name`, `folder7_name`, `folder8_name`, `folder9_name`, `folder10_name`) VALUES
(1, 'InBox', 'Sent', '', '', '', '', '', '', '', '');

-- --------------------------------------------------------

--
-- Table structure for table `exp_message_listed`
--

CREATE TABLE IF NOT EXISTS `exp_message_listed` (
  `listed_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `member_id` int(10) unsigned NOT NULL DEFAULT '0',
  `listed_member` int(10) unsigned NOT NULL DEFAULT '0',
  `listed_description` varchar(100) NOT NULL DEFAULT '',
  `listed_type` varchar(10) NOT NULL DEFAULT 'blocked',
  PRIMARY KEY (`listed_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_modules`
--

CREATE TABLE IF NOT EXISTS `exp_modules` (
  `module_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `module_name` varchar(50) NOT NULL,
  `module_version` varchar(12) NOT NULL,
  `has_cp_backend` char(1) NOT NULL DEFAULT 'n',
  `has_publish_fields` char(1) NOT NULL DEFAULT 'n',
  PRIMARY KEY (`module_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=14 ;

--
-- Dumping data for table `exp_modules`
--

INSERT INTO `exp_modules` (`module_id`, `module_name`, `module_version`, `has_cp_backend`, `has_publish_fields`) VALUES
(1, 'Email', '2.0', 'n', 'n'),
(2, 'File', '1.0.0', 'n', 'n'),
(3, 'Jquery', '1.0', 'n', 'n'),
(4, 'Pages', '2.2', 'y', 'y'),
(5, 'Query', '2.0', 'n', 'n'),
(6, 'Rss', '2.0', 'n', 'n'),
(7, 'Search', '2.2.2', 'n', 'n'),
(8, 'Channel', '2.0.1', 'n', 'n'),
(9, 'Member', '2.1', 'n', 'n'),
(10, 'Stats', '2.0', 'n', 'n'),
(11, 'Rte', '1.0.1', 'y', 'n'),
(12, 'Twitter', '1.7.1', 'y', 'n'),
(13, 'Seo_lite', '1.4.9.3', 'y', 'y');

-- --------------------------------------------------------

--
-- Table structure for table `exp_module_member_groups`
--

CREATE TABLE IF NOT EXISTS `exp_module_member_groups` (
  `group_id` smallint(4) unsigned NOT NULL,
  `module_id` mediumint(5) unsigned NOT NULL,
  PRIMARY KEY (`group_id`,`module_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `exp_online_users`
--

CREATE TABLE IF NOT EXISTS `exp_online_users` (
  `online_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `member_id` int(10) NOT NULL DEFAULT '0',
  `in_forum` char(1) NOT NULL DEFAULT 'n',
  `name` varchar(50) NOT NULL DEFAULT '0',
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `date` int(10) unsigned NOT NULL DEFAULT '0',
  `anon` char(1) NOT NULL,
  PRIMARY KEY (`online_id`),
  KEY `date` (`date`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `exp_online_users`
--

INSERT INTO `exp_online_users` (`online_id`, `site_id`, `member_id`, `in_forum`, `name`, `ip_address`, `date`, `anon`) VALUES
(1, 1, 0, 'n', '', '127.0.0.1', 1419417007, '');

-- --------------------------------------------------------

--
-- Table structure for table `exp_pages_configuration`
--

CREATE TABLE IF NOT EXISTS `exp_pages_configuration` (
  `configuration_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(8) unsigned NOT NULL DEFAULT '1',
  `configuration_name` varchar(60) NOT NULL,
  `configuration_value` varchar(100) NOT NULL,
  PRIMARY KEY (`configuration_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_password_lockout`
--

CREATE TABLE IF NOT EXISTS `exp_password_lockout` (
  `lockout_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `login_date` int(10) unsigned NOT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `user_agent` varchar(120) NOT NULL,
  `username` varchar(50) NOT NULL,
  PRIMARY KEY (`lockout_id`),
  KEY `login_date` (`login_date`),
  KEY `ip_address` (`ip_address`),
  KEY `user_agent` (`user_agent`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_relationships`
--

CREATE TABLE IF NOT EXISTS `exp_relationships` (
  `relationship_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `parent_id` int(10) unsigned NOT NULL DEFAULT '0',
  `child_id` int(10) unsigned NOT NULL DEFAULT '0',
  `field_id` int(10) unsigned NOT NULL DEFAULT '0',
  `grid_field_id` int(10) unsigned NOT NULL DEFAULT '0',
  `grid_col_id` int(10) unsigned NOT NULL DEFAULT '0',
  `grid_row_id` int(10) unsigned NOT NULL DEFAULT '0',
  `order` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`relationship_id`),
  KEY `parent_id` (`parent_id`),
  KEY `child_id` (`child_id`),
  KEY `field_id` (`field_id`),
  KEY `grid_row_id` (`grid_row_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_remember_me`
--

CREATE TABLE IF NOT EXISTS `exp_remember_me` (
  `remember_me_id` varchar(40) NOT NULL DEFAULT '0',
  `member_id` int(10) DEFAULT '0',
  `ip_address` varchar(45) DEFAULT '0',
  `user_agent` varchar(120) DEFAULT '',
  `admin_sess` tinyint(1) DEFAULT '0',
  `site_id` int(4) DEFAULT '1',
  `expiration` int(10) DEFAULT '0',
  `last_refresh` int(10) DEFAULT '0',
  PRIMARY KEY (`remember_me_id`),
  KEY `member_id` (`member_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `exp_reset_password`
--

CREATE TABLE IF NOT EXISTS `exp_reset_password` (
  `reset_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `member_id` int(10) unsigned NOT NULL,
  `resetcode` varchar(12) NOT NULL,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`reset_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_revision_tracker`
--

CREATE TABLE IF NOT EXISTS `exp_revision_tracker` (
  `tracker_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `item_id` int(10) unsigned NOT NULL,
  `item_table` varchar(20) NOT NULL,
  `item_field` varchar(20) NOT NULL,
  `item_date` int(10) NOT NULL,
  `item_author_id` int(10) unsigned NOT NULL,
  `item_data` mediumtext NOT NULL,
  PRIMARY KEY (`tracker_id`),
  KEY `item_id` (`item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_rte_tools`
--

CREATE TABLE IF NOT EXISTS `exp_rte_tools` (
  `tool_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(75) DEFAULT NULL,
  `class` varchar(75) DEFAULT NULL,
  `enabled` char(1) DEFAULT 'y',
  PRIMARY KEY (`tool_id`),
  KEY `enabled` (`enabled`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;

--
-- Dumping data for table `exp_rte_tools`
--

INSERT INTO `exp_rte_tools` (`tool_id`, `name`, `class`, `enabled`) VALUES
(1, 'Blockquote', 'Blockquote_rte', 'y'),
(2, 'Bold', 'Bold_rte', 'y'),
(3, 'Headings', 'Headings_rte', 'y'),
(4, 'Image', 'Image_rte', 'y'),
(5, 'Italic', 'Italic_rte', 'y'),
(6, 'Link', 'Link_rte', 'y'),
(7, 'Ordered List', 'Ordered_list_rte', 'y'),
(8, 'Underline', 'Underline_rte', 'y'),
(9, 'Unordered List', 'Unordered_list_rte', 'y'),
(10, 'View Source', 'View_source_rte', 'y');

-- --------------------------------------------------------

--
-- Table structure for table `exp_rte_toolsets`
--

CREATE TABLE IF NOT EXISTS `exp_rte_toolsets` (
  `toolset_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `member_id` int(10) DEFAULT '0',
  `name` varchar(100) DEFAULT NULL,
  `tools` text,
  `enabled` char(1) DEFAULT 'y',
  PRIMARY KEY (`toolset_id`),
  KEY `member_id` (`member_id`),
  KEY `enabled` (`enabled`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `exp_rte_toolsets`
--

INSERT INTO `exp_rte_toolsets` (`toolset_id`, `member_id`, `name`, `tools`, `enabled`) VALUES
(1, 0, 'Default', '3|2|5|1|9|7|6|4|10', 'y');

-- --------------------------------------------------------

--
-- Table structure for table `exp_search`
--

CREATE TABLE IF NOT EXISTS `exp_search` (
  `search_id` varchar(32) NOT NULL,
  `site_id` int(4) NOT NULL DEFAULT '1',
  `search_date` int(10) NOT NULL,
  `keywords` varchar(60) NOT NULL,
  `member_id` int(10) unsigned NOT NULL,
  `ip_address` varchar(45) NOT NULL,
  `total_results` int(6) NOT NULL,
  `per_page` tinyint(3) unsigned NOT NULL,
  `query` mediumtext,
  `custom_fields` mediumtext,
  `result_page` varchar(70) NOT NULL,
  PRIMARY KEY (`search_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `exp_search_log`
--

CREATE TABLE IF NOT EXISTS `exp_search_log` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `member_id` int(10) unsigned NOT NULL,
  `screen_name` varchar(50) NOT NULL,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `search_date` int(10) NOT NULL,
  `search_type` varchar(32) NOT NULL,
  `search_terms` varchar(200) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_security_hashes`
--

CREATE TABLE IF NOT EXISTS `exp_security_hashes` (
  `hash_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `date` int(10) unsigned NOT NULL,
  `session_id` varchar(40) NOT NULL DEFAULT '0',
  `hash` varchar(40) NOT NULL,
  PRIMARY KEY (`hash_id`),
  KEY `session_id` (`session_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=110 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_seolite_config`
--

CREATE TABLE IF NOT EXISTS `exp_seolite_config` (
  `seolite_config_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(10) unsigned DEFAULT NULL,
  `template` text,
  `default_keywords` varchar(1024) NOT NULL,
  `default_description` varchar(1024) NOT NULL,
  `default_title_postfix` varchar(60) NOT NULL,
  `include_pagination_in_canonical` enum('y','n') NOT NULL DEFAULT 'y',
  PRIMARY KEY (`seolite_config_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `exp_seolite_config`
--

INSERT INTO `exp_seolite_config` (`seolite_config_id`, `site_id`, `template`, `default_keywords`, `default_description`, `default_title_postfix`, `include_pagination_in_canonical`) VALUES
(1, 1, '<title>{title}{site_name}</title>\n<meta name=''keywords'' content=''{meta_keywords}'' />\n<meta name=''description'' content=''{meta_description}'' />\n<link rel=''canonical'' href=''{canonical_url}'' />\n<!-- generated by seo_lite -->', 'Harper Creative, Hull, Yorkshire, Film, web, web design, internet, print, design, marketing, consultancy, research, training, events, PR, public relations, facilitation, media, community engagement, health promotion, wellbeing, design in Hull, design in east yorkshire, Beverley, campaign management, event management,  film production', 'As a creative agency with over 16 year’s experience, we know every business is unique and every project is important. We want to make your business more successful, to connect with your customers and achieve results.', ' |&nbsp;', 'y');

-- --------------------------------------------------------

--
-- Table structure for table `exp_seolite_content`
--

CREATE TABLE IF NOT EXISTS `exp_seolite_content` (
  `seolite_content_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(10) NOT NULL,
  `entry_id` int(10) NOT NULL,
  `title` varchar(1024) DEFAULT NULL,
  `keywords` varchar(1024) NOT NULL,
  `description` text,
  PRIMARY KEY (`seolite_content_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=74 ;

--
-- Dumping data for table `exp_seolite_content`
--

INSERT INTO `exp_seolite_content` (`seolite_content_id`, `site_id`, `entry_id`, `title`, `keywords`, `description`) VALUES
(1, 1, 1, '', '', ''),
(2, 1, 18, '', '', ''),
(3, 1, 17, '', '', ''),
(4, 1, 16, '', '', ''),
(47, 1, 57, '', '', ''),
(6, 1, 6, '', '', ''),
(7, 1, 19, '', '', ''),
(8, 1, 20, '', '', ''),
(9, 1, 21, '', '', ''),
(10, 1, 22, '', '', ''),
(11, 1, 23, '', '', ''),
(12, 1, 24, '', '', ''),
(13, 1, 13, '', '', ''),
(14, 1, 25, '', '', ''),
(15, 1, 26, '', '', ''),
(16, 1, 27, '', '', ''),
(21, 1, 32, '', '', ''),
(18, 1, 29, '', '', ''),
(19, 1, 30, '', '', ''),
(20, 1, 31, '', '', ''),
(22, 1, 33, '', '', ''),
(23, 1, 34, '', '', ''),
(24, 1, 35, '', '', ''),
(25, 1, 36, '', '', ''),
(26, 1, 37, '', '', ''),
(27, 1, 38, '', '', ''),
(28, 1, 39, '', '', ''),
(29, 1, 40, '', '', ''),
(30, 1, 41, '', '', ''),
(31, 1, 42, '', '', ''),
(32, 1, 43, '', '', ''),
(33, 1, 44, '', '', ''),
(34, 1, 45, '', '', ''),
(35, 1, 46, '', '', ''),
(36, 1, 47, '', '', ''),
(37, 1, 48, '', '', ''),
(38, 1, 49, '', '', ''),
(50, 1, 60, '', '', ''),
(40, 1, 51, '', '', ''),
(41, 1, 52, '', '', ''),
(42, 1, 53, '', '', ''),
(43, 1, 54, '', '', ''),
(44, 1, 55, '', '', ''),
(45, 1, 56, '', '', ''),
(46, 1, 4, '', '', ''),
(48, 1, 58, '', '', ''),
(49, 1, 59, '', '', ''),
(51, 1, 61, '', '', ''),
(52, 1, 62, '', '', ''),
(53, 1, 63, '', '', ''),
(54, 1, 64, '', '', ''),
(55, 1, 65, '', '', ''),
(56, 1, 66, '', '', ''),
(57, 1, 67, '', '', ''),
(58, 1, 5, '', '', ''),
(59, 1, 68, '', '', ''),
(60, 1, 69, '', '', ''),
(61, 1, 70, '', '', ''),
(62, 1, 71, '', '', ''),
(63, 1, 72, '', '', ''),
(64, 1, 73, '', '', ''),
(65, 1, 74, '', '', ''),
(66, 1, 75, '', '', ''),
(67, 1, 76, '', '', ''),
(68, 1, 77, '', '', ''),
(69, 1, 78, '', '', ''),
(70, 1, 79, '', '', ''),
(71, 1, 80, '', '', ''),
(72, 1, 81, '', '', ''),
(73, 1, 82, '', '', '');

-- --------------------------------------------------------

--
-- Table structure for table `exp_sessions`
--

CREATE TABLE IF NOT EXISTS `exp_sessions` (
  `session_id` varchar(40) NOT NULL DEFAULT '0',
  `member_id` int(10) NOT NULL DEFAULT '0',
  `admin_sess` tinyint(1) NOT NULL DEFAULT '0',
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `user_agent` varchar(120) NOT NULL,
  `fingerprint` varchar(40) NOT NULL,
  `sess_start` int(10) unsigned NOT NULL DEFAULT '0',
  `last_activity` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`session_id`),
  KEY `member_id` (`member_id`),
  KEY `last_activity_idx` (`last_activity`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `exp_sites`
--

CREATE TABLE IF NOT EXISTS `exp_sites` (
  `site_id` int(5) unsigned NOT NULL AUTO_INCREMENT,
  `site_label` varchar(100) NOT NULL DEFAULT '',
  `site_name` varchar(50) NOT NULL DEFAULT '',
  `site_description` text,
  `site_system_preferences` mediumtext NOT NULL,
  `site_mailinglist_preferences` text NOT NULL,
  `site_member_preferences` text NOT NULL,
  `site_template_preferences` text NOT NULL,
  `site_channel_preferences` text NOT NULL,
  `site_bootstrap_checksums` text NOT NULL,
  `site_pages` text NOT NULL,
  PRIMARY KEY (`site_id`),
  KEY `site_name` (`site_name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `exp_sites`
--

INSERT INTO `exp_sites` (`site_id`, `site_label`, `site_name`, `site_description`, `site_system_preferences`, `site_mailinglist_preferences`, `site_member_preferences`, `site_template_preferences`, `site_channel_preferences`, `site_bootstrap_checksums`, `site_pages`) VALUES
(1, 'Harper Creative', 'default_site', NULL, 'YTo5MDp7czoxMDoic2l0ZV9pbmRleCI7czowOiIiO3M6ODoic2l0ZV91cmwiO3M6MzM6Imh0dHA6Ly93d3cuaGFycGVyLWNyZWF0aXZlLmNvLnVrLyI7czoxNjoidGhlbWVfZm9sZGVyX3VybCI7czo0MDoiaHR0cDovL3d3dy5oYXJwZXItY3JlYXRpdmUuY28udWsvdGhlbWVzLyI7czoxNToid2VibWFzdGVyX2VtYWlsIjtzOjIwOiJhbmR5LndpbHNvbkBrY29tLmNvbSI7czoxNDoid2VibWFzdGVyX25hbWUiO3M6MDoiIjtzOjIwOiJjaGFubmVsX25vbWVuY2xhdHVyZSI7czo3OiJjaGFubmVsIjtzOjEwOiJtYXhfY2FjaGVzIjtzOjM6IjE1MCI7czoxMToiY2FwdGNoYV91cmwiO3M6NDE6Imh0dHA6Ly9sb2NhbC5naXR0ZXN0LmNvbS9pbWFnZXMvY2FwdGNoYXMvIjtzOjEyOiJjYXB0Y2hhX3BhdGgiO3M6Njc6Ii9wcml2YXRlL3Zhci93d3cvdmhvc3RzL2xvY2FsLmdpdHRlc3QuY29tL2h0dHBkb2NzL2ltYWdlcy9jYXB0Y2hhcy8iO3M6MTI6ImNhcHRjaGFfZm9udCI7czoxOiJ5IjtzOjEyOiJjYXB0Y2hhX3JhbmQiO3M6MToieSI7czoyMzoiY2FwdGNoYV9yZXF1aXJlX21lbWJlcnMiO3M6MToibiI7czoxNzoiZW5hYmxlX2RiX2NhY2hpbmciO3M6MToibiI7czoxODoiZW5hYmxlX3NxbF9jYWNoaW5nIjtzOjE6Im4iO3M6MTg6ImZvcmNlX3F1ZXJ5X3N0cmluZyI7czoxOiJuIjtzOjEzOiJzaG93X3Byb2ZpbGVyIjtzOjE6Im4iO3M6MTg6InRlbXBsYXRlX2RlYnVnZ2luZyI7czoxOiJuIjtzOjE1OiJpbmNsdWRlX3NlY29uZHMiO3M6MToibiI7czoxMzoiY29va2llX2RvbWFpbiI7czowOiIiO3M6MTE6ImNvb2tpZV9wYXRoIjtzOjA6IiI7czoyMDoid2Vic2l0ZV9zZXNzaW9uX3R5cGUiO3M6MToiYyI7czoxNToiY3Bfc2Vzc2lvbl90eXBlIjtzOjI6ImNzIjtzOjIxOiJhbGxvd191c2VybmFtZV9jaGFuZ2UiO3M6MToieSI7czoxODoiYWxsb3dfbXVsdGlfbG9naW5zIjtzOjE6InkiO3M6MTY6InBhc3N3b3JkX2xvY2tvdXQiO3M6MToieSI7czoyNToicGFzc3dvcmRfbG9ja291dF9pbnRlcnZhbCI7czoxOiIxIjtzOjIwOiJyZXF1aXJlX2lwX2Zvcl9sb2dpbiI7czoxOiJ5IjtzOjIyOiJyZXF1aXJlX2lwX2Zvcl9wb3N0aW5nIjtzOjE6InkiO3M6MjQ6InJlcXVpcmVfc2VjdXJlX3Bhc3N3b3JkcyI7czoxOiJuIjtzOjE5OiJhbGxvd19kaWN0aW9uYXJ5X3B3IjtzOjE6InkiO3M6MjM6Im5hbWVfb2ZfZGljdGlvbmFyeV9maWxlIjtzOjA6IiI7czoxNzoieHNzX2NsZWFuX3VwbG9hZHMiO3M6MToieSI7czoxNToicmVkaXJlY3RfbWV0aG9kIjtzOjg6InJlZGlyZWN0IjtzOjk6ImRlZnRfbGFuZyI7czo3OiJlbmdsaXNoIjtzOjg6InhtbF9sYW5nIjtzOjI6ImVuIjtzOjEyOiJzZW5kX2hlYWRlcnMiO3M6MToieSI7czoxMToiZ3ppcF9vdXRwdXQiO3M6MToibiI7czoxMzoibG9nX3JlZmVycmVycyI7czoxOiJuIjtzOjEzOiJtYXhfcmVmZXJyZXJzIjtzOjM6IjUwMCI7czoxMToiZGF0ZV9mb3JtYXQiO3M6ODoiJW4vJWovJXkiO3M6MTE6InRpbWVfZm9ybWF0IjtzOjI6IjEyIjtzOjEzOiJzZXJ2ZXJfb2Zmc2V0IjtzOjA6IiI7czoyMToiZGVmYXVsdF9zaXRlX3RpbWV6b25lIjtzOjEzOiJFdXJvcGUvTG9uZG9uIjtzOjEzOiJtYWlsX3Byb3RvY29sIjtzOjQ6Im1haWwiO3M6MTE6InNtdHBfc2VydmVyIjtzOjA6IiI7czoxMzoic210cF91c2VybmFtZSI7czowOiIiO3M6MTM6InNtdHBfcGFzc3dvcmQiO3M6MDoiIjtzOjExOiJlbWFpbF9kZWJ1ZyI7czoxOiJuIjtzOjEzOiJlbWFpbF9jaGFyc2V0IjtzOjU6InV0Zi04IjtzOjE1OiJlbWFpbF9iYXRjaG1vZGUiO3M6MToibiI7czoxNjoiZW1haWxfYmF0Y2hfc2l6ZSI7czowOiIiO3M6MTE6Im1haWxfZm9ybWF0IjtzOjU6InBsYWluIjtzOjk6IndvcmRfd3JhcCI7czoxOiJ5IjtzOjIyOiJlbWFpbF9jb25zb2xlX3RpbWVsb2NrIjtzOjE6IjUiO3M6MjI6ImxvZ19lbWFpbF9jb25zb2xlX21zZ3MiO3M6MToieSI7czo4OiJjcF90aGVtZSI7czo3OiJkZWZhdWx0IjtzOjIxOiJlbWFpbF9tb2R1bGVfY2FwdGNoYXMiO3M6MToibiI7czoxNjoibG9nX3NlYXJjaF90ZXJtcyI7czoxOiJ5IjtzOjE5OiJkZW55X2R1cGxpY2F0ZV9kYXRhIjtzOjE6InkiO3M6MjQ6InJlZGlyZWN0X3N1Ym1pdHRlZF9saW5rcyI7czoxOiJuIjtzOjE2OiJlbmFibGVfY2Vuc29yaW5nIjtzOjE6Im4iO3M6MTQ6ImNlbnNvcmVkX3dvcmRzIjtzOjA6IiI7czoxODoiY2Vuc29yX3JlcGxhY2VtZW50IjtzOjA6IiI7czoxMDoiYmFubmVkX2lwcyI7czowOiIiO3M6MTM6ImJhbm5lZF9lbWFpbHMiO3M6MDoiIjtzOjE2OiJiYW5uZWRfdXNlcm5hbWVzIjtzOjA6IiI7czoxOToiYmFubmVkX3NjcmVlbl9uYW1lcyI7czowOiIiO3M6MTA6ImJhbl9hY3Rpb24iO3M6ODoicmVzdHJpY3QiO3M6MTE6ImJhbl9tZXNzYWdlIjtzOjM0OiJUaGlzIHNpdGUgaXMgY3VycmVudGx5IHVuYXZhaWxhYmxlIjtzOjE1OiJiYW5fZGVzdGluYXRpb24iO3M6MjE6Imh0dHA6Ly93d3cueWFob28uY29tLyI7czoxNjoiZW5hYmxlX2Vtb3RpY29ucyI7czoxOiJ5IjtzOjEyOiJlbW90aWNvbl91cmwiO3M6NDA6Imh0dHA6Ly9sb2NhbC5naXR0ZXN0LmNvbS9pbWFnZXMvc21pbGV5cy8iO3M6MTk6InJlY291bnRfYmF0Y2hfdG90YWwiO3M6NDoiMTAwMCI7czoxNzoibmV3X3ZlcnNpb25fY2hlY2siO3M6MToibiI7czoxNzoiZW5hYmxlX3Rocm90dGxpbmciO3M6MToibiI7czoxNzoiYmFuaXNoX21hc2tlZF9pcHMiO3M6MToieSI7czoxNDoibWF4X3BhZ2VfbG9hZHMiO3M6MjoiMTAiO3M6MTM6InRpbWVfaW50ZXJ2YWwiO3M6MToiOCI7czoxMjoibG9ja291dF90aW1lIjtzOjI6IjMwIjtzOjE1OiJiYW5pc2htZW50X3R5cGUiO3M6NzoibWVzc2FnZSI7czoxNDoiYmFuaXNobWVudF91cmwiO3M6MDoiIjtzOjE4OiJiYW5pc2htZW50X21lc3NhZ2UiO3M6NTA6IllvdSBoYXZlIGV4Y2VlZGVkIHRoZSBhbGxvd2VkIHBhZ2UgbG9hZCBmcmVxdWVuY3kuIjtzOjE3OiJlbmFibGVfc2VhcmNoX2xvZyI7czoxOiJ5IjtzOjE5OiJtYXhfbG9nZ2VkX3NlYXJjaGVzIjtzOjM6IjUwMCI7czoxNzoidGhlbWVfZm9sZGVyX3BhdGgiO3M6NTY6Ii9ob21lL3Nhdml3ZWJjL3B1YmxpY19odG1sL2hhcnBlci1jcmVhdGl2ZS5jby51ay90aGVtZXMvIjtzOjEwOiJpc19zaXRlX29uIjtzOjE6InkiO3M6MTE6InJ0ZV9lbmFibGVkIjtzOjE6InkiO3M6MjI6InJ0ZV9kZWZhdWx0X3Rvb2xzZXRfaWQiO3M6MToiMSI7czo2OiJjcF91cmwiO3M6NDI6Imh0dHA6Ly93d3cuaGFycGVyLWNyZWF0aXZlLmNvLnVrL2FkbWluLnBocCI7czoxMjoiY2FjaGVfZHJpdmVyIjtzOjQ6ImZpbGUiO30=', 'YTozOntzOjE5OiJtYWlsaW5nbGlzdF9lbmFibGVkIjtzOjE6InkiO3M6MTg6Im1haWxpbmdsaXN0X25vdGlmeSI7czoxOiJuIjtzOjI1OiJtYWlsaW5nbGlzdF9ub3RpZnlfZW1haWxzIjtzOjA6IiI7fQ==', 'YTo0NDp7czoxMDoidW5fbWluX2xlbiI7czoxOiI0IjtzOjEwOiJwd19taW5fbGVuIjtzOjE6IjUiO3M6MjU6ImFsbG93X21lbWJlcl9yZWdpc3RyYXRpb24iO3M6MToibiI7czoyNToiYWxsb3dfbWVtYmVyX2xvY2FsaXphdGlvbiI7czoxOiJ5IjtzOjE4OiJyZXFfbWJyX2FjdGl2YXRpb24iO3M6NToiZW1haWwiO3M6MjM6Im5ld19tZW1iZXJfbm90aWZpY2F0aW9uIjtzOjE6Im4iO3M6MjM6Im1icl9ub3RpZmljYXRpb25fZW1haWxzIjtzOjA6IiI7czoyNDoicmVxdWlyZV90ZXJtc19vZl9zZXJ2aWNlIjtzOjE6InkiO3M6MjI6InVzZV9tZW1iZXJzaGlwX2NhcHRjaGEiO3M6MToibiI7czoyMDoiZGVmYXVsdF9tZW1iZXJfZ3JvdXAiO3M6MToiNSI7czoxNToicHJvZmlsZV90cmlnZ2VyIjtzOjY6Im1lbWJlciI7czoxMjoibWVtYmVyX3RoZW1lIjtzOjc6ImRlZmF1bHQiO3M6MTQ6ImVuYWJsZV9hdmF0YXJzIjtzOjE6InkiO3M6MjA6ImFsbG93X2F2YXRhcl91cGxvYWRzIjtzOjE6Im4iO3M6MTA6ImF2YXRhcl91cmwiO3M6NDA6Imh0dHA6Ly9sb2NhbC5naXR0ZXN0LmNvbS9pbWFnZXMvYXZhdGFycy8iO3M6MTE6ImF2YXRhcl9wYXRoIjtzOjY2OiIvcHJpdmF0ZS92YXIvd3d3L3Zob3N0cy9sb2NhbC5naXR0ZXN0LmNvbS9odHRwZG9jcy9pbWFnZXMvYXZhdGFycy8iO3M6MTY6ImF2YXRhcl9tYXhfd2lkdGgiO3M6MzoiMTAwIjtzOjE3OiJhdmF0YXJfbWF4X2hlaWdodCI7czozOiIxMDAiO3M6MTM6ImF2YXRhcl9tYXhfa2IiO3M6MjoiNTAiO3M6MTM6ImVuYWJsZV9waG90b3MiO3M6MToibiI7czo5OiJwaG90b191cmwiO3M6NDY6Imh0dHA6Ly9sb2NhbC5naXR0ZXN0LmNvbS9pbWFnZXMvbWVtYmVyX3Bob3Rvcy8iO3M6MTA6InBob3RvX3BhdGgiO3M6NzI6Ii9wcml2YXRlL3Zhci93d3cvdmhvc3RzL2xvY2FsLmdpdHRlc3QuY29tL2h0dHBkb2NzL2ltYWdlcy9tZW1iZXJfcGhvdG9zLyI7czoxNToicGhvdG9fbWF4X3dpZHRoIjtzOjM6IjEwMCI7czoxNjoicGhvdG9fbWF4X2hlaWdodCI7czozOiIxMDAiO3M6MTI6InBob3RvX21heF9rYiI7czoyOiI1MCI7czoxNjoiYWxsb3dfc2lnbmF0dXJlcyI7czoxOiJ5IjtzOjEzOiJzaWdfbWF4bGVuZ3RoIjtzOjM6IjUwMCI7czoyMToic2lnX2FsbG93X2ltZ19ob3RsaW5rIjtzOjE6Im4iO3M6MjA6InNpZ19hbGxvd19pbWdfdXBsb2FkIjtzOjE6Im4iO3M6MTE6InNpZ19pbWdfdXJsIjtzOjU0OiJodHRwOi8vbG9jYWwuZ2l0dGVzdC5jb20vaW1hZ2VzL3NpZ25hdHVyZV9hdHRhY2htZW50cy8iO3M6MTI6InNpZ19pbWdfcGF0aCI7czo4MDoiL3ByaXZhdGUvdmFyL3d3dy92aG9zdHMvbG9jYWwuZ2l0dGVzdC5jb20vaHR0cGRvY3MvaW1hZ2VzL3NpZ25hdHVyZV9hdHRhY2htZW50cy8iO3M6MTc6InNpZ19pbWdfbWF4X3dpZHRoIjtzOjM6IjQ4MCI7czoxODoic2lnX2ltZ19tYXhfaGVpZ2h0IjtzOjI6IjgwIjtzOjE0OiJzaWdfaW1nX21heF9rYiI7czoyOiIzMCI7czoxOToicHJ2X21zZ191cGxvYWRfcGF0aCI7czo3MzoiL3ByaXZhdGUvdmFyL3d3dy92aG9zdHMvbG9jYWwuZ2l0dGVzdC5jb20vaHR0cGRvY3MvaW1hZ2VzL3BtX2F0dGFjaG1lbnRzLyI7czoyMzoicHJ2X21zZ19tYXhfYXR0YWNobWVudHMiO3M6MToiMyI7czoyMjoicHJ2X21zZ19hdHRhY2hfbWF4c2l6ZSI7czozOiIyNTAiO3M6MjA6InBydl9tc2dfYXR0YWNoX3RvdGFsIjtzOjM6IjEwMCI7czoxOToicHJ2X21zZ19odG1sX2Zvcm1hdCI7czo0OiJzYWZlIjtzOjE4OiJwcnZfbXNnX2F1dG9fbGlua3MiO3M6MToieSI7czoxNzoicHJ2X21zZ19tYXhfY2hhcnMiO3M6NDoiNjAwMCI7czoxOToibWVtYmVybGlzdF9vcmRlcl9ieSI7czoxMToidG90YWxfcG9zdHMiO3M6MjE6Im1lbWJlcmxpc3Rfc29ydF9vcmRlciI7czo0OiJkZXNjIjtzOjIwOiJtZW1iZXJsaXN0X3Jvd19saW1pdCI7czoyOiIyMCI7fQ==', 'YTo3OntzOjIyOiJlbmFibGVfdGVtcGxhdGVfcm91dGVzIjtzOjE6InkiO3M6MTE6InN0cmljdF91cmxzIjtzOjE6InkiO3M6ODoic2l0ZV80MDQiO3M6MDoiIjtzOjE5OiJzYXZlX3RtcGxfcmV2aXNpb25zIjtzOjE6Im4iO3M6MTg6Im1heF90bXBsX3JldmlzaW9ucyI7czoxOiI1IjtzOjE1OiJzYXZlX3RtcGxfZmlsZXMiO3M6MToibiI7czoxODoidG1wbF9maWxlX2Jhc2VwYXRoIjtzOjE6Ii8iO30=', 'YTo5OntzOjIxOiJpbWFnZV9yZXNpemVfcHJvdG9jb2wiO3M6MzoiZ2QyIjtzOjE4OiJpbWFnZV9saWJyYXJ5X3BhdGgiO3M6MDoiIjtzOjE2OiJ0aHVtYm5haWxfcHJlZml4IjtzOjU6InRodW1iIjtzOjE0OiJ3b3JkX3NlcGFyYXRvciI7czo0OiJkYXNoIjtzOjE3OiJ1c2VfY2F0ZWdvcnlfbmFtZSI7czoxOiJuIjtzOjIyOiJyZXNlcnZlZF9jYXRlZ29yeV93b3JkIjtzOjg6ImNhdGVnb3J5IjtzOjIzOiJhdXRvX2NvbnZlcnRfaGlnaF9hc2NpaSI7czoxOiJuIjtzOjIyOiJuZXdfcG9zdHNfY2xlYXJfY2FjaGVzIjtzOjE6InkiO3M6MjM6ImF1dG9fYXNzaWduX2NhdF9wYXJlbnRzIjtzOjE6InkiO30=', 'YToyOntzOjc6ImVtYWlsZWQiO2E6MDp7fXM6NTg6Ii9ob21lL3Nhdml3ZWJjL3B1YmxpY19odG1sL2hhcnBlci1jcmVhdGl2ZS5jby51ay9pbmRleC5waHAiO3M6MzI6IjI0ODYwNjExYTFlODM2ZmJlMjA2YTQ1Y2QxMjMzNDVjIjt9', 'YToxOntpOjE7YTozOntzOjM6InVybCI7czozMzoiaHR0cDovL3d3dy5oYXJwZXItY3JlYXRpdmUuY28udWsvIjtzOjQ6InVyaXMiO2E6MDp7fXM6OToidGVtcGxhdGVzIjthOjA6e319fQ==');

-- --------------------------------------------------------

--
-- Table structure for table `exp_snippets`
--

CREATE TABLE IF NOT EXISTS `exp_snippets` (
  `snippet_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) NOT NULL,
  `snippet_name` varchar(75) NOT NULL,
  `snippet_contents` text,
  PRIMARY KEY (`snippet_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `exp_snippets`
--

INSERT INTO `exp_snippets` (`snippet_id`, `site_id`, `snippet_name`, `snippet_contents`) VALUES
(1, 1, 'service-imgs', '<div class="services-images">\n                      <img src="http://dummyimage.com/240x240/4d494d/686a82.gif&text=round-image" alt="round-image" class="service-img">\n                      <img src="http://dummyimage.com/240x240/4d494d/686a82.gif&text=round-image" alt="round-image" class="service-img">\n                      <img src="http://dummyimage.com/240x240/4d494d/686a82.gif&text=round-image" alt="round-image" class="service-img">\n                      <img src="http://dummyimage.com/240x240/4d494d/686a82.gif&text=round-image" alt="round-image" class="service-img">\n                    </div>');

-- --------------------------------------------------------

--
-- Table structure for table `exp_specialty_templates`
--

CREATE TABLE IF NOT EXISTS `exp_specialty_templates` (
  `template_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `enable_template` char(1) NOT NULL DEFAULT 'y',
  `template_name` varchar(50) NOT NULL,
  `data_title` varchar(80) NOT NULL,
  `template_data` text NOT NULL,
  PRIMARY KEY (`template_id`),
  KEY `template_name` (`template_name`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=16 ;

--
-- Dumping data for table `exp_specialty_templates`
--

INSERT INTO `exp_specialty_templates` (`template_id`, `site_id`, `enable_template`, `template_name`, `data_title`, `template_data`) VALUES
(1, 1, 'y', 'offline_template', '', '<html>\n<head>\n\n<title>System Offline</title>\n\n<style type="text/css">\n\nbody {\nbackground-color:	#ffffff;\nmargin:				50px;\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-size:			11px;\ncolor:				#000;\nbackground-color:	#fff;\n}\n\na {\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-weight:		bold;\nletter-spacing:		.09em;\ntext-decoration:	none;\ncolor:			  #330099;\nbackground-color:	transparent;\n}\n\na:visited {\ncolor:				#330099;\nbackground-color:	transparent;\n}\n\na:hover {\ncolor:				#000;\ntext-decoration:	underline;\nbackground-color:	transparent;\n}\n\n#content  {\nborder:				#999999 1px solid;\npadding:			22px 25px 14px 25px;\n}\n\nh1 {\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-weight:		bold;\nfont-size:			14px;\ncolor:				#000;\nmargin-top: 		0;\nmargin-bottom:		14px;\n}\n\np {\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-size: 			12px;\nfont-weight: 		normal;\nmargin-top: 		12px;\nmargin-bottom: 		14px;\ncolor: 				#000;\n}\n</style>\n\n</head>\n\n<body>\n\n<div id="content">\n\n<h1>System Offline</h1>\n\n<p>This site is currently offline</p>\n\n</div>\n\n</body>\n\n</html>'),
(2, 1, 'y', 'message_template', '', '<html>\n<head>\n\n<title>{title}</title>\n\n<meta http-equiv=''content-type'' content=''text/html; charset={charset}'' />\n\n{meta_refresh}\n\n<style type="text/css">\n\nbody {\nbackground-color:	#ffffff;\nmargin:				50px;\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-size:			11px;\ncolor:				#000;\nbackground-color:	#fff;\n}\n\na {\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nletter-spacing:		.09em;\ntext-decoration:	none;\ncolor:			  #330099;\nbackground-color:	transparent;\n}\n\na:visited {\ncolor:				#330099;\nbackground-color:	transparent;\n}\n\na:active {\ncolor:				#ccc;\nbackground-color:	transparent;\n}\n\na:hover {\ncolor:				#000;\ntext-decoration:	underline;\nbackground-color:	transparent;\n}\n\n#content  {\nborder:				#000 1px solid;\nbackground-color: 	#DEDFE3;\npadding:			22px 25px 14px 25px;\n}\n\nh1 {\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-weight:		bold;\nfont-size:			14px;\ncolor:				#000;\nmargin-top: 		0;\nmargin-bottom:		14px;\n}\n\np {\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-size: 			12px;\nfont-weight: 		normal;\nmargin-top: 		12px;\nmargin-bottom: 		14px;\ncolor: 				#000;\n}\n\nul {\nmargin-bottom: 		16px;\n}\n\nli {\nlist-style:			square;\nfont-family:		Verdana, Arial, Tahoma, Trebuchet MS, Sans-serif;\nfont-size: 			12px;\nfont-weight: 		normal;\nmargin-top: 		8px;\nmargin-bottom: 		8px;\ncolor: 				#000;\n}\n\n</style>\n\n</head>\n\n<body>\n\n<div id="content">\n\n<h1>{heading}</h1>\n\n{content}\n\n<p>{link}</p>\n\n</div>\n\n</body>\n\n</html>'),
(3, 1, 'y', 'admin_notify_reg', 'Notification of new member registration', 'New member registration site: {site_name}\n\nScreen name: {name}\nUser name: {username}\nEmail: {email}\n\nYour control panel URL: {control_panel_url}'),
(4, 1, 'y', 'admin_notify_entry', 'A new channel entry has been posted', 'A new entry has been posted in the following channel:\n{channel_name}\n\nThe title of the entry is:\n{entry_title}\n\nPosted by: {name}\nEmail: {email}\n\nTo read the entry please visit:\n{entry_url}\n'),
(5, 1, 'y', 'admin_notify_mailinglist', 'Someone has subscribed to your mailing list', 'A new mailing list subscription has been accepted.\n\nEmail Address: {email}\nMailing List: {mailing_list}'),
(6, 1, 'y', 'admin_notify_comment', 'You have just received a comment', 'You have just received a comment for the following channel:\n{channel_name}\n\nThe title of the entry is:\n{entry_title}\n\nLocated at:\n{comment_url}\n\nPosted by: {name}\nEmail: {email}\nURL: {url}\nLocation: {location}\n\n{comment}'),
(7, 1, 'y', 'mbr_activation_instructions', 'Enclosed is your activation code', 'Thank you for your new member registration.\n\nTo activate your new account, please visit the following URL:\n\n{unwrap}{activation_url}{/unwrap}\n\nThank You!\n\n{site_name}\n\n{site_url}'),
(8, 1, 'y', 'forgot_password_instructions', 'Login information', '{name},\n\nTo reset your password, please go to the following page:\n\n{reset_url}\n\nThen log in with your username: {username}\n\nIf you do not wish to reset your password, ignore this message. It will expire in 24 hours.\n\n{site_name}\n{site_url}'),
(9, 1, 'y', 'validated_member_notify', 'Your membership account has been activated', '{name},\n\nYour membership account has been activated and is ready for use.\n\nThank You!\n\n{site_name}\n{site_url}'),
(10, 1, 'y', 'decline_member_validation', 'Your membership account has been declined', '{name},\n\nWe''re sorry but our staff has decided not to validate your membership.\n\n{site_name}\n{site_url}'),
(11, 1, 'y', 'mailinglist_activation_instructions', 'Email Confirmation', 'Thank you for joining the "{mailing_list}" mailing list!\n\nPlease click the link below to confirm your email.\n\nIf you do not want to be added to our list, ignore this email.\n\n{unwrap}{activation_url}{/unwrap}\n\nThank You!\n\n{site_name}'),
(12, 1, 'y', 'comment_notification', 'Someone just responded to your comment', '{name_of_commenter} just responded to the entry you subscribed to at:\n{channel_name}\n\nThe title of the entry is:\n{entry_title}\n\nYou can see the comment at the following URL:\n{comment_url}\n\n{comment}\n\nTo stop receiving notifications for this comment, click here:\n{notification_removal_url}'),
(13, 1, 'y', 'comments_opened_notification', 'New comments have been added', 'Responses have been added to the entry you subscribed to at:\n{channel_name}\n\nThe title of the entry is:\n{entry_title}\n\nYou can see the comments at the following URL:\n{comment_url}\n\n{comments}\n{comment}\n{/comments}\n\nTo stop receiving notifications for this entry, click here:\n{notification_removal_url}'),
(14, 1, 'y', 'private_message_notification', 'Someone has sent you a Private Message', '\n{recipient_name},\n\n{sender_name} has just sent you a Private Message titled ‘{message_subject}’.\n\nYou can see the Private Message by logging in and viewing your inbox at:\n{site_url}\n\nContent:\n\n{message_content}\n\nTo stop receiving notifications of Private Messages, turn the option off in your Email Settings.\n\n{site_name}\n{site_url}'),
(15, 1, 'y', 'pm_inbox_full', 'Your private message mailbox is full', '{recipient_name},\n\n{sender_name} has just attempted to send you a Private Message,\nbut your inbox is full, exceeding the maximum of {pm_storage_limit}.\n\nPlease log in and remove unwanted messages from your inbox at:\n{site_url}');

-- --------------------------------------------------------

--
-- Table structure for table `exp_stats`
--

CREATE TABLE IF NOT EXISTS `exp_stats` (
  `stat_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `total_members` mediumint(7) NOT NULL DEFAULT '0',
  `recent_member_id` int(10) NOT NULL DEFAULT '0',
  `recent_member` varchar(50) NOT NULL,
  `total_entries` mediumint(8) NOT NULL DEFAULT '0',
  `total_forum_topics` mediumint(8) NOT NULL DEFAULT '0',
  `total_forum_posts` mediumint(8) NOT NULL DEFAULT '0',
  `total_comments` mediumint(8) NOT NULL DEFAULT '0',
  `last_entry_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_forum_post_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_comment_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_visitor_date` int(10) unsigned NOT NULL DEFAULT '0',
  `most_visitors` mediumint(7) NOT NULL DEFAULT '0',
  `most_visitor_date` int(10) unsigned NOT NULL DEFAULT '0',
  `last_cache_clear` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`stat_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `exp_stats`
--

INSERT INTO `exp_stats` (`stat_id`, `site_id`, `total_members`, `recent_member_id`, `recent_member`, `total_entries`, `total_forum_topics`, `total_forum_posts`, `total_comments`, `last_entry_date`, `last_forum_post_date`, `last_comment_date`, `last_visitor_date`, `most_visitors`, `most_visitor_date`, `last_cache_clear`) VALUES
(1, 1, 3, 3, 'Andy', 76, 0, 0, 0, 1445018520, 0, 0, 1419417007, 1, 1419417007, 1449856671);

-- --------------------------------------------------------

--
-- Table structure for table `exp_statuses`
--

CREATE TABLE IF NOT EXISTS `exp_statuses` (
  `status_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_id` int(4) unsigned NOT NULL,
  `status` varchar(50) NOT NULL,
  `status_order` int(3) unsigned NOT NULL,
  `highlight` varchar(30) NOT NULL,
  PRIMARY KEY (`status_id`),
  KEY `group_id` (`group_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;

--
-- Dumping data for table `exp_statuses`
--

INSERT INTO `exp_statuses` (`status_id`, `site_id`, `group_id`, `status`, `status_order`, `highlight`) VALUES
(1, 1, 1, 'open', 1, '009933'),
(2, 1, 1, 'closed', 2, '990000'),
(3, 1, 2, 'open', 1, '009933'),
(4, 1, 2, 'closed', 3, '990000'),
(5, 1, 2, 'Featured', 2, '0088FF');

-- --------------------------------------------------------

--
-- Table structure for table `exp_status_groups`
--

CREATE TABLE IF NOT EXISTS `exp_status_groups` (
  `group_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_name` varchar(50) NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `exp_status_groups`
--

INSERT INTO `exp_status_groups` (`group_id`, `site_id`, `group_name`) VALUES
(1, 1, 'Statuses'),
(2, 1, 'Work Status');

-- --------------------------------------------------------

--
-- Table structure for table `exp_status_no_access`
--

CREATE TABLE IF NOT EXISTS `exp_status_no_access` (
  `status_id` int(6) unsigned NOT NULL,
  `member_group` smallint(4) unsigned NOT NULL,
  PRIMARY KEY (`status_id`,`member_group`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `exp_templates`
--

CREATE TABLE IF NOT EXISTS `exp_templates` (
  `template_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_id` int(6) unsigned NOT NULL,
  `template_name` varchar(50) NOT NULL,
  `save_template_file` char(1) NOT NULL DEFAULT 'n',
  `template_type` varchar(16) NOT NULL DEFAULT 'webpage',
  `template_data` mediumtext,
  `template_notes` text,
  `edit_date` int(10) NOT NULL DEFAULT '0',
  `last_author_id` int(10) unsigned NOT NULL DEFAULT '0',
  `cache` char(1) NOT NULL DEFAULT 'n',
  `refresh` int(6) unsigned NOT NULL DEFAULT '0',
  `no_auth_bounce` varchar(50) NOT NULL DEFAULT '',
  `enable_http_auth` char(1) NOT NULL DEFAULT 'n',
  `allow_php` char(1) NOT NULL DEFAULT 'n',
  `php_parse_location` char(1) NOT NULL DEFAULT 'o',
  `hits` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`template_id`),
  KEY `group_id` (`group_id`),
  KEY `template_name` (`template_name`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ;

--
-- Dumping data for table `exp_templates`
--

INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES
(1, 1, 1, 'index', 'y', 'webpage', '<!DOCTYPE html>\n<!--[if lt IE 8]>      <html class="no-js lt-ie9 lt-ie8"> <![endif]-->\n<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->\n<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->\n    <head>\n        <meta charset="utf-8">\n        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">\n        {exp:seo_lite use_last_segment="yes"}\n        <meta name="viewport" content="width=device-width, initial-scale=1">\n\n\n\n        {embed="_includes/_header_assets"}\n\n    </head>\n    <body class="home">\n        <!--[if lt IE 8]>\n            <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>\n        <![endif]-->\n\n       \n\n        \n        <section class="main">\n\n              {embed="_includes/_header"}\n\n              <section class="feature-banner container">\n                <div class="main-copy">\n                {exp:channel:entries\n                    channel="static_page"\n                    disable="categories|category_fields|member_data|pagination|trackbacks"\n                    dynamic="on"\n                    entry_id="3"\n                  }\n                   <h2>{title}</h2> \n                   {static_content}\n                  {/exp:channel:entries}\n                </div>\n\n                <section class="work-example-grid half-grid">\n              {exp:channel:entries\n                      channel="image_blocks"\n                      disable="category_fields|member_data|pagination|trackbacks"\n                      dynamic="off"\n                      status="Featured|open"\n                      limit="1"\n                      entry_id="75"\n                    }\n                    {image_block orderby="random" limit="1"}\n                    <div class="work-col1">\n                      \n                        {exp:ce_img:single src="{image_block:left_image}" alt="slider" width="320" height="300"  min_width="320" min_height="300" crop="yes" allow_scale_larger="yes"}\n                    </div>\n                    \n                    \n                    <div class="work-col2">\n                      <div class="work-row1">\n                          {exp:ce_img:single src="{image_block:middle_image_1}" alt="slider" width="520" height="150"  min_width="520" min_height="150" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                    \n                    \n                      <div class="work-row2">\n                          {exp:ce_img:single src="{image_block:middle_image_2}" alt="slider" width="520" height="150"  min_width="520" min_height="150" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                    </div>\n                    \n                    \n                      {/image_block}\n                    \n              {/exp:channel:entries}\n              </section>\n\n              </section>\n\n              <section class="how-can-we-help white-bg">\n                <div class="container">\n                  <header class="dotted-title">\n                    <h2>How can we help?</h2>\n                  </header><!-- /header -->\n                     {exp:channel:categories channel="services" category_group="1" class="services-list"}\n                        <div class="icon-wrap">\n                          <a href="/services/{category_url_title}/" title="">\n                            <img src="{category_image}" alt="icon">\n                          </a>\n                        </div>\n                        <h3>{category_name}</h3>\n                        {!-- {if category_description}<p>{category_description}</p>{/if} --}\n                    {/exp:channel:categories}\n                    \n                </div>\n              </section>\n\n              {!-- <section class="latest-projects lblue-bg">\n                <div class="container">\n                  <header class="dotted-title">\n                    <h2>See what we can do</h2>\n                  </header>\n                  <div class="tabs">\n                    <nav class="tab-nav">\n                      <ul>\n                        <li><a href="#featured" title="Tab" class="tablink">Featured</a></li>\n                        {exp:channel:categories channel="services" category_group="1" class="services-list" style="linear"}\n                          <li><a href="/services/{category_url_title}/" class="tablink">{category_name}</a></li>\n                        {/exp:channel:categories}\n                      </ul>\n                    </nav>\n                    <div class="tab-panel" id="featured">\n                      <ul>\n                      {exp:channel:entries\n                          channel="work"\n                          disable="category_fields|member_data|pagination|trackbacks"\n                          dynamic="off"\n                          status="Featured"\n                          limit="4"\n                      }\n                        <li>\n                            <img src="{work_feature_image}" class="latest-project-img" />\n                            <div class="proj_info">\n                                <h3><a href="#{url_title}" title="" class="fancybox" rel="gallery">{title}</a></h3>\n                                <p class="service_provided">{categories  backspace="2"}{category_name}, {/categories}</p>\n                                <p class="proj_desc">{work_summary}</p>\n                            </div>\n                            <div id="{url_title}" class="lbinline">\n                              {if work_lightbox_image_orientation == "Column"}\n                                {work_lightbox_images}\n                                <div class="lb-col">\n                                  {exp:ce_img:single src="{work_lightbox_images:work_lightbox_image}" max_height="600"}\n                                </div>\n                                {/work_lightbox_images}\n                              {if:else}\n\n                                <div class="lb-col-double">\n                                  {work_lightbox_images}\n                                    <img src="{work_lightbox_images:work_lightbox_image}" >\n                                  {/work_lightbox_images}\n                                </div>\n                                \n                              {/if}\n                              <div class="lb-col lb-txt">\n                                <h2>{title}</h2>\n                                {if work_subtitle}<h3>{work_subtitle}</h3>{/if}\n                                {work_content}\n                              </div>\n                              \n                            </div>\n                        </li>\n                          \n                      {/exp:channel:entries}\n                      </ul>\n                    </div>\n                    \n                  </div>\n                </div>\n              </section> --}\n\n              \n              {embed="_includes/_footer"}\n              \n                \n            </section>\n            <!-- main end -->\n\n\n\n        \n\n        {embed="_includes/_footer_assets"}\n\n\n\n    </body>\n</html>', '', 1440708126, 1, 'n', 0, '', 'n', 'y', 'o', 0),
(2, 1, 2, '_header_assets', 'y', 'webpage', '<link rel="stylesheet" href="/css/vendor/jquery.bxslider.css">\n\n<!-- <link rel="stylesheet" href="/fancybox/jquery.fancybox.css" type="text/css" media="screen" /> -->\n\n\n<link rel="stylesheet" href="/assets/css/main.min.css">\n\n\n<script src="/js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>\n\n<script src="/js/vendor/PIE_IE678.js"></script>\n\n<link href=''http://fonts.googleapis.com/css?family=Roboto+Slab:400,300'' rel=''stylesheet'' type=''text/css''>\n\n\n<!--[if lte IE 8 ]>\n	<link rel="stylesheet" href="/css/ie.css">\n<![endif]-->\n\n<!-- Google Analytics code -->\n<script type="text/javascript">\n\n  var _gaq = _gaq || [];\n  _gaq.push([''_setAccount'', ''UA-35621278-1'']);\n  _gaq.push([''_trackPageview'']);\n\n  (function() {\n    var ga = document.createElement(''script''); ga.type = ''text/javascript''; ga.async = true;\n    ga.src = (''https:'' == document.location.protocol ? ''https://ssl'' : ''http://www'') + ''.google-analytics.com/ga.js'';\n    var s = document.getElementsByTagName(''script'')[0]; s.parentNode.insertBefore(ga, s);\n  })();\n\n</script>\n<!-- end of Google Analytics code -->', NULL, 1440706661, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(3, 1, 2, '_header', 'y', 'webpage', '<header class="global-header container">\n                <a href="/" title="Harper Creative homepage"><img src="/assets/img/global/harper-creative-logo.png" alt="logo" class="logo"></a>\n                <div class="global-header-contact">\n                  {exp:channel:entries\n                    channel="single"\n                    disable="categories|category_fields|member_data|pagination|trackbacks"\n                    dynamic="off"\n                    require_entry="yes"\n                    entry_id="14"\n                  }\n                  <ul class="contact-options">\n                    <li>t: <strong>{single_telephone}</strong></li>\n                  </ul>\n                  <ul class="social-media">\n                    <li><a href="{single_facebook}" title="Facebook" target="_blank"><span class="icon icon-facebook"></span></a></li>\n                    <li><a href="{single_twitter}" title="Twitter" target="_blank"><span class="icon icon-twitter"></span></a></li>\n                    <li><a href="mailto:{single_email}" title="Email"><span class="icon icon-mail"></span></a></li>\n                  </ul>\n                  {/exp:channel:entries}\n                </div>\n              </header><!-- /header -->\n\n              <nav class="main-nav container">\n                <ul>\n                  <li><a href="/" title="Home" {if segment_1 == ""}class="active"{/if}>Home</a></li>\n                  <li><a href="/services/" title="Services" {if segment_1 == "services"}class="active"{/if}>Services</a></li>\n                  <li><a href="/work/" title="Work" {if segment_1 == "work"}class="active"{/if}>Work</a></li>\n                  <li><a href="/about/" title="About us" {if segment_1 == "about"}class="active"{/if}>About us</a></li>\n                </ul>\n              </nav>', NULL, 1440706661, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(4, 1, 2, '_footer', 'y', 'webpage', '<footer>\n{exp:channel:entries\n                    channel="single"\n                    disable="categories|category_fields|member_data|pagination|trackbacks"\n                    dynamic="off"\n                    require_entry="yes"\n                    entry_id="14"\n                  }\n                <section class="fat-foot white-bg">\n                  <div class="container">\n                    <header class="dotted-title">\n                      <h2>Connect with us</h2>\n                    </header><!-- /header -->\n                    <section class="twitter-pnl">\n                    <h2>@HarperCreative on Twitter</h2>\n                    {exp:twitter:user screen_name="HarperCreative" limit="3" retweets="no"}\n                      <div class="twitter-item">\n                      <img src="{profile_image_url}" alt="logo">\n                      <header>\n                        <p class="account-name">{screen_name}</p>\n                        <p class="username">@{name}</p>\n                      </header><!-- /header -->\n                      <p class="twitter-tweet">{text}</p>\n                    </div>\n                    {/exp:twitter:user}\n                    {!-- <div class="twitter-item">\n                      <img src="http://dummyimage.com/35x35/4d494d/686a82.gif&text=logo" alt="logo">\n                      <header>\n                        <p class="account-name">Account Name</p>\n                        <p class="username">@username</p>\n                      </header>\n                      <p class="twitter-tweet"><a href="#" title="@Connect_LLP">@Connect_LLP</a> welcome to twitter! is that your new office in the pic??</p>\n                    </div>\n                    <div class="twitter-item">\n                      <img src="http://dummyimage.com/35x35/4d494d/686a82.gif&text=logo" alt="logo">\n                      <header>\n                        <p class="account-name">Account Name</p>\n                        <p class="username">@username</p>\n                      </header>\n                      <p class="twitter-tweet"><a href="#" title="@Connect_LLP">@Connect_LLP</a> welcome to twitter! is that your new office in the pic??</p>\n                    </div>\n                    <div class="twitter-item">\n                      <img src="http://dummyimage.com/35x35/4d494d/686a82.gif&text=logo" alt="logo">\n                      <header>\n                        <p class="account-name">Account Name</p>\n                        <p class="username">@username</p>\n                      </header>\n                      <p class="twitter-tweet"><a href="#" title="@Connect_LLP">@Connect_LLP</a> welcome to twitter! is that your new office in the pic??</p>\n                    </div> --}\n                    <p><a href="" title="Tweet us @HarperCreative">Tweet us @HarperCreative</a></p>\n                  </section>\n                  <section class="contact-pnl">\n                    <p>Whether you want to work with us or have a problem you want help solving, <a href="mailto:{single_email}?subject=website enquiry" title="We''d love to talk to you">We''d love to talk to you</a>.</p>\n                    <ul class="contact-options">\n                      <li>t: <strong>{single_telephone}</strong></li>\n                      <li>e: <strong><a href="mailto:{single_email}?subject=website enquiry" "{single_email}">{single_email}</a></strong></li>\n                      <li>a: <strong>{single_address}</strong></li>\n                    </ul>\n                    <ul class="social-media">\n                        <li><a href="{single_facebook}" title="Facebook" target="_blank"><span class="icon icon-facebook"></span></a></li>\n                        <li><a href="{single_twitter}" title="Twitter" target="_blank"><span class="icon icon-twitter"></span></a></li>\n                        <li><a href="mailto:{single_email}" title="Email"><span class="icon icon-mail"></span></a></li>\n                      </ul>\n                  </section>\n                  </div>\n                </section>\n                <section class="foot">\n                  <div class="container">\n                    <p>&copy; 2014 Harper Creative</p>  \n                  </div>\n                </section>\n                {/exp:channel:entries}\n              </footer>', NULL, 1440706661, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(5, 1, 2, '_footer_assets', 'y', 'webpage', '<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>\n<script>window.jQuery || document.write(''<script src="/js/vendor/jquery-1.11.0.min.js"><\\/script>'')</script>\n\n<!-- <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.min.js"></script> -->\n\n<!-- <script type="text/javascript" src="/fancybox/jquery.fancybox.pack.js"></script> -->\n\n<script src="http://cdn.jsdelivr.net/jquery.mixitup/latest/jquery.mixitup.min.js"></script>\n\n<!--  google maps api -->\n<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>\n\n\n<script src="/assets/js/main.min.js"></script>\n', NULL, 1440706661, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(6, 1, 3, 'index', 'y', 'webpage', '<!DOCTYPE html>\n<!--[if lt IE 8]>      <html class="no-js lt-ie9 lt-ie8"> <![endif]-->\n<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->\n<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->\n    <head>\n        <meta charset="utf-8">\n        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">\n        {exp:seo_lite use_last_segment="yes"}\n        <meta name="viewport" content="width=device-width, initial-scale=1">\n\n\n\n        {embed="_includes/_header_assets"}\n\n    </head>\n    <body class="services">\n        <!--[if lt IE 8]>\n            <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>\n        <![endif]-->\n\n       \n\n        \n        <section class="main">\n\n              {embed="_includes/_header"}\n\n              <section class="service-content-wrap container">\n\n                <section class="services-cont">\n                  \n\n                  {if segment_2 == ""}\n\n                    <div class="services-copy">\n                    {exp:channel:entries\n                      channel="static_page"\n                      disable="categories|category_fields|member_data|pagination|trackbacks"\n                      dynamic="on"\n                      entry_id="4"\n                    }\n                     <h1>{title}</h1> \n                     {static_content}\n                    {/exp:channel:entries}\n                      \n                      <a href="/work/" title="See what we have done"><img src="/assets/img/global/see-what-we-have-done.png" alt="" class="swwhd-img"></a>\n                      \n                    </div>\n                    <section class="work-example-grid half-grid">\n              {exp:channel:entries\n                      channel="image_blocks"\n                      disable="category_fields|member_data|pagination|trackbacks"\n                      dynamic="off"\n                      status="Featured|open"\n                      limit="1"\n                      entry_id="76"\n                    }\n                    {image_block orderby="random" limit="1"}\n                    <div class="work-col1">\n                      \n                        {exp:ce_img:single src="{image_block:left_image}" alt="slider" width="320" height="300"  min_width="320" min_height="300" crop="yes" allow_scale_larger="yes"}\n                    </div>\n                    \n                    \n                    <div class="work-col2">\n                      <div class="work-row1">\n                          {exp:ce_img:single src="{image_block:middle_image_1}" alt="slider" width="520" height="150"  min_width="520" min_height="150" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                    \n                    \n                      <div class="work-row2">\n                          {exp:ce_img:single src="{image_block:middle_image_2}" alt="slider" width="520" height="150"  min_width="520" min_height="150" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                    </div>\n                    \n                    \n                      {/image_block}\n                    \n              {/exp:channel:entries}\n              </section>\n\n                  {if:else}\n\n                    <div class="services-copy">\n                    {exp:channel:entries\n                      channel="services"\n                      disable="category_fields|member_data|pagination|trackbacks"\n                      dynamic="on"\n                    }\n                     <h1>{title}</h1> \n                     {services_content}\n                    \n                      \n                      <a href="/work/#cat-{url_title}" title="See what we have done"><img src="/assets/img/global/see-what-we-have-done.png" alt="" class="swwhd-img"></a>\n                      \n                    </div>\n{!-- \n\n\n                    {embed="services/service_imgs" cat_id="{categories}{category_id}{/categories}"} --}\n\n                    {!-- {service-imgs} --}\n\n                    \n                    <div class="services-images">\n                      {embed="services/service_imgs" cat_id="{categories}{category_id}{/categories}"}\n\n                     {!--  {exp:channel:entries\n                        channel="work"\n                        disable="category_fields|member_data|pagination|trackbacks"\n                        dynamic="off"\n                        status="Featured|open"\n                        category="{categories}{category_id}{/categories}"\n                        limit="4"\n                      }\n                        <img src="{work_feature_image}" alt="round-image" class="service-img">\n                        \n                      {/exp:channel:entries} --}\n                    </div>\n\n                    {/exp:channel:entries}\n\n\n                  {/if}\n\n                  \n                </section>\n\n                <ul class="services-list">\n                    <li>\n                      <div class="icon-wrap">\n                        <a href="/services/graphic-design/" title="">\n                          <img src="/assets/img/icons/graphic-design.png" alt="icon">\n                        </a>\n                      </div>\n                      <h3><a href="/services/graphic-design/" title="">Graphic Design</a></h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <a href="/services/online/" title="">\n                          <img src="/assets/img/icons/online.png" alt="icon">\n                        </a>\n                      </div>\n                      <h3>Online</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <a href="/services/events/" title="">\n                          <img src="/assets/img/icons/events.png" alt="icon">\n                        </a>\n                      </div>\n                      <h3>Events</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <a href="/services/pr/" title="">\n                          <img src="/assets/img/icons/pr.png" alt="icon">\n                        </a>\n                      </div>\n                      <h3>PR</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <a href="/services/marketing/" title="">\n                          <img src="/assets/img/icons/marketing.png" alt="icon">\n                        </a>\n                      </div>\n                      <h3>Marketing</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <a href="/services/film/" title="">\n                          <img src="/assets/img/icons/film.png" alt="icon">\n                        </a>\n                      </div>\n                      <h3>Film</h3>\n                    </li>\n                  </ul>\n\n                \n              </section>\n\n              \n              {embed="_includes/_footer"}\n              \n                \n            </section>\n            <!-- main end -->\n\n\n\n        \n\n        {embed="_includes/_footer_assets"}\n\n\n\n    </body>\n</html>', '', 1442352273, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(7, 1, 4, 'index', 'y', 'webpage', '<!DOCTYPE html>\n<!--[if lt IE 8]>      <html class="no-js lt-ie9 lt-ie8"> <![endif]-->\n<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->\n<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->\n    <head>\n        <meta charset="utf-8">\n        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">\n        {exp:seo_lite use_last_segment="yes"}\n        <meta name="viewport" content="width=device-width, initial-scale=1">\n\n\n\n        {embed="_includes/_header_assets"}\n\n    </head>\n    <body class="home">\n        <!--[if lt IE 8]>\n            <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>\n        <![endif]-->\n\n       \n\n        \n        <section class="main">\n\n              {embed="_includes/_header"}\n\n              {if segment_2 == ""}\n\n\n              <section class="projects container">\n                  <nav class="proj-nav">\n                    <div class="filter" data-filter="all">Show All</div>\n                    {exp:channel:categories channel="services" category_group="1" style="linear" class="services-list"}\n                      <div class="filter" data-filter=".cat-{category_url_title}">{category_name}</div>\n                    {/exp:channel:categories}\n                  </nav>\n\n                    \n                  <div id="grid" class="proj-panel">\n\n\n                    {exp:channel:entries\n                      channel="work"\n                      disable="category_fields|member_data|pagination|trackbacks"\n                      dynamic="off"\n                      status="Featured|open"\n                    }\n                      <figure class="background-image-holder mix {categories backspace="1"}cat-{category_url_title} {/categories}">\n                      <a href="{url_title}" title="" class="fancybox" rel="gallery">\n                        <img src="{work_feature_image}" />\n                      <div class="mix__details">\n                        <figcaption class="mix__title">{title}</figcaption>\n                        <p class="mix__tags">{categories backspace="2"}{category_name}, {/categories}</p>\n                      </div>\n                      </a>\n                    </figure>\n\n                      \n                    {/exp:channel:entries}\n\n                    {!-- <figure class="background-image-holder mix cat-print">\n                      <a href="#example" title="" class="fancybox" rel="gallery">\n                        <img src="/assets/img/latest-projects/latest_greatnewsome_home.jpg" />\n                      </a>\n                      <div class="mix__details">\n                        <figcaption class="mix__title">The Big Issue</figcaption>\n                        <p class="mix__tags">Print</p>\n                      </div>\n                      <div id="example" class="lbinline">\n                        <div class="lb-col-1">\n                          <img src="/assets/img/latest-projects/lb/castle-combe-1.jpg" alt="">\n                        </div>\n                        <div class="lb-col-2">\n                          <img src="/assets/img/latest-projects/lb/castle-combe-2.jpg" alt="">\n                        </div>\n                        <div class="lb-col-txt">\n                          <h2>title</h2>\n                          <h3>subtitle</h3>\n                          <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium.</p>\n                          <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\n                        </div>\n                      </div>\n                    </figure>\n                    <figure class="background-image-holder mix cat-branding cat-online">\n                      <a href="#example2" title="" class="fancybox" rel="gallery">\n                        <img src="/assets/img/latest-projects/latest_greatnewsome_home.jpg" />\n                      </a>\n                      <div class="mix__details">\n                        <figcaption class="mix__title">The Big Issue</figcaption>\n                        <p class="mix__tags">Branding, Online</p>\n                      </div>\n                      <div id="example2" class="lbinline">\n                        <div class="lb-col-1">\n                          <img src="/assets/img/latest-projects/lb/castle-combe-1.jpg" alt="">\n                        </div>\n                        <div class="lb-col-2">\n                          <img src="/assets/img/latest-projects/lb/castle-combe-2.jpg" alt="">\n                        </div>\n                        <div class="lb-col-txt">\n                          <h2>title</h2>\n                          <h3>subtitle</h3>\n                          <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium.</p>\n                          <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\n                        </div>\n                      </div>\n                    </figure>\n                    <figure class="background-image-holder mix cat-online">\n                      <a href="" title="" class="fancybox" rel="gallery">\n                        <img src="/assets/img/latest-projects/latest_greatnewsome_home.jpg" />\n                      </a>\n                      <div class="mix__details">\n                        <figcaption class="mix__title">The Big Issue</figcaption>\n                        <p class="mix__tags">Online</p>\n                      </div>\n                    </figure>\n                    <figure class="background-image-holder mix cat-print">\n                      <a href="" title="" class="fancybox" rel="gallery">\n                        <img src="/assets/img/latest-projects/latest_greatnewsome_home.jpg" />\n                      </a>\n                      <div class="mix__details">\n                        <figcaption class="mix__title">The Big Issue</figcaption>\n                        <p class="mix__tags">Print</p>\n                      </div>\n                    </figure>\n                    <figure class="background-image-holder mix cat-branding cat-online">\n                      <a href="" title="" class="fancybox" rel="gallery">\n                        <img src="/assets/img/latest-projects/latest_greatnewsome_home.jpg" />\n                      </a>\n                      <div class="mix__details">\n                        <figcaption class="mix__title">The Big Issue</figcaption>\n                        <p class="mix__tags">Branding, Online</p>\n                      </div>\n                    </figure>\n                    <figure class="background-image-holder mix cat-online">\n                      <a href="" title="" class="fancybox" rel="gallery">\n                        <img src="/assets/img/latest-projects/latest_greatnewsome_home.jpg" />\n                      </a>\n                      <div class="mix__details">\n                        <figcaption class="mix__title">The Big Issue</figcaption>\n                        <p class="mix__tags">Online</p>\n                      </div>\n                    </figure> --}\n                  </div>\n\n              </section>\n\n\n\n              {if:else}\n\n              {exp:channel:entries\n                      channel="work"\n                      disable="category_fields|member_data|pagination|trackbacks"\n                      dynamic="on"\n                      status="Featured|open"\n                    }\n\n              <section class="work-item container">\n              \n                <div class="work-imgs">\n                \n                  {work_lightbox_images}\n                    <img src="{work_lightbox_images:work_lightbox_image}" >\n                  {/work_lightbox_images}\n\n                </div>\n\n                <div class="work-content">\n\n                  <h2>{title}</h2>\n\n                  {if work_subtitle}<h3>{work_subtitle}</h3>{/if}\n                  {work_content}\n\n                  \n                </div>\n\n                \n\n\n              </section>\n\n\n              {/exp:channel:entries}\n\n\n              {/if}\n\n              \n\n              \n              {embed="_includes/_footer"}\n                \n              \n                \n            </section>\n            <!-- main end -->\n\n\n\n        \n\n        {embed="_includes/_footer_assets"}\n\n\n\n    </body>\n</html>\n', NULL, 1440706661, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(8, 1, 5, 'index', 'y', 'webpage', '<!DOCTYPE html>\n<!--[if lt IE 8]>      <html class="no-js lt-ie9 lt-ie8"> <![endif]-->\n<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->\n<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->\n    <head>\n        <meta charset="utf-8">\n        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">\n        {exp:seo_lite use_last_segment="yes"}\n        <meta name="viewport" content="width=device-width, initial-scale=1">\n\n\n\n        {embed="_includes/_header_assets"}\n\n    </head>\n    <body class="about">\n        <!--[if lt IE 8]>\n            <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>\n        <![endif]-->\n\n       \n\n        \n        <section class="main">\n\n              {embed="_includes/_header"}\n\n\n              <section class="work-example-grid full-grid">\n              {exp:channel:entries\n                      channel="image_blocks"\n                      disable="category_fields|member_data|pagination|trackbacks"\n                      dynamic="off"\n                      status="Featured|open"\n                      limit="1"\n                      entry_id="74"\n                    }\n                    {image_block orderby="random" limit="1"}\n                    <div class="work-col1">\n                        {exp:ce_img:single src="{image_block:left_image}" alt="slider" width="320" height="300"  min_width="320" min_height="300" crop="yes" allow_scale_larger="yes"}\n                    </div>\n                    \n                    \n                    <div class="work-col2">\n                      <div class="work-row1">\n                          {exp:ce_img:single src="{image_block:middle_image_1}" alt="slider" width="520" height="150"  min_width="520" min_height="150" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                    \n                    \n                      <div class="work-row2">\n                          {exp:ce_img:single src="{image_block:middle_image_2}" alt="slider" width="520" height="150"  min_width="520" min_height="150" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                    </div>\n                    \n                    \n                    \n                      <div class="work-col3">\n                          {exp:ce_img:single src="{image_block:right_image}" alt="slider" width="650" height="350"  min_width="650" min_height="350" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                      {/image_block}\n                    \n              {/exp:channel:entries}\n              </section>\n\n\n              <section class="feature-banner container">\n                <div class="main-copy">\n                  {exp:channel:entries\n                    channel="static_page"\n                    disable="categories|category_fields|member_data|pagination|trackbacks"\n                    dynamic="on"\n                    entry_id="5"\n                  }\n                   <h1>{title}</h1> \n                   {static_content}\n                  {/exp:channel:entries}\n                </div>\n\n                {!-- <section class="slider">\n                  <ul class="bxslider">\n                    {exp:channel:entries\n                      channel="work"\n                      disable="category_fields|member_data|pagination|trackbacks"\n                      dynamic="off"\n                      status="Featured|open"\n                      orderby="random"\n                    }\n                    <li>\n                      {exp:ce_img:single src="{work_feature_image}" alt="slider{count}" width="480" height="320"  min_width="480" min_height="320" crop="yes" allow_scale_larger="yes"}\n                      <div class="banner-copy">\n                        <h3>{title}</h3>\n                        <p>{work_summary}</p>\n                      </div>\n                    </li>\n                      \n                    {/exp:channel:entries}\n                  </ul>\n                </section> --}\n\n                <section class="ethos">\n                  <h3>Our Ethos is simple</h3>\n                  <p>We provide our clients with a one stop solution for all design, web, print, event and marketing needs. We really value the time we spend with our clients and we have a clear commitment to provide high quality, innovative and creative solutions.</p>\n                </section>\n\n                \n\n              </section>\n\n              <section class="our-process white-bg">\n                <div class="container">\n                  <header class="dotted-title">\n                    <h2>Our Process</h2>\n                  </header><!-- /header -->\n                  <ul class="process-list">\n                    <li>\n                      <div class="icon-wrap">\n                        <img src="/assets/img/icons/listen.png" alt="icon">\n                      </div>\n                      <h3>We listen</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <img src="/assets/img/icons/research.png" alt="icon">\n                      </div>\n                      <h3>We research</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <img src="/assets/img/icons/creative.png" alt="icon">\n                      </div>\n                      <h3>We get creative</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <img src="/assets/img/icons/measure.png" alt="icon">\n                      </div>\n                      <h3>We measure</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <img src="/assets/img/icons/look-after.png" alt="icon">\n                      </div>\n                      <h3>We look after you</h3>\n                    </li>\n                  </ul>\n                </div>\n              </section>\n\n              <section class="testimonials lblue-bg">\n                <div class="container">\n                  <header class="dotted-title">\n                    <h2>What people say about us</h2>\n                  </header><!-- /header -->\n                  <span class="testimonial-quote-open"></span>\n                  <div class="testimonials-wrap">\n\n                  {exp:channel:entries\n                    channel="testimonials"\n                    disable="categories|category_fields|member_data|pagination|trackbacks"\n                    dynamic="off"\n                    require_entry="yes"\n                  }\n\n                    <div class="testimonial-item">\n                      <blockquote>\n                        <p>{testimonial_quote}</p>\n                        {if testimonial_name}<p class="author">{testimonial_name}</p>{/if}\n                        {if testimonial_company}<p class="company">{testimonial_company}</p>{/if}\n                      </blockquote>\n                    </div>\n                    \n                    \n                  {/exp:channel:entries}\n                    \n\n                  </div>\n\n                  <span class="testimonial-quote-close"></span>\n\n                </div>\n              </section>\n\n              \n              {embed="_includes/_footer"}\n              \n                \n            </section>\n            <!-- main end -->\n\n\n\n        \n\n        {embed="_includes/_footer_assets"}\n\n\n\n    </body>\n</html>', '', 1440708172, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(9, 1, 2, 'index', 'y', 'webpage', '', NULL, 1440706661, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(10, 1, 3, 'service_imgs', 'y', 'webpage', '{exp:channel:entries\n                        channel="work"\n                        disable="category_fields|member_data|pagination|trackbacks"\n                        dynamic="off"\n                        status="Featured|open"\n                        category="{embed:cat_id}"\n                        limit="4"\n                      }\n                      	{exp:ce_img:single src="{work_feature_image}" max="240"  crop="yes" class="service-img"}\n                        <!-- <img src="{work_feature_image}" alt="round-image" class="service-img"> -->\n                        \n                      {/exp:channel:entries}\n', '', 1440706661, 1, 'n', 0, '', 'n', 'n', 'o', 0);
INSERT INTO `exp_templates` (`template_id`, `site_id`, `group_id`, `template_name`, `save_template_file`, `template_type`, `template_data`, `template_notes`, `edit_date`, `last_author_id`, `cache`, `refresh`, `no_auth_bounce`, `enable_http_auth`, `allow_php`, `php_parse_location`, `hits`) VALUES
(11, 1, 5, 'dev', 'y', 'webpage', '<!DOCTYPE html>\n<!--[if lt IE 8]>      <html class="no-js lt-ie9 lt-ie8"> <![endif]-->\n<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->\n<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->\n    <head>\n        <meta charset="utf-8">\n        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">\n        {exp:seo_lite use_last_segment="yes"}\n        <meta name="viewport" content="width=device-width, initial-scale=1">\n\n\n\n        {embed="_includes/_header_assets"}\n\n    </head>\n    <body class="about">\n        <!--[if lt IE 8]>\n            <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>\n        <![endif]-->\n\n       \n\n        \n        <section class="main">\n\n              {embed="_includes/_header"}\n\n\n              <section class="work-example-grid full-grid">\n              {exp:channel:entries\n                      channel="image_blocks"\n                      disable="category_fields|member_data|pagination|trackbacks"\n                      dynamic="off"\n                      status="Featured|open"\n                      limit="1"\n                      entry_id="74"\n                    }\n                    {image_block orderby="random" limit="1"}\n                    <div class="work-col1">\n                        {exp:ce_img:single src="{image_block:left_image}" alt="slider" width="320" height="300"  min_width="320" min_height="300" crop="yes" allow_scale_larger="yes"}\n                    </div>\n                    \n                    \n                    <div class="work-col2">\n                      <div class="work-row1">\n                          {exp:ce_img:single src="{image_block:middle_image_1}" alt="slider" width="520" height="150"  min_width="520" min_height="150" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                    \n                    \n                      <div class="work-row2">\n                          {exp:ce_img:single src="{image_block:middle_image_2}" alt="slider" width="520" height="150"  min_width="520" min_height="150" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                    </div>\n                    \n                    \n                    \n                      <div class="work-col3">\n                          {exp:ce_img:single src="{image_block:right_image}" alt="slider" width="650" height="350"  min_width="650" min_height="350" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                      {/image_block}\n                    \n              {/exp:channel:entries}\n              </section>\n\n\n              <section class="feature-banner container">\n                <div class="main-copy">\n                  {exp:channel:entries\n                    channel="static_page"\n                    disable="categories|category_fields|member_data|pagination|trackbacks"\n                    dynamic="on"\n                    entry_id="5"\n                  }\n                   <h1>{title}</h1> \n                   {static_content}\n                  {/exp:channel:entries}\n                </div>\n\n                {!-- <section class="slider">\n                  <ul class="bxslider">\n                    {exp:channel:entries\n                      channel="work"\n                      disable="category_fields|member_data|pagination|trackbacks"\n                      dynamic="off"\n                      status="Featured|open"\n                      orderby="random"\n                    }\n                    <li>\n                      {exp:ce_img:single src="{work_feature_image}" alt="slider{count}" width="480" height="320"  min_width="480" min_height="320" crop="yes" allow_scale_larger="yes"}\n                      <div class="banner-copy">\n                        <h3>{title}</h3>\n                        <p>{work_summary}</p>\n                      </div>\n                    </li>\n                      \n                    {/exp:channel:entries}\n                  </ul>\n                </section> --}\n\n                <section class="ethos">\n                  <h3>Our Ethos is simple</h3>\n                  <p>We provide our clients with a one stop solution for all design, web, print, event and marketing needs. We really value the time we spend with our clients and we have a clear commitment to provide high quality, innovative and creative solutions.</p>\n                </section>\n\n                \n\n              </section>\n\n              <section class="our-process white-bg">\n                <div class="container">\n                  <header class="dotted-title">\n                    <h2>Our Process</h2>\n                  </header><!-- /header -->\n                  <ul class="process-list">\n                    <li>\n                      <div class="icon-wrap">\n                        <img src="/assets/img/icons/listen.png" alt="icon">\n                      </div>\n                      <h3>We listen</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <img src="/assets/img/icons/research.png" alt="icon">\n                      </div>\n                      <h3>We research</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <img src="/assets/img/icons/creative.png" alt="icon">\n                      </div>\n                      <h3>We get creative</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <img src="/assets/img/icons/measure.png" alt="icon">\n                      </div>\n                      <h3>We measure</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <img src="/assets/img/icons/look-after.png" alt="icon">\n                      </div>\n                      <h3>We look after you</h3>\n                    </li>\n                  </ul>\n                </div>\n              </section>\n\n              <section class="testimonials lblue-bg">\n                <div class="container">\n                  <header class="dotted-title">\n                    <h2>What people say about us</h2>\n                  </header><!-- /header -->\n                  <span class="testimonial-quote-open"></span>\n                  <div class="testimonials-wrap">\n\n                  {exp:channel:entries\n                    channel="testimonials"\n                    disable="categories|category_fields|member_data|pagination|trackbacks"\n                    dynamic="off"\n                    require_entry="yes"\n                  }\n\n                    <div class="testimonial-item">\n                      <blockquote>\n                        <p>{testimonial_quote}</p>\n                        {if testimonial_name}<p class="author">{testimonial_name}</p>{/if}\n                        {if testimonial_company}<p class="company">{testimonial_company}</p>{/if}\n                      </blockquote>\n                    </div>\n                    \n                    \n                  {/exp:channel:entries}\n                    \n\n                  </div>\n\n                  <span class="testimonial-quote-close"></span>\n\n                </div>\n              </section>\n\n              \n              {embed="_includes/_footer"}\n              \n                \n            </section>\n            <!-- main end -->\n\n\n\n        \n\n        {embed="_includes/_footer_assets"}\n\n\n\n    </body>\n</html>', '', 1440707329, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(12, 1, 1, 'home-dev', 'y', 'webpage', '<!DOCTYPE html>\n<!--[if lt IE 8]>      <html class="no-js lt-ie9 lt-ie8"> <![endif]-->\n<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->\n<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->\n    <head>\n        <meta charset="utf-8">\n        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">\n        {exp:seo_lite use_last_segment="yes"}\n        <meta name="viewport" content="width=device-width, initial-scale=1">\n\n\n\n        {embed="_includes/_header_assets"}\n\n    </head>\n    <body class="home">\n        <!--[if lt IE 8]>\n            <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>\n        <![endif]-->\n\n       \n\n        \n        <section class="main">\n\n              {embed="_includes/_header"}\n\n              <section class="feature-banner container">\n                <div class="main-copy">\n                {exp:channel:entries\n                    channel="static_page"\n                    disable="categories|category_fields|member_data|pagination|trackbacks"\n                    dynamic="on"\n                    entry_id="3"\n                  }\n                   <h2>{title}</h2> \n                   {static_content}\n                  {/exp:channel:entries}\n                </div>\n\n                <section class="work-example-grid half-grid">\n              {exp:channel:entries\n                      channel="image_blocks"\n                      disable="category_fields|member_data|pagination|trackbacks"\n                      dynamic="off"\n                      status="Featured|open"\n                      limit="1"\n                      entry_id="75"\n                    }\n                    {image_block orderby="random" limit="1"}\n                    <div class="work-col1">\n                      \n                        {exp:ce_img:single src="{image_block:left_image}" alt="slider" width="320" height="300"  min_width="320" min_height="300" crop="yes" allow_scale_larger="yes"}\n                    </div>\n                    \n                    \n                    <div class="work-col2">\n                      <div class="work-row1">\n                          {exp:ce_img:single src="{image_block:middle_image_1}" alt="slider" width="520" height="150"  min_width="520" min_height="150" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                    \n                    \n                      <div class="work-row2">\n                          {exp:ce_img:single src="{image_block:middle_image_2}" alt="slider" width="520" height="150"  min_width="520" min_height="150" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                    </div>\n                    \n                    \n                      {/image_block}\n                    \n              {/exp:channel:entries}\n              </section>\n\n              </section>\n\n              <section class="how-can-we-help white-bg">\n                <div class="container">\n                  <header class="dotted-title">\n                    <h2>How can we help?</h2>\n                  </header><!-- /header -->\n                     {exp:channel:categories channel="services" category_group="1" class="services-list"}\n                        <div class="icon-wrap">\n                          <a href="/services/{category_url_title}/" title="">\n                            <img src="{category_image}" alt="icon">\n                          </a>\n                        </div>\n                        <h3>{category_name}</h3>\n                        {!-- {if category_description}<p>{category_description}</p>{/if} --}\n                    {/exp:channel:categories}\n                    \n                </div>\n              </section>\n\n              {!-- <section class="latest-projects lblue-bg">\n                <div class="container">\n                  <header class="dotted-title">\n                    <h2>See what we can do</h2>\n                  </header>\n                  <div class="tabs">\n                    <nav class="tab-nav">\n                      <ul>\n                        <li><a href="#featured" title="Tab" class="tablink">Featured</a></li>\n                        {exp:channel:categories channel="services" category_group="1" class="services-list" style="linear"}\n                          <li><a href="/services/{category_url_title}/" class="tablink">{category_name}</a></li>\n                        {/exp:channel:categories}\n                      </ul>\n                    </nav>\n                    <div class="tab-panel" id="featured">\n                      <ul>\n                      {exp:channel:entries\n                          channel="work"\n                          disable="category_fields|member_data|pagination|trackbacks"\n                          dynamic="off"\n                          status="Featured"\n                          limit="4"\n                      }\n                        <li>\n                            <img src="{work_feature_image}" class="latest-project-img" />\n                            <div class="proj_info">\n                                <h3><a href="#{url_title}" title="" class="fancybox" rel="gallery">{title}</a></h3>\n                                <p class="service_provided">{categories  backspace="2"}{category_name}, {/categories}</p>\n                                <p class="proj_desc">{work_summary}</p>\n                            </div>\n                            <div id="{url_title}" class="lbinline">\n                              {if work_lightbox_image_orientation == "Column"}\n                                {work_lightbox_images}\n                                <div class="lb-col">\n                                  {exp:ce_img:single src="{work_lightbox_images:work_lightbox_image}" max_height="600"}\n                                </div>\n                                {/work_lightbox_images}\n                              {if:else}\n\n                                <div class="lb-col-double">\n                                  {work_lightbox_images}\n                                    <img src="{work_lightbox_images:work_lightbox_image}" >\n                                  {/work_lightbox_images}\n                                </div>\n                                \n                              {/if}\n                              <div class="lb-col lb-txt">\n                                <h2>{title}</h2>\n                                {if work_subtitle}<h3>{work_subtitle}</h3>{/if}\n                                {work_content}\n                              </div>\n                              \n                            </div>\n                        </li>\n                          \n                      {/exp:channel:entries}\n                      </ul>\n                    </div>\n                    \n                  </div>\n                </div>\n              </section> --}\n\n              \n              {embed="_includes/_footer"}\n              \n                \n            </section>\n            <!-- main end -->\n\n\n\n        \n\n        {embed="_includes/_footer_assets"}\n\n\n\n    </body>\n</html>', '', 1440707196, 1, 'n', 0, '', 'n', 'n', 'o', 0),
(14, 1, 3, 'dev', 'y', 'webpage', '<!DOCTYPE html>\n<!--[if lt IE 8]>      <html class="no-js lt-ie9 lt-ie8"> <![endif]-->\n<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->\n<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->\n    <head>\n        <meta charset="utf-8">\n        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">\n        {exp:seo_lite use_last_segment="yes"}\n        <meta name="viewport" content="width=device-width, initial-scale=1">\n\n\n\n        {embed="_includes/_header_assets"}\n\n    </head>\n    <body class="services">\n        <!--[if lt IE 8]>\n            <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>\n        <![endif]-->\n\n       \n\n        \n        <section class="main">\n\n              {embed="_includes/_header"}\n\n              <section class="service-content-wrap container">\n\n                <section class="services-cont">\n                  \n\n                  {if segment_2 == ""}\n\n                    <div class="services-copy">\n                    {exp:channel:entries\n                      channel="static_page"\n                      disable="categories|category_fields|member_data|pagination|trackbacks"\n                      dynamic="on"\n                      entry_id="4"\n                    }\n                     <h1>{title}</h1> \n                     {static_content}\n                    {/exp:channel:entries}\n                      \n                      <a href="/work/" title="See what we have done"><img src="/assets/img/global/see-what-we-have-done.png" alt="" class="swwhd-img"></a>\n                      \n                    </div>\n                    <section class="work-example-grid half-grid">\n              {exp:channel:entries\n                      channel="image_blocks"\n                      disable="category_fields|member_data|pagination|trackbacks"\n                      dynamic="off"\n                      status="Featured|open"\n                      limit="1"\n                      entry_id="76"\n                    }\n                    {image_block orderby="random" limit="1"}\n                    <div class="work-col1">\n                      \n                        {exp:ce_img:single src="{image_block:left_image}" alt="slider" width="320" height="300"  min_width="320" min_height="300" crop="yes" allow_scale_larger="yes"}\n                    </div>\n                    \n                    \n                    <div class="work-col2">\n                      <div class="work-row1">\n                          {exp:ce_img:single src="{image_block:middle_image_1}" alt="slider" width="520" height="150"  min_width="520" min_height="150" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                    \n                    \n                      <div class="work-row2">\n                          {exp:ce_img:single src="{image_block:middle_image_2}" alt="slider" width="520" height="150"  min_width="520" min_height="150" crop="yes" allow_scale_larger="yes"}\n                      </div>\n                    </div>\n                    \n                    \n                      {/image_block}\n                    \n              {/exp:channel:entries}\n              </section>\n\n                  {if:else}\n\n                    <div class="services-copy">\n                    {exp:channel:entries\n                      channel="services"\n                      disable="category_fields|member_data|pagination|trackbacks"\n                      dynamic="on"\n                    }\n                     <h1>{title}</h1> \n                     {services_content}\n                    \n                      \n                      <a href="/work/" title="See what we have done"><img src="/assets/img/global/see-what-we-have-done.png" alt="" class="swwhd-img"></a>\n                      \n                    </div>\n{!-- \n\n\n                    {embed="services/service_imgs" cat_id="{categories}{category_id}{/categories}"} --}\n\n                    {!-- {service-imgs} --}\n\n                    \n                    <div class="services-images">\n                      {embed="services/service_imgs" cat_id="{categories}{category_id}{/categories}"}\n\n                     {!--  {exp:channel:entries\n                        channel="work"\n                        disable="category_fields|member_data|pagination|trackbacks"\n                        dynamic="off"\n                        status="Featured|open"\n                        category="{categories}{category_id}{/categories}"\n                        limit="4"\n                      }\n                        <img src="{work_feature_image}" alt="round-image" class="service-img">\n                        \n                      {/exp:channel:entries} --}\n                    </div>\n\n                    {/exp:channel:entries}\n\n\n                  {/if}\n\n                  \n                </section>\n\n                <ul class="services-list">\n                    <li>\n                      <div class="icon-wrap">\n                        <a href="/services/graphic-design/" title="">\n                          <img src="/assets/img/icons/graphic-design.png" alt="icon">\n                        </a>\n                      </div>\n                      <h3><a href="/services/graphic-design/" title="">Graphic Design</a></h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <a href="/services/online/" title="">\n                          <img src="/assets/img/icons/online.png" alt="icon">\n                        </a>\n                      </div>\n                      <h3>Online</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <a href="/services/events/" title="">\n                          <img src="/assets/img/icons/events.png" alt="icon">\n                        </a>\n                      </div>\n                      <h3>Events</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <a href="/services/pr/" title="">\n                          <img src="/assets/img/icons/pr.png" alt="icon">\n                        </a>\n                      </div>\n                      <h3>PR</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <a href="/services/marketing/" title="">\n                          <img src="/assets/img/icons/marketing.png" alt="icon">\n                        </a>\n                      </div>\n                      <h3>Marketing</h3>\n                    </li>\n                    <li>\n                      <div class="icon-wrap">\n                        <a href="/services/film/" title="">\n                          <img src="/assets/img/icons/film.png" alt="icon">\n                        </a>\n                      </div>\n                      <h3>Film</h3>\n                    </li>\n                  </ul>\n\n                \n              </section>\n\n              \n              {embed="_includes/_footer"}\n              \n                \n            </section>\n            <!-- main end -->\n\n\n\n        \n\n        {embed="_includes/_footer_assets"}\n\n\n\n    </body>\n</html>', '', 1440707946, 1, 'n', 0, '', 'n', 'n', 'o', 0);

-- --------------------------------------------------------

--
-- Table structure for table `exp_template_groups`
--

CREATE TABLE IF NOT EXISTS `exp_template_groups` (
  `group_id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `group_name` varchar(50) NOT NULL,
  `group_order` int(3) unsigned NOT NULL,
  `is_site_default` char(1) NOT NULL DEFAULT 'n',
  PRIMARY KEY (`group_id`),
  KEY `site_id` (`site_id`),
  KEY `group_name_idx` (`group_name`),
  KEY `group_order_idx` (`group_order`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;

--
-- Dumping data for table `exp_template_groups`
--

INSERT INTO `exp_template_groups` (`group_id`, `site_id`, `group_name`, `group_order`, `is_site_default`) VALUES
(1, 1, 'home', 1, 'y'),
(2, 1, '_includes', 2, 'n'),
(3, 1, 'services', 3, 'n'),
(4, 1, 'work', 4, 'n'),
(5, 1, 'about', 5, 'n');

-- --------------------------------------------------------

--
-- Table structure for table `exp_template_member_groups`
--

CREATE TABLE IF NOT EXISTS `exp_template_member_groups` (
  `group_id` smallint(4) unsigned NOT NULL,
  `template_group_id` mediumint(5) unsigned NOT NULL,
  PRIMARY KEY (`group_id`,`template_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `exp_template_member_groups`
--

INSERT INTO `exp_template_member_groups` (`group_id`, `template_group_id`) VALUES
(3, 2),
(3, 3),
(3, 4),
(3, 5);

-- --------------------------------------------------------

--
-- Table structure for table `exp_template_no_access`
--

CREATE TABLE IF NOT EXISTS `exp_template_no_access` (
  `template_id` int(6) unsigned NOT NULL,
  `member_group` smallint(4) unsigned NOT NULL,
  PRIMARY KEY (`template_id`,`member_group`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `exp_template_routes`
--

CREATE TABLE IF NOT EXISTS `exp_template_routes` (
  `route_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `template_id` int(10) unsigned NOT NULL,
  `route` varchar(512) DEFAULT NULL,
  `route_parsed` varchar(512) DEFAULT NULL,
  `route_required` char(1) NOT NULL DEFAULT 'n',
  PRIMARY KEY (`route_id`),
  KEY `template_id` (`template_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_throttle`
--

CREATE TABLE IF NOT EXISTS `exp_throttle` (
  `throttle_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `last_activity` int(10) unsigned NOT NULL DEFAULT '0',
  `hits` int(10) unsigned NOT NULL,
  `locked_out` char(1) NOT NULL DEFAULT 'n',
  PRIMARY KEY (`throttle_id`),
  KEY `ip_address` (`ip_address`),
  KEY `last_activity` (`last_activity`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `exp_upload_no_access`
--

CREATE TABLE IF NOT EXISTS `exp_upload_no_access` (
  `upload_id` int(6) unsigned NOT NULL,
  `upload_loc` varchar(3) NOT NULL,
  `member_group` smallint(4) unsigned NOT NULL,
  PRIMARY KEY (`upload_id`,`member_group`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `exp_upload_prefs`
--

CREATE TABLE IF NOT EXISTS `exp_upload_prefs` (
  `id` int(4) unsigned NOT NULL AUTO_INCREMENT,
  `site_id` int(4) unsigned NOT NULL DEFAULT '1',
  `name` varchar(50) NOT NULL,
  `server_path` varchar(255) NOT NULL DEFAULT '',
  `url` varchar(100) NOT NULL,
  `allowed_types` varchar(3) NOT NULL DEFAULT 'img',
  `max_size` varchar(16) DEFAULT NULL,
  `max_height` varchar(6) DEFAULT NULL,
  `max_width` varchar(6) DEFAULT NULL,
  `properties` varchar(120) DEFAULT NULL,
  `pre_format` varchar(120) DEFAULT NULL,
  `post_format` varchar(120) DEFAULT NULL,
  `file_properties` varchar(120) DEFAULT NULL,
  `file_pre_format` varchar(120) DEFAULT NULL,
  `file_post_format` varchar(120) DEFAULT NULL,
  `cat_group` varchar(255) DEFAULT NULL,
  `batch_location` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `exp_upload_prefs`
--

INSERT INTO `exp_upload_prefs` (`id`, `site_id`, `name`, `server_path`, `url`, `allowed_types`, `max_size`, `max_height`, `max_width`, `properties`, `pre_format`, `post_format`, `file_properties`, `file_pre_format`, `file_post_format`, `cat_group`, `batch_location`) VALUES
(1, 1, 'Work image uploads', '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/work/', '/assets/img/uploads/work/', 'img', '', '', '', '', '', '', '', '', '', '', NULL),
(2, 1, 'Service image uploads', '/home/saviwebc/public_html/harper-creative.co.uk/assets/img/uploads/services/', '/assets/img/uploads/services/', 'img', '', '', '', '', '', '', '', '', '', '', NULL);

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