This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
OriginalHouse_Web/db/originalhouse.sql

2588 lines
550 KiB
MySQL
Raw Normal View History

-- phpMyAdmin SQL Dump
-- version 3.3.9
-- http://www.phpmyadmin.net
--
-- Servidor: localhost
-- Tiempo de generación: 04-07-2011 a las 17:29:53
-- Versión del servidor: 5.1.53
-- Versión de PHP: 5.3.4
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!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 */;
--
-- Base de datos: `originalhouse`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_commentmeta`
--
CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_commentmeta`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_comments`
--
CREATE TABLE IF NOT EXISTS `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_approved` (`comment_approved`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Volcar la base de datos para la tabla `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Sr WordPress', '', 'http://wordpress.org/', '', '2011-06-28 15:12:45', '2011-06-28 15:12:45', 'Hola, esto es un comentario.<br /> Para borrar un comentario sólo tienes que entrar y ver los comentarios de la entrada. Entonces tendrás la opción de editar o borrar.', 0, '1', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_customback`
--
CREATE TABLE IF NOT EXISTS `wp_customback` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`postid` bigint(20) DEFAULT NULL,
`url` text,
`rep` varchar(5) DEFAULT 'none',
`color` varchar(25) DEFAULT NULL,
`css` text,
`displaytype` tinyint(1) DEFAULT '3',
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ;
--
-- Volcar la base de datos para la tabla `wp_customback`
--
INSERT INTO `wp_customback` (`id`, `postid`, `url`, `rep`, `color`, `css`, `displaytype`) VALUES
(1, 48, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-inicio.jpg', 'none', '', '', 5),
(2, 44, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-inicio.jpg', 'none', '', '', 5),
(3, 58, '', 'none', '', '', 0),
(4, 57, '', 'none', '', '', 0),
(5, 65, 'http://localhost/originalhouse/wp-content/uploads/2011/06/3-muebles.jpg', 'none', '', '', 0),
(6, 61, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-la-tienda.jpg', 'none', '', '', 5),
(7, 83, '', 'none', '', '', 0),
(8, 82, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-servicios.jpg', 'none', '', '', 5),
(9, 89, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-localizanos.jpg', 'none', '', '', 5),
(10, 88, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-localizanos.jpg', 'none', '', '', 5),
(11, 97, '', 'none', '', '', 0),
(12, 96, '', 'none', '', '', 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_links`
--
CREATE TABLE IF NOT EXISTS `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
--
-- Volcar la base de datos para la tabla `wp_links`
--
INSERT INTO `wp_links` (`link_id`, `link_url`, `link_name`, `link_image`, `link_target`, `link_description`, `link_visible`, `link_owner`, `link_rating`, `link_updated`, `link_rel`, `link_notes`, `link_rss`) VALUES
(1, 'http://codex.wordpress.org/', 'Documentation', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(2, 'http://wordpress.org/news/', 'WordPress Blog', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', 'http://wordpress.org/news/feed/'),
(3, 'http://wordpress.org/extend/ideas/', 'Suggest Ideas', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(4, 'http://wordpress.org/support/', 'Support Forum', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(5, 'http://wordpress.org/extend/plugins/', 'Plugins', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(6, 'http://wordpress.org/extend/themes/', 'Themes', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(7, 'http://planet.wordpress.org/', 'WordPress Planet', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', '');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_options`
--
CREATE TABLE IF NOT EXISTS `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`blog_id` int(11) NOT NULL DEFAULT '0',
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=577 ;
--
-- Volcar la base de datos para la tabla `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 0, 'siteurl', 'http://localhost/originalhouse', 'yes'),
(2, 0, 'blogname', 'Original House', 'yes'),
(3, 0, 'blogdescription', 'Muebles y decoración de estilo asiatico y moderno', 'yes'),
(4, 0, 'users_can_register', '0', 'yes'),
(5, 0, 'admin_email', 'darranz@rodax-software.com', 'yes'),
(6, 0, 'start_of_week', '1', 'yes'),
(7, 0, 'use_balanceTags', '0', 'yes'),
(8, 0, 'use_smilies', '1', 'yes'),
(9, 0, 'require_name_email', '1', 'yes'),
(10, 0, 'comments_notify', '1', 'yes'),
(11, 0, 'posts_per_rss', '10', 'yes'),
(12, 0, 'rss_use_excerpt', '0', 'yes'),
(13, 0, 'mailserver_url', 'mail.example.com', 'yes'),
(14, 0, 'mailserver_login', 'login@example.com', 'yes'),
(15, 0, 'mailserver_pass', 'password', 'yes'),
(16, 0, 'mailserver_port', '110', 'yes'),
(17, 0, 'default_category', '1', 'yes'),
(18, 0, 'default_comment_status', 'closed', 'yes'),
(19, 0, 'default_ping_status', 'open', 'yes'),
(20, 0, 'default_pingback_flag', '1', 'yes'),
(21, 0, 'default_post_edit_rows', '20', 'yes'),
(22, 0, 'posts_per_page', '10', 'yes'),
(23, 0, 'date_format', 'j F, Y', 'yes'),
(24, 0, 'time_format', 'G:i', 'yes'),
(25, 0, 'links_updated_date_format', 'j F, Y G:i', 'yes'),
(26, 0, 'links_recently_updated_prepend', '<em>', 'yes'),
(27, 0, 'links_recently_updated_append', '</em>', 'yes'),
(28, 0, 'links_recently_updated_time', '120', 'yes'),
(29, 0, 'comment_moderation', '', 'yes'),
(30, 0, 'moderation_notify', '1', 'yes'),
(31, 0, 'permalink_structure', '', 'yes'),
(32, 0, 'gzipcompression', '0', 'yes'),
(33, 0, 'hack_file', '0', 'yes'),
(34, 0, 'blog_charset', 'UTF-8', 'yes'),
(35, 0, 'moderation_keys', '', 'no'),
(36, 0, 'active_plugins', 'a:7:{i:0;s:21:"catablog/catablog.php";i:1;s:56:"jquery-vertical-accordion-menu/dcwp_jquery_accordion.php";i:2;s:51:"make-filename-lowercase/make-filename-lowercase.php";i:3;s:57:"sanitize-spanish-filenames/sanitize-spanish-filenames.php";i:4;s:23:"tubepress/tubepress.php";i:5;s:34:"wp-e-commerce/wp-shopping-cart.php";i:6;s:53:"wp-ecommerce-cvs-importer/wp-ecommerce-cvs-import.php";}', 'yes'),
(37, 0, 'home', 'http://localhost/originalhouse', 'yes'),
(38, 0, 'category_base', '', 'yes'),
(39, 0, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(40, 0, 'advanced_edit', '0', 'yes'),
(41, 0, 'comment_max_links', '2', 'yes'),
(42, 0, 'gmt_offset', '0', 'yes'),
(43, 0, 'default_email_category', '1', 'yes'),
(44, 0, 'recently_edited', '', 'no'),
(45, 0, 'template', 'originalhouse', 'yes'),
(46, 0, 'stylesheet', 'originalhouse', 'yes'),
(47, 0, 'comment_whitelist', '1', 'yes'),
(48, 0, 'blacklist_keys', '', 'no'),
(49, 0, 'comment_registration', '', 'yes'),
(50, 0, 'rss_language', 'en', 'yes'),
(51, 0, 'html_type', 'text/html', 'yes'),
(52, 0, 'use_trackback', '0', 'yes'),
(53, 0, 'default_role', 'subscriber', 'yes'),
(54, 0, 'db_version', '17516', 'yes'),
(55, 0, 'uploads_use_yearmonth_folders', '1', 'yes'),
(56, 0, 'upload_path', '', 'yes'),
(57, 0, 'blog_public', '1', 'yes'),
(58, 0, 'default_link_category', '2', 'yes'),
(59, 0, 'show_on_front', 'page', 'yes'),
(60, 0, 'tag_base', '', 'yes'),
(61, 0, 'show_avatars', '0', 'yes'),
(62, 0, 'avatar_rating', 'G', 'yes'),
(63, 0, 'upload_url_path', '', 'yes'),
(64, 0, 'thumbnail_size_w', '150', 'yes'),
(65, 0, 'thumbnail_size_h', '150', 'yes'),
(66, 0, 'thumbnail_crop', '1', 'yes'),
(67, 0, 'medium_size_w', '300', 'yes'),
(68, 0, 'medium_size_h', '300', 'yes'),
(69, 0, 'avatar_default', 'mystery', 'yes'),
(70, 0, 'enable_app', '0', 'yes'),
(71, 0, 'enable_xmlrpc', '0', 'yes'),
(72, 0, 'large_size_w', '1024', 'yes'),
(73, 0, 'large_size_h', '1024', 'yes'),
(74, 0, 'image_default_link_type', 'file', 'yes'),
(75, 0, 'image_default_size', '', 'yes'),
(76, 0, 'image_default_align', '', 'yes'),
(77, 0, 'close_comments_for_old_posts', '', 'yes'),
(78, 0, 'close_comments_days_old', '14', 'yes'),
(79, 0, 'thread_comments', '1', 'yes'),
(80, 0, 'thread_comments_depth', '5', 'yes'),
(81, 0, 'page_comments', '', 'yes'),
(82, 0, 'comments_per_page', '50', 'yes'),
(83, 0, 'default_comments_page', 'newest', 'yes'),
(84, 0, 'comment_order', 'asc', 'yes'),
(85, 0, 'sticky_posts', 'a:0:{}', 'yes'),
(86, 0, 'widget_categories', 'a:2:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(87, 0, 'widget_text', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(88, 0, 'widget_rss', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(89, 0, 'timezone_string', '', 'yes'),
(90, 0, 'embed_autourls', '1', 'yes'),
(91, 0, 'embed_size_w', '', 'yes'),
(92, 0, 'embed_size_h', '600', 'yes'),
(93, 0, 'page_for_posts', '0', 'yes'),
(94, 0, 'page_on_front', '44', 'yes'),
(95, 0, 'default_post_format', '0', 'yes'),
(96, 0, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:81:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:12:"delete_users";b:1;s:12:"create_users";b:1;s:17:"unfiltered_upload";b:1;s:14:"edit_dashboard";b:1;s:14:"update_plugins";b:1;s:14:"delete_plugins";b:1;s:15:"install_plugins";b:1;s:13:"update_themes";b:1;s:14:"install_themes";b:1;s:11:"update_core";b:1;s:10:"list_users";b:1;s:12:"remove_users";b:1;s:9:"add_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";b:1;s:17:"read_wpsc-product";b:1;s:22:"read_wpsc-product-file";b:1;s:16:"tcp_edit_product";b:1;s:17:"tcp_edit_products";b:1;s:24:"tcp_edit_others_products";b:1;s:20:"tcp_publish_products";b:1;s:16:"tcp_read_product";b:1;s:18:"tcp_delete_product";b:1;s:15:"tcp_users_roles";b:1;s:15:"tcp_edit_orders";b:1;s:15:"tcp_read_orders";b:1;s:17:"tcp_edit_settings";b:1;s:16:"tcp_edit_plugins";b:1;s:16:"tcp_update_price";b:1;s:16:"tcp_update_stock";b:1;s:25:"tcp_downloadable_products";b:1;s:18:"tcp_edit_addresses";b:1;s:14:"tcp_edit_taxes";b:1;s:23:"tcp_shortcode_generator";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:34:{s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:10:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:5:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}', 'yes'),
(97, 0, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(98, 0, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(99, 0, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(100, 0, 'widget_archives', 'a:2:{i:2;a:3:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(101, 0, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(102, 0, 'sidebars_widgets', 'a:3:{s:19:"wp_inactive_widgets";a:21:{i:0;s:10:"woo_tabs-2";i:1;s:14:"woo_adwidget-2";i:2;s:20:"woo_blogauthorinfo-2";i:3;s:12:"woo_flickr-2";i:4;s:12:"woo_search-2";i:5;s:13:"woo_twitter-2";i:6;s:15:"woo_subscribe-2";i:7;s:7:"pages-2";i:8;s:10:"calendar-2";i:9;s:7:"links-2";i:10;s:6:"text-2";i:11;s:5:"rss-2";i:12;s:11:"tag_cloud-2";i:13;s:10:"nav_menu-2";i:14;s:14:"woo_archives-2";i:15;s:23:"dc_jqaccordion_widget-2";i:16;s:14:"recent-posts-2";i:17;s:17:"recent-comments-2";i:18;s:10:"archives-2";i:19;s:12:"categories-2";i:20;s:6:"meta-2";}s:7:"primary";a:1:{i:0;s:23:"dc_jqaccordion_widget-3";}s:13:"array_version";i:3;}', 'yes'),
(103, 0, 'cron', 'a:5:{i:1309803677;a:1:{s:22:"wpsc_hourly_cron_tasks";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1309835568;a:3:{s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:17:"wp_update_plugins";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:16:"wp_update_themes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1309878772;a:1:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1309886477;a:1:{s:21:"wpsc_daily_cron_tasks";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'),
(104, 0, '_transient_doing_cron', '1309800078', 'yes'),
(397, 0, 'tubepress-disableHttpTransportCurl', '', 'yes'),
(395, 0, 'tubepress-searchProvider', 'youtube', 'yes'),
(107, 0, 'widget_pages', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(108, 0, 'widget_calendar', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(109, 0, 'widget_links', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(110, 0, 'widget_tag_cloud', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(111, 0, 'widget_nav_menu', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(115, 0, 'dashboard_widget_options', 'a:4:{s:25:"dashboard_recent_comments";a:1:{s:5:"items";i:5;}s:24:"dashboard_incoming_links";a:5:{s:4:"home";s:30:"http://localhost/originalhouse";s:4:"link";s:106:"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://localhost/originalhouse/";s:3:"url";s:139:"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://localhost/originalhouse/";s:5:"items";i:10;s:9:"show_date";b:0;}s:17:"dashboard_primary";a:7:{s:4:"link";s:26:"http://wordpress.org/news/";s:3:"url";s:31:"http://wordpress.org/news/feed/";s:5:"title";s:22:"Blog oficial WordPress";s:5:"items";i:2;s:12:"show_summary";i:1;s:11:"show_author";i:0;s:9:"show_date";i:1;}s:19:"dashboard_secondary";a:7:{s:4:"link";s:28:"http://planet.wordpress.org/";s:3:"url";s:33:"http://planet.wordpress.org/feed/";s:5:"title";s:30:"Otras noticias sobre WordPress";s:5:"items";i:5;s:12:"show_summary";i:0;s:11:"show_author";i:0;s:9:"show_date";i:0;}}', 'yes'),
(451, 0, '_site_transient_timeout_theme_roots', '1309807147', 'yes'),
(452, 0, '_site_transient_theme_roots', 'a:2:{s:13:"originalhouse";s:7:"/themes";s:9:"twentyten";s:7:"/themes";}', 'yes'),
(266, 0, 'current_theme', 'Original House', 'yes'),
(117, 0, 'can_compress_scripts', '1', 'yes'),
(356, 0, '_transient_timeout_feed_8fa202021a0c51f109142bc571ee925a', '1309821724', 'no'),
(357, 0, '_transient_feed_8fa202021a0c51f109142bc571ee925a', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:4:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:83:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:4:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"link:http://localhost/originalhouse/ - Google Blog Search";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:94:"http://www.google.com/search?ie=utf-8&q=link:http://localhost/originalhouse/&tbm=blg&tbs=sbd:1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:96:"Results <b>1</b> - <b>10</b> of about <b>95</b> for <b>link:http://localhost/originalhouse/</b>.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:77:"Mandriva Forum (en) • View topic - log in fails - home directory <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://forum.mandriva.com/en/viewtopic.php?t=135223&p=847301";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:507:"[root@<em>localhost</em> home]# cat /etc/fstab # Entry for /dev/sda1 : UUID=81494177-1bee-4f6e-a709-681992215e63 / ext2 acl,noatime 1 1 # Entry for /dev/sda2 : UUID=40e99d98-ceea-41b0-9f72-83120658d99a /home ext2 acl,noatime 1 2 <b>...</b> Thanks for the <em>link</em>, the thing is i couldnt find a Home/[username] directory, it wasnt there ... so i created one using mkdir and now everything seems to work but all my data is gone :-( . If i run the commands detailed on the <em>link</em> above, <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:19:"Mandriva Forum (en)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"deanyit";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Sat, 25 Jun 2011 18:16:49 GMT";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:79:"MakeUseOf.com: “Latest Hilarious Picks [Geeky Fun]” plus 12 more <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:94:"http://free-download-book-pdf.blogspot.com/2011/05/makeuseofcom-latest-hilarious-picks_13.html";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:536:"Go to “<em>http</em>://<em>localhost</em>/” and you&#39;ll see a perfect mirror replica of your live website! Now you can tweak your theme, new ads, or otherwise play around with the local version of your website before you decide to move the changes to your live <b>...</b> The <em>link</em> will prompt the package ma
(122, 0, '_transient_timeout_plugin_slugs', '1309886912', 'no'),
(123, 0, '_transient_plugin_slugs', 'a:9:{i:0;s:21:"catablog/catablog.php";i:1;s:43:"custom-post-background/custom-post-back.php";i:2;s:56:"jquery-vertical-accordion-menu/dcwp_jquery_accordion.php";i:3;s:51:"make-filename-lowercase/make-filename-lowercase.php";i:4;s:57:"sanitize-spanish-filenames/sanitize-spanish-filenames.php";i:5;s:20:"sticky_menu/init.php";i:6;s:23:"tubepress/tubepress.php";i:7;s:34:"wp-e-commerce/wp-shopping-cart.php";i:8;s:53:"wp-ecommerce-cvs-importer/wp-ecommerce-cvs-import.php";}', 'no'),
(124, 0, 'recently_activated', 'a:4:{s:35:"thecartpress/TheCartPress.class.php";i:1309800474;s:31:"youtube-media/youtube-media.php";i:1309788594;s:47:"youtube-simplegallery/youtube_simplegallery.php";i:1309788204;s:43:"custom-post-background/custom-post-back.php";i:1309781286;}', 'yes'),
(125, 0, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1309317174', 'no');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(126, 0, '_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:50:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:25:"http://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 24 Jun 2011 23:15:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:37:"http://wordpress.org/?v=3.2-RC2-18357";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:41:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress 3.2 Release Candidate 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:77:"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 24 Jun 2011 23:15:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:7:"Testing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=1915";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:358:"Howdy! The second release candidate for WordPress 3.2 is now available. If you haven&#8217;t tested WordPress 3.2 yet, now is the time &#8212; please though, not on your live site unless youre extra adventurous. We&#8217;ve handled a number of issues since RC1, including additional Twenty Eleven tweaks, a new theme support option for defaulting to [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1876:"<p>Howdy! The second release candidate for WordPress 3.2 is now available. If you haven&#8217;t tested WordPress 3.2 yet, now is the time &#8212; please though, not on your live site unless youre extra adventurous.</p>\n<p>We&#8217;ve handled a number of issues since RC1, including additional Twenty Eleven tweaks, a new theme support option for defaulting to randomized headers, and various RTL fix
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(127, 0, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1309317174', 'no'),
(128, 0, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1309273974', 'no'),
(129, 0, '_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc', '1309317175', 'no'),
(130, 0, '_transient_feed_a5420c83891a9c88ad2a4f04584a5efc', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"http://wordpress.org/extend/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Jun 2011 15:02:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:36:"http://bbpress.org/?v=1.1-alpha-2855";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"uberdose on "All in One SEO Pack"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wordpress.org/extend/plugins/all-in-one-seo-pack/#post-753";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 30 Mar 2007 20:08:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:40:"753@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:92:"Automatically optimizes your Wordpress blog for Search Engines (Search Engine Optimization).";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"uberdose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"BraveNewCode Inc. on "WPtouch"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wordpress.org/extend/plugins/wptouch/#post-5468";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 May 2008 04:58:09 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"5468@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:150:"WPtouch: A simple, powerful and elegant mobile theme for you
(131, 0, '_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc', '1309317175', 'no'),
(132, 0, '_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc', '1309273975', 'no'),
(133, 0, '_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c', '1309317175', 'no');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(134, 0, '_transient_feed_867bd5c64f85878d03a060509cd2f92c', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:61:"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordPress Planet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:28:"http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:47:"WordPress Planet - http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:50:{i:0;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:59:"Weblog Tools Collection: WordPress Plugin Releases for 6/28";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"http://weblogtoolscollection.com/?p=10189";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/-xmy0S6Y-A4/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:846:"<h3>New plugins</h3>\n<p><a href="http://allcreatives.net/2011/06/25/wordpress-plugin-bulk-remove-comments/"><strong>Bulk Remove Comments</strong></a> allows you to remove all pending comments from your database with one click.</p>\n<p><a href="http://wordpress.org/extend/plugins/wp-notcaptcha/"><strong>WP-NOTCAPTCHA</strong></a> adds CAPTCHA anti-spam methods to WordPress on the comment form, registration form, or both. In order to post comments, users will have to range icons in right (upright) place.</p>\n<h3>Updated plugins</h3>\n<p><a href="http://tinsology.net/plugins/amazon-tools/"><strong>Amazon Tools</strong></a> allows you to display Amazon product information on your blog and earn commission through Amazon Associates.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/-xmy0S6Y-A4" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Jun 2011 13:00:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"James Huff";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:28:"Matt: A WordPress Filesystem";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=38332";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"http://ma.tt/2011/06/a-wordpress-filesystem/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"descri
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(135, 0, '_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1309317175', 'no'),
(136, 0, '_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1309273975', 'no'),
(137, 0, '_transient_timeout_feed_57bc725ad6568758915363af670fd8bc', '1309317175', 'no'),
(138, 0, '_transient_feed_57bc725ad6568758915363af670fd8bc', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress Plugins » View: Newest";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:47:"http://wordpress.org/extend/plugins/browse/new/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress Plugins » View: Newest";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Jun 2011 15:05:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:36:"http://bbpress.org/?v=1.1-alpha-2855";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:37:"wokamoto on "Feed Template Customize"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"http://wordpress.org/extend/plugins/feed-template-customize/#post-27843";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Jun 2011 05:26:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"27843@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:58:"This plugin modifies RSS feeds and ATOM feeds as you want.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"wokamoto";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:50:"gopiplus on "Image vertical reel scroll slideshow"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"http://wordpress.org/extend/plugins/image-vertical-reel-scroll-slideshow/#post-27803";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 26 Jun 2011 12:35:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"27803@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:146:"Image vertical reel scroll slideshow wordpress
(139, 0, '_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc', '1309317175', 'no'),
(140, 0, '_transient_feed_mod_57bc725ad6568758915363af670fd8bc', '1309273975', 'no'),
(351, 0, 'category_children', 'a:0:{}', 'yes'),
(359, 0, '_transient_feed_mod_8fa202021a0c51f109142bc571ee925a', '1309778524', 'no'),
(458, 0, 'wpsc_minor_version', '391083', 'yes'),
(378, 0, 'tubepress-tagValue', 'armani house', 'yes'),
(379, 0, 'tubepress-userValue', 'Armani', 'yes'),
(380, 0, 'tubepress-developerKey', 'AI39si5uUzupiQW9bpzGqZRrhvqF3vBgRqL-I_28G1zWozmdNJlskzMDQEhpZ-l2RqGf_6CNWooL96oJZRrqKo-eJ9QO_QppMg', 'yes'),
(381, 0, 'tubepress-vimeoKey', '', 'yes'),
(382, 0, 'tubepress-vimeoSecret', '', 'yes'),
(383, 0, 'tubepress-widget-title', 'TubePress', 'yes'),
(384, 0, 'tubepress-widget-tagstring', '[tubepress thumbHeight=''105'' thumbWidth=''135'']', 'yes'),
(385, 0, 'tubepress-vimeoUploadedByValue', 'mattkaar', 'yes'),
(386, 0, 'tubepress-vimeoLikesValue', 'coiffier', 'yes'),
(387, 0, 'tubepress-vimeoAppearsInValue', 'royksopp', 'yes'),
(388, 0, 'tubepress-vimeoSearchValue', 'cats playing piano', 'yes'),
(389, 0, 'tubepress-vimeoCreditedToValue', 'patricklawler', 'yes'),
(390, 0, 'tubepress-vimeoChannelValue', 'splitscreenstuff', 'yes'),
(391, 0, 'tubepress-vimeoGroupValue', 'hdxs', 'yes'),
(392, 0, 'tubepress-vimeoAlbumValue', '140484', 'yes'),
(393, 0, 'tubepress-cacheDirectory', '', 'yes'),
(394, 0, 'tubepress-searchResultsRestrictedToUser', '', 'yes'),
(143, 0, '_transient_timeout_feed_1a5f760f2e2b48827d4974a60857e7c2', '1309317176', 'no'),
(144, 0, '_transient_feed_1a5f760f2e2b48827d4974a60857e7c2', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:43:"WordPress Plugins » View: Recently Updated";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"http://wordpress.org/extend/plugins/browse/updated/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:43:"WordPress Plugins » View: Recently Updated";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Jun 2011 15:08:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:36:"http://bbpress.org/?v=1.1-alpha-2855";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"paul.irish on "Infinite Scroll"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"http://wordpress.org/extend/plugins/infinite-scroll/#post-6138";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 29 Jun 2008 23:30:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"6138@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:102:"Automatically append the next page of posts (via AJAX) to your page when a user scrolls to the bottom.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"paul.irish";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"Ciprian Turcu on "Custom Scheduled Posts Widget"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:77:"http://wordpress.org/extend/plugins/custom-scheduled-posts-widget/#post-27828";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 27 Jun 2011 13:18:47 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"27828@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:127:"
(145, 0, '_transient_timeout_feed_mod_1a5f760f2e2b48827d4974a60857e7c2', '1309317176', 'no'),
(146, 0, '_transient_feed_mod_1a5f760f2e2b48827d4974a60857e7c2', '1309273976', 'no');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(149, 0, 'catablog-options', 'a:18:{s:7:"version";s:7:"1.2.9.7";s:14:"thumbnail-size";s:3:"160";s:10:"image-size";s:3:"600";s:16:"background-color";s:7:"#000000";s:12:"paypal-email";s:0:"";s:17:"keep-aspect-ratio";b:1;s:16:"lightbox-enabled";b:1;s:15:"lightbox-render";b:0;s:17:"lightbox-selector";s:15:".catablog-image";s:11:"link-target";s:0:"";s:17:"link-relationship";s:0:"";s:10:"view-theme";s:277:"<div class=''catablog-row %CATEGORY-SLUGS%''>\r\n <div class="catablog-images-column">\r\n %MAIN-IMAGE%\r\n %SUB-IMAGES%\r\n </div>\r\n \r\n <h3 class=''catablog-title''>%TITLE-LINK%</h3>\r\n \r\n <div class="catablog-description">\r\n <p>%DESCRIPTION%</p>\r\n %BUY-NOW-BUTTON%\r\n </div>\r\n \r\n</div>";s:11:"view-buynow";s:0:"";s:18:"filter-description";b:1;s:17:"nl2br-description";b:1;s:12:"public_posts";b:0;s:16:"public_post_slug";s:14:"catablog-items";s:15:"public_tax_slug";s:14:"catablog-terms";}', 'yes'),
(396, 0, 'tubepress-debugging_enabled', '1', 'yes'),
(159, 0, '_site_transient_update_themes', 'O:8:"stdClass":1:{s:12:"last_checked";i:1309800418;}', 'yes'),
(358, 0, '_transient_timeout_feed_mod_8fa202021a0c51f109142bc571ee925a', '1309821724', 'no'),
(337, 0, '_site_transient_timeout_wporg_theme_feature_list', '1309388348', 'yes'),
(338, 0, '_site_transient_wporg_theme_feature_list', 'a:5:{s:6:"Colors";a:15:{i:0;s:5:"black";i:1;s:4:"blue";i:2;s:5:"brown";i:3;s:4:"gray";i:4;s:5:"green";i:5;s:6:"orange";i:6;s:4:"pink";i:7;s:6:"purple";i:8;s:3:"red";i:9;s:6:"silver";i:10;s:3:"tan";i:11;s:5:"white";i:12;s:6:"yellow";i:13;s:4:"dark";i:14;s:5:"light";}s:7:"Columns";a:6:{i:0;s:10:"one-column";i:1;s:11:"two-columns";i:2;s:13:"three-columns";i:3;s:12:"four-columns";i:4;s:12:"left-sidebar";i:5;s:13:"right-sidebar";}s:5:"Width";a:2:{i:0;s:11:"fixed-width";i:1;s:14:"flexible-width";}s:8:"Features";a:18:{i:0;s:8:"blavatar";i:1;s:10:"buddypress";i:2;s:17:"custom-background";i:3;s:13:"custom-colors";i:4;s:13:"custom-header";i:5;s:11:"custom-menu";i:6;s:12:"editor-style";i:7;s:21:"featured-image-header";i:8;s:15:"featured-images";i:9;s:20:"front-page-post-form";i:10;s:19:"full-width-template";i:11;s:12:"microformats";i:12;s:12:"post-formats";i:13;s:20:"rtl-language-support";i:14;s:11:"sticky-post";i:15;s:13:"theme-options";i:16;s:17:"threaded-comments";i:17;s:17:"translation-ready";}s:7:"Subject";a:3:{i:0;s:7:"holiday";i:1;s:13:"photoblogging";i:2;s:8:"seasonal";}}', 'yes'),
(265, 0, 'theme_mods_twentyten', 'a:1:{i:0;b:0;}', 'yes'),
(161, 0, 'theme_mods_savinggrace', 'a:1:{i:0;b:0;}', 'yes'),
(162, 0, 'widget_woo_tabs', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(163, 0, 'widget_woo_adwidget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(164, 0, 'widget_woo_blogauthorinfo', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(165, 0, 'widget_woo_flickr', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(166, 0, 'widget_woo_search', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(167, 0, 'widget_woo_twitter', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(168, 0, 'widget_woo_subscribe', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(169, 0, 'widget_woo_archives', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(170, 0, 'woo_framework_version', '4.1.6', 'yes'),
(171, 0, 'woo_custom_seo_template', 'a:3:{i:0;a:5:{s:4:"name";s:10:"seo_info_1";s:3:"std";s:0:"";s:5:"label";s:4:"SEO ";s:4:"type";s:4:"info";s:4:"desc";s:234:"Additional SEO custom fields available: <strong>Custom Page Titles, Custom Descriptions, Custom Keywords</strong>. Go to <a href="http://localhost/originalhouse/wp-admin/admin.php?page=woothemes_seo">SEO Settings</a> page to activate.";}i:1;a:5:{s:4:"name";s:10:"seo_follow";s:3:"std";s:5:"false";s:5:"label";s:16:"SEO - Set follow";s:4:"type";s:8:"checkbox";s:4:"desc";s:77:"Make links from this post/page <strong>followable</strong> by search engines.";}i:2;a:5:{s:4:"name";s:11:"seo_noindex";s:3:"std";s:5:"false";s:5:"label";s:13:"SEO - Noindex";s:4:"type";s:8:"checkbox";s:4:"desc";s:56:"Set the Page/Post to not be indexed by a search engines.";}}', 'yes'),
(172, 0, 'woo_options', 'a:72:{s:18:"woo_alt_stylesheet";s:11:"default.css";s:8:"woo_logo";s:71:"http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo.gif";s:13:"woo_texttitle";s:5:"false";s:19:"woo_font_site_title";a:5:{s:4:"size";s:2:"40";s:4:"unit";s:2:"px";s:4:"face";s:43:"Calibri, Candara, Segoe, Optima, sans-serif";s:5:"style";s:6:"normal";s:5:"color";s:7:"#FFFFFF";}s:11:"woo_tagline";s:5:"false";s:16:"woo_font_tagline";a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}s:18:"woo_custom_favicon";s:0:"";s:20:"woo_google_analytics";s:0:"";s:12:"woo_feed_url";s:0:"";s:19:"woo_subscribe_email";s:0:"";s:21:"woo_contactform_email";s:0:"";s:14:"woo_custom_css";s:0:"";s:12:"woo_comments";s:4:"post";s:16:"woo_post_content";s:7:"excerpt";s:15:"woo_post_author";s:5:"false";s:20:"woo_breadcrumbs_show";s:5:"false";s:14:"woo_title_show";s:5:"false";s:19:"woo_pagination_type";s:15:"paginated_links";s:14:"woo_body_color";s:7:"#000000";s:12:"woo_body_img";s:75:"http://localhost/originalhouse/wp-content/uploads/2011/06/fondonuevaweb.jpg";s:15:"woo_body_repeat";s:9:"no-repeat";s:12:"woo_body_pos";s:13:"center center";s:14:"woo_link_color";s:7:"#7f7875";s:20:"woo_link_hover_color";s:4:"#fff";s:16:"woo_button_color";s:7:"#7f7875";s:14:"woo_typography";s:4:"true";s:13:"woo_font_body";a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}s:12:"woo_font_nav";a:5:{s:4:"size";s:2:"20";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#555555";}s:19:"woo_font_post_title";a:5:{s:4:"size";s:2:"24";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:4:"bold";s:5:"color";s:7:"#222222";}s:18:"woo_font_post_meta";a:5:{s:4:"size";s:2:"12";s:4:"unit";s:2:"px";s:4:"face";s:10:"Droid Sans";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}s:19:"woo_font_post_entry";a:5:{s:4:"size";s:2:"16";s:4:"unit";s:2:"px";s:4:"face";s:10:"Droid Sans";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}s:22:"woo_font_widget_titles";a:5:{s:4:"size";s:2:"16";s:4:"unit";s:2:"px";s:4:"face";s:20:"Terminal Dosis Light";s:5:"style";s:4:"bold";s:5:"color";s:7:"#555555";}s:14:"woo_home_intro";s:58:"Si tu casa se parece a todas, nosotros no tenemos la culpa";s:10:"woo_slider";s:5:"false";s:18:"woo_slider_entries";s:2:"19";s:18:"woo_slider_content";s:5:"false";s:16:"woo_slider_speed";s:3:"500";s:15:"woo_slider_auto";s:4:"true";s:19:"woo_slider_interval";s:4:"6000";s:15:"woo_site_layout";s:11:"layout-full";s:22:"woo_post_image_support";s:4:"true";s:14:"woo_pis_resize";s:4:"true";s:17:"woo_pis_hard_crop";s:4:"true";s:10:"woo_resize";s:4:"true";s:12:"woo_auto_img";s:5:"false";s:11:"woo_thumb_w";s:3:"160";s:11:"woo_thumb_h";s:3:"160";s:15:"woo_thumb_align";s:9:"alignleft";s:16:"woo_thumb_single";s:4:"true";s:12:"woo_single_w";s:3:"200";s:12:"woo_single_h";s:3:"200";s:22:"woo_thumb_single_align";s:10:"alignright";s:13:"woo_rss_thumb";s:5:"false";s:17:"woo_footer_social";s:4:"true";s:19:"woo_footer_aff_link";s:0:"";s:15:"woo_footer_left";s:4:"true";s:20:"woo_footer_left_text";s:0:"";s:16:"woo_footer_right";s:4:"true";s:21:"woo_footer_right_text";s:0:"";s:11:"woo_connect";s:4:"true";s:17:"woo_connect_title";s:0:"";s:19:"woo_connect_content";s:0:"";s:25:"woo_connect_newsletter_id";s:0:"";s:15:"woo_connect_rss";s:4:"true";s:19:"woo_connect_twitter";s:37:"http://twitter.com/#!/originalhousesl";s:20:"woo_connect_facebook";s:81:"http://www.facebook.com/pages/ORIGINAL-HOUSE-Mobiliario-y-decoracion/161365001363";s:19:"woo_connect_blogger";s:42:"http://elblogdeoriginalhouse.blogspot.com/";s:19:"woo_connect_youtube";s:0:"";s:18:"woo_connect_flickr";s:0:"";s:20:"woo_connect_linkedin";s:0:"";s:21:"woo_connect_delicious";s:0:"";s:19:"woo_connect_related";s:5:"false";}', 'yes'),
(173, 0, 'woo_template', 'a:79:{i:0;a:3:{s:4:"name";s:16:"General Settings";s:4:"type";s:7:"heading";s:4:"icon";s:7:"general";}i:1;a:6:{s:4:"name";s:16:"Theme Stylesheet";s:4:"desc";s:44:"Select your themes alternative color scheme.";s:2:"id";s:18:"woo_alt_stylesheet";s:3:"std";s:11:"default.css";s:4:"type";s:6:"select";s:7:"options";a:5:{i:0;s:8:"blue.css";i:1;s:11:"default.css";i:2;s:9:"green.css";i:3;s:9:"light.css";i:4;s:7:"red.css";}}i:2;a:5:{s:4:"name";s:11:"Custom Logo";s:4:"desc";s:63:"Upload a logo for your theme, or specify an image URL directly.";s:2:"id";s:8:"woo_logo";s:3:"std";s:0:"";s:4:"type";s:6:"upload";}i:3;a:6:{s:4:"name";s:10:"Text Title";s:4:"desc";s:158:"Enable text-based Site Title and Tagline. Setup title & tagline in <a href=''http://localhost/originalhouse/wp-admin/options-general.php''>General Settings</a>.";s:2:"id";s:13:"woo_texttitle";s:3:"std";s:5:"false";s:5:"class";s:9:"collapsed";s:4:"type";s:8:"checkbox";}i:4;a:6:{s:4:"name";s:10:"Site Title";s:4:"desc";s:33:"Change the site title typography.";s:2:"id";s:19:"woo_font_site_title";s:3:"std";a:5:{s:4:"size";s:2:"40";s:4:"unit";s:2:"px";s:4:"face";s:8:"PT Serif";s:5:"style";s:4:"bold";s:5:"color";s:7:"#FFFFFF";}s:5:"class";s:6:"hidden";s:4:"type";s:10:"typography";}i:5;a:6:{s:4:"name";s:16:"Site Description";s:4:"desc";s:53:"Enable the site description/tagline under site title.";s:2:"id";s:11:"woo_tagline";s:5:"class";s:6:"hidden";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:6;a:6:{s:4:"name";s:16:"Site Description";s:4:"desc";s:39:"Change the site description typography.";s:2:"id";s:16:"woo_font_tagline";s:3:"std";a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:0:"";s:5:"color";s:7:"#999999";}s:5:"class";s:11:"hidden last";s:4:"type";s:10:"typography";}i:7;a:5:{s:4:"name";s:14:"Custom Favicon";s:4:"desc";s:113:"Upload a 16px x 16px <a href=''http://www.faviconr.com/''>ico image</a> that will represent your website''s favicon.";s:2:"id";s:18:"woo_custom_favicon";s:3:"std";s:0:"";s:4:"type";s:6:"upload";}i:8;a:5:{s:4:"name";s:13:"Tracking Code";s:4:"desc";s:117:"Paste your Google Analytics (or other) tracking code here. This will be added into the footer template of your theme.";s:2:"id";s:20:"woo_google_analytics";s:3:"std";s:0:"";s:4:"type";s:8:"textarea";}i:9;a:5:{s:4:"name";s:7:"RSS URL";s:4:"desc";s:51:"Enter your preferred RSS URL. (Feedburner or other)";s:2:"id";s:12:"woo_feed_url";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:10;a:5:{s:4:"name";s:23:"E-Mail Subscription URL";s:4:"desc";s:67:"Enter your preferred E-mail subscription URL. (Feedburner or other)";s:2:"id";s:19:"woo_subscribe_email";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:11;a:5:{s:4:"name";s:19:"Contact Form E-Mail";s:4:"desc";s:156:"Enter your E-mail address to use on the Contact Form Page Template. Add the contact form by adding a new page and selecting ''Contact Form'' as page template.";s:2:"id";s:21:"woo_contactform_email";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:12;a:5:{s:4:"name";s:10:"Custom CSS";s:4:"desc";s:62:"Quickly add some CSS to your theme by adding it to this block.";s:2:"id";s:14:"woo_custom_css";s:3:"std";s:0:"";s:4:"type";s:8:"textarea";}i:13;a:5:{s:4:"name";s:18:"Post/Page Comments";s:4:"desc";s:69:"Select if you want to enable/disable comments on posts and/or pages. ";s:2:"id";s:12:"woo_comments";s:4:"type";s:7:"select2";s:7:"options";a:4:{s:4:"post";s:10:"Posts Only";s:4:"page";s:10:"Pages Only";s:4:"both";s:13:"Pages / Posts";s:4:"none";s:4:"None";}}i:14;a:5:{s:4:"name";s:12:"Post Content";s:4:"desc";s:69:"Select if you want to show the full content or the excerpt on posts. ";s:2:"id";s:16:"woo_post_content";s:4:"type";s:7:"select2";s:7:"options";a:2:{s:7:"excerpt";s:11:"The Excerpt";s:7:"content";s:12:"Full Content";}}i:15;a:5:{s:4:"name";s:15:"Post Author Box";s:4:"desc";s:157:"This will enable the post author box on the single posts page. Edit description in <a href=''http://localhost/originalhouse/wp-admin/profile.php''>Profile</a>.";s:2:"id";s:15:"woo_post_author";s:3:"std";s:4:"true";s:4:
(325, 0, 'widget_dc_jqaccordion_widget', 'a:3:{i:2;a:0:{}i:3;a:14:{s:5:"title";s:0:"";s:8:"nav_menu";i:0;s:9:"autoClose";N;s:9:"menuClose";N;s:9:"saveState";N;s:10:"autoExpand";N;s:11:"disableLink";N;s:12:"classDisable";N;s:9:"classMenu";N;s:9:"showCount";N;s:5:"event";s:0:"";s:4:"skin";N;s:5:"speed";N;s:10:"hoverDelay";N;}s:12:"_multiwidget";i:1;}', 'yes'),
(326, 0, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(174, 0, 'woo_themename', 'Original House', 'yes'),
(175, 0, 'woo_shortname', 'woo', 'yes'),
(176, 0, 'woo_manual', '', 'yes'),
(177, 0, 'woo_custom_template', 'a:5:{i:0;a:4:{s:4:"name";s:5:"image";s:5:"label";s:5:"Image";s:4:"type";s:6:"upload";s:4:"desc";s:32:"Upload an image or enter an URL.";}i:1;a:6:{s:4:"name";s:16:"_image_alignment";s:3:"std";s:6:"Center";s:5:"label";s:20:"Image Crop Alignment";s:4:"type";s:7:"select2";s:4:"desc";s:39:"Select crop alignment for resized image";s:7:"options";a:5:{s:1:"c";s:6:"Center";s:1:"t";s:3:"Top";s:1:"b";s:6:"Bottom";s:1:"l";s:4:"Left";s:1:"r";s:5:"Right";}}i:2;a:6:{s:4:"name";s:7:"_layout";s:3:"std";s:6:"normal";s:5:"label";s:6:"Layout";s:4:"type";s:6:"images";s:4:"desc";s:54:"Select the layout you want on this specific post/page.";s:7:"options";a:4:{s:14:"layout-default";s:94:"http://localhost/originalhouse/wp-content/themes/originalhouse/functions/images/layout-off.png";s:11:"layout-full";s:86:"http://localhost/originalhouse/wp-content/themes/originalhouse/functions/images/1c.png";s:19:"layout-left-content";s:87:"http://localhost/originalhouse/wp-content/themes/originalhouse/functions/images/2cl.png";s:20:"layout-right-content";s:87:"http://localhost/originalhouse/wp-content/themes/originalhouse/functions/images/2cr.png";}}i:3;a:4:{s:4:"name";s:5:"image";s:5:"label";s:11:"Slide Image";s:4:"type";s:6:"upload";s:4:"desc";s:51:"Upload an image or enter an URL to your slide image";}i:4;a:4:{s:4:"name";s:3:"url";s:5:"label";s:3:"URL";s:4:"type";s:4:"text";s:4:"desc";s:80:"Enter URL if you want to add a link to the uploaded image and title. (optional) ";}}', 'yes'),
(367, 0, 'youtube_media_username', '<? echo get_option(\\''youtube_media_username\\''); ?>', 'yes'),
(457, 0, 'wpsc_version', '3.8.4', 'yes'),
(369, 0, 'tubepress-version', '200', 'yes'),
(178, 0, 'woo_alt_stylesheet', 'default.css', 'yes'),
(179, 0, 'woo_logo', 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo.gif', 'yes'),
(180, 0, 'woo_texttitle', 'false', 'yes'),
(181, 0, 'woo_font_site_title', 'a:5:{s:4:"size";s:2:"40";s:4:"unit";s:2:"px";s:4:"face";s:43:"Calibri, Candara, Segoe, Optima, sans-serif";s:5:"style";s:6:"normal";s:5:"color";s:7:"#FFFFFF";}', 'yes'),
(182, 0, 'woo_tagline', 'false', 'yes'),
(183, 0, 'woo_font_tagline', 'a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}', 'yes'),
(184, 0, 'woo_custom_favicon', '', 'yes'),
(185, 0, 'woo_google_analytics', '', 'yes'),
(186, 0, 'woo_feed_url', '', 'yes'),
(187, 0, 'woo_subscribe_email', '', 'yes'),
(188, 0, 'woo_contactform_email', '', 'yes'),
(189, 0, 'woo_custom_css', '', 'yes'),
(190, 0, 'woo_comments', 'post', 'yes'),
(191, 0, 'woo_post_content', 'excerpt', 'yes'),
(192, 0, 'woo_post_author', 'false', 'yes'),
(193, 0, 'woo_breadcrumbs_show', 'false', 'yes'),
(194, 0, 'woo_pagination_type', 'paginated_links', 'yes'),
(195, 0, 'woo_body_color', '#000000', 'yes'),
(196, 0, 'woo_body_img', 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondonuevaweb.jpg', 'yes'),
(197, 0, 'woo_body_repeat', 'no-repeat', 'yes'),
(198, 0, 'woo_body_pos', 'center center', 'yes'),
(199, 0, 'woo_link_color', '#7f7875', 'yes'),
(200, 0, 'woo_link_hover_color', '#fff', 'yes'),
(201, 0, 'woo_button_color', '#7f7875', 'yes'),
(202, 0, 'woo_typography', 'true', 'yes'),
(203, 0, 'woo_font_body', 'a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}', 'yes'),
(204, 0, 'woo_font_nav', 'a:5:{s:4:"size";s:2:"20";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#555555";}', 'yes'),
(205, 0, 'woo_font_post_title', 'a:5:{s:4:"size";s:2:"24";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:4:"bold";s:5:"color";s:7:"#222222";}', 'yes'),
(206, 0, 'woo_font_post_meta', 'a:5:{s:4:"size";s:2:"12";s:4:"unit";s:2:"px";s:4:"face";s:10:"Droid Sans";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}', 'yes'),
(207, 0, 'woo_font_post_entry', 'a:5:{s:4:"size";s:2:"16";s:4:"unit";s:2:"px";s:4:"face";s:10:"Droid Sans";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}', 'yes'),
(208, 0, 'woo_font_widget_titles', 'a:5:{s:4:"size";s:2:"16";s:4:"unit";s:2:"px";s:4:"face";s:20:"Terminal Dosis Light";s:5:"style";s:4:"bold";s:5:"color";s:7:"#555555";}', 'yes'),
(209, 0, 'woo_home_intro', 'Si tu casa se parece a todas, nosotros no tenemos la culpa', 'yes'),
(210, 0, 'woo_slider', 'false', 'yes'),
(211, 0, 'woo_slider_entries', '19', 'yes'),
(212, 0, 'woo_slider_content', 'false', 'yes'),
(213, 0, 'woo_slider_speed', '500', 'yes'),
(214, 0, 'woo_slider_auto', 'true', 'yes'),
(215, 0, 'woo_slider_interval', '6000', 'yes'),
(216, 0, 'woo_site_layout', 'layout-full', 'yes'),
(217, 0, 'woo_donate_btn', 'false', 'yes'),
(218, 0, 'woo_donate_meter', 'false', 'yes'),
(219, 0, 'woo_donate_raised', '0', 'yes'),
(220, 0, 'woo_donate_target', '0', 'yes'),
(221, 0, 'woo_donate_currency', 'USD', 'yes'),
(222, 0, 'woo_donate_currency_symbol', '$', 'yes'),
(223, 0, 'woo_donate_title', '', 'yes'),
(224, 0, 'woo_donate_desc', '', 'yes'),
(225, 0, 'woo_donate_meter_large', 'true', 'yes'),
(226, 0, 'woo_donate_btn_text', 'Donate Now!', 'yes'),
(227, 0, 'woo_donate_customlink', '', 'yes'),
(228, 0, 'woo_donate_paypal', '', 'yes'),
(229, 0, 'woo_donate_amount', '', 'yes'),
(230, 0, 'woo_donate_more', 'Select a page:', 'yes'),
(231, 0, 'woo_post_image_support', 'true', 'yes'),
(232, 0, 'woo_pis_resize', 'true', 'yes'),
(233, 0, 'woo_pis_hard_crop', 'true', 'yes'),
(234, 0, 'woo_resize', 'true', 'yes'),
(235, 0, 'woo_auto_img', 'false', 'yes'),
(236, 0, 'woo_thumb_w', '160', 'yes'),
(237, 0, 'woo_thumb_h', '160', 'yes'),
(238, 0, 'woo_thumb_align', 'alignleft', 'yes'),
(239, 0, 'woo_thumb_single', 'true', 'yes'),
(240, 0, 'woo_single_w', '200', 'yes'),
(241, 0, 'woo_single_h', '200', 'yes'),
(242, 0, 'woo_thumb_single_align', 'alignright', 'yes'),
(243, 0, 'woo_rss_thumb', 'false', 'yes'),
(244, 0, 'woo_footer_social', 'true', 'yes'),
(245, 0, 'woo_footer_aff_link', '', 'yes'),
(246, 0, 'woo_footer_left', 'true', 'yes'),
(247, 0, 'woo_footer_left_text', '', 'yes'),
(248, 0, 'woo_footer_right', 'true', 'yes'),
(249, 0, 'woo_footer_right_text', '', 'yes'),
(250, 0, 'woo_connect', 'true', 'yes'),
(251, 0, 'woo_connect_title', '', 'yes'),
(252, 0, 'woo_connect_content', '', 'yes'),
(253, 0, 'woo_connect_newsletter_id', '', 'yes'),
(254, 0, 'woo_connect_rss', 'true', 'yes'),
(255, 0, 'woo_connect_twitter', 'http://twitter.com/#!/originalhousesl', 'yes'),
(256, 0, 'woo_connect_facebook', 'http://www.facebook.com/pages/ORIGINAL-HOUSE-Mobiliario-y-decoracion/161365001363', 'yes'),
(257, 0, 'woo_connect_youtube', '', 'yes'),
(258, 0, 'woo_connect_flickr', '', 'yes'),
(259, 0, 'woo_connect_linkedin', '', 'yes'),
(260, 0, 'woo_connect_delicious', '', 'yes'),
(261, 0, 'woo_connect_related', 'false', 'yes'),
(377, 0, 'tubepress-playlistValue', 'D2B04665B213AE35', 'yes'),
(262, 0, 'woo_settings_encode', 'PHVsPjxsaT48c3Ryb25nPndvb19hbHRfc3R5bGVzaGVldDwvc3Ryb25nPiAtIGRlZmF1bHQuY3NzPC9saT48bGk+PHN0cm9uZz53b29fbG9nbzwvc3Ryb25nPiAtIGh0dHA6Ly9sb2NhbGhvc3Qvb3JpZ2luYWxob3VzZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wNi9sb2dvLXJvam8uZ2lmPC9saT48bGk+PHN0cm9uZz53b29fdGV4dHRpdGxlPC9zdHJvbmc+IC0gZmFsc2U8L2xpPjxsaT48c3Ryb25nPndvb19mb250X3NpdGVfdGl0bGU8L3N0cm9uZz4gLSBBcnJheTwvbGk+PGxpPjxzdHJvbmc+d29vX3RhZ2xpbmU8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX2ZvbnRfdGFnbGluZTwvc3Ryb25nPiAtIEFycmF5PC9saT48bGk+PHN0cm9uZz53b29fY3VzdG9tX2Zhdmljb248L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19nb29nbGVfYW5hbHl0aWNzPC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fZmVlZF91cmw8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19zdWJzY3JpYmVfZW1haWw8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19jb250YWN0Zm9ybV9lbWFpbDwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX2N1c3RvbV9jc3M8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19jb21tZW50czwvc3Ryb25nPiAtIHBvc3Q8L2xpPjxsaT48c3Ryb25nPndvb19wb3N0X2NvbnRlbnQ8L3N0cm9uZz4gLSBleGNlcnB0PC9saT48bGk+PHN0cm9uZz53b29fcG9zdF9hdXRob3I8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX2JyZWFkY3J1bWJzX3Nob3c8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX3RpdGxlX3Nob3c8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX3BhZ2luYXRpb25fdHlwZTwvc3Ryb25nPiAtIHBhZ2luYXRlZF9saW5rczwvbGk+PGxpPjxzdHJvbmc+d29vX2JvZHlfY29sb3I8L3N0cm9uZz4gLSAjMDAwMDAwPC9saT48bGk+PHN0cm9uZz53b29fYm9keV9pbWc8L3N0cm9uZz4gLSBodHRwOi8vbG9jYWxob3N0L29yaWdpbmFsaG91c2Uvd3AtY29udGVudC91cGxvYWRzLzIwMTEvMDYvZm9uZG9udWV2YXdlYi5qcGc8L2xpPjxsaT48c3Ryb25nPndvb19ib2R5X3JlcGVhdDwvc3Ryb25nPiAtIG5vLXJlcGVhdDwvbGk+PGxpPjxzdHJvbmc+d29vX2JvZHlfcG9zPC9zdHJvbmc+IC0gY2VudGVyIGNlbnRlcjwvbGk+PGxpPjxzdHJvbmc+d29vX2xpbmtfY29sb3I8L3N0cm9uZz4gLSAjN2Y3ODc1PC9saT48bGk+PHN0cm9uZz53b29fbGlua19ob3Zlcl9jb2xvcjwvc3Ryb25nPiAtICNmZmY8L2xpPjxsaT48c3Ryb25nPndvb19idXR0b25fY29sb3I8L3N0cm9uZz4gLSAjN2Y3ODc1PC9saT48bGk+PHN0cm9uZz53b29fdHlwb2dyYXBoeTwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19mb250X2JvZHk8L3N0cm9uZz4gLSBBcnJheTwvbGk+PGxpPjxzdHJvbmc+d29vX2ZvbnRfbmF2PC9zdHJvbmc+IC0gQXJyYXk8L2xpPjxsaT48c3Ryb25nPndvb19mb250X3Bvc3RfdGl0bGU8L3N0cm9uZz4gLSBBcnJheTwvbGk+PGxpPjxzdHJvbmc+d29vX2ZvbnRfcG9zdF9tZXRhPC9zdHJvbmc+IC0gQXJyYXk8L2xpPjxsaT48c3Ryb25nPndvb19mb250X3Bvc3RfZW50cnk8L3N0cm9uZz4gLSBBcnJheTwvbGk+PGxpPjxzdHJvbmc+d29vX2ZvbnRfd2lkZ2V0X3RpdGxlczwvc3Ryb25nPiAtIEFycmF5PC9saT48bGk+PHN0cm9uZz53b29faG9tZV9pbnRybzwvc3Ryb25nPiAtIFNpIHR1IGNhc2Egc2UgcGFyZWNlIGEgdG9kYXMsIG5vc290cm9zIG5vIHRlbmVtb3MgbGEgY3VscGE8L2xpPjxsaT48c3Ryb25nPndvb19zbGlkZXI8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX3NsaWRlcl9lbnRyaWVzPC9zdHJvbmc+IC0gMTk8L2xpPjxsaT48c3Ryb25nPndvb19zbGlkZXJfY29udGVudDwvc3Ryb25nPiAtIGZhbHNlPC9saT48bGk+PHN0cm9uZz53b29fc2xpZGVyX3NwZWVkPC9zdHJvbmc+IC0gNTAwPC9saT48bGk+PHN0cm9uZz53b29fc2xpZGVyX2F1dG88L3N0cm9uZz4gLSB0cnVlPC9saT48bGk+PHN0cm9uZz53b29fc2xpZGVyX2ludGVydmFsPC9zdHJvbmc+IC0gNjAwMDwvbGk+PGxpPjxzdHJvbmc+d29vX3NpdGVfbGF5b3V0PC9zdHJvbmc+IC0gbGF5b3V0LWZ1bGw8L2xpPjxsaT48c3Ryb25nPndvb19wb3N0X2ltYWdlX3N1cHBvcnQ8L3N0cm9uZz4gLSB0cnVlPC9saT48bGk+PHN0cm9uZz53b29fcGlzX3Jlc2l6ZTwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19waXNfaGFyZF9jcm9wPC9zdHJvbmc+IC0gdHJ1ZTwvbGk+PGxpPjxzdHJvbmc+d29vX3Jlc2l6ZTwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19hdXRvX2ltZzwvc3Ryb25nPiAtIGZhbHNlPC9saT48bGk+PHN0cm9uZz53b29fdGh1bWJfdzwvc3Ryb25nPiAtIDE2MDwvbGk+PGxpPjxzdHJvbmc+d29vX3RodW1iX2g8L3N0cm9uZz4gLSAxNjA8L2xpPjxsaT48c3Ryb25nPndvb190aHVtYl9hbGlnbjwvc3Ryb25nPiAtIGFsaWdubGVmdDwvbGk+PGxpPjxzdHJvbmc+d29vX3RodW1iX3NpbmdsZTwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19zaW5nbGVfdzwvc3Ryb25nPiAtIDIwMDwvbGk+PGxpPjxzdHJvbmc+d29vX3NpbmdsZV9oPC9zdHJvbmc+IC0gMjAwPC9saT48bGk+PHN0cm9uZz53b29fdGh1bWJfc2luZ2xlX2FsaWduPC9zdHJvbmc+IC0gYWxpZ25yaWdodDwvbGk+PGxpPjxzdHJvbmc+d29vX3Jzc190aHVtYjwvc3Ryb25nPiAtIGZhbHNlPC9saT48bGk+PHN0cm9uZz53b29fZm9vdGVyX3NvY2lhbDwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19mb290ZXJfYWZmX2xpbms8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19mb290ZXJfbGVmdDwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19mb290ZXJfbGVmdF90ZXh0PC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fZm9vdGVyX3JpZ2h0PC9zdHJvbmc+IC0gdH
(449, 0, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1309810718', 'yes'),
(450, 0, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'a:40:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";s:4:"2477";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"1672";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"1488";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"1249";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"1237";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1202";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:3:"881";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:3:"809";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:3:"778";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:3:"758";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:3:"739";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:3:"686";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:3:"675";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:3:"600";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"530";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:3:"517";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"445";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"443";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"439";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:3:"430";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:3:"428";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:3:"400";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:3:"389";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"379";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"373";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"355";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"354";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"354";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"350";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"345";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"345";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"340";}s:5:"flash";a:3:{s:4:"name";s:5:"flash";s:4:"slug";s:5:"flash";s:5:"count";s:3:"328";}s:4:"tags";a:3:{s:4:"name";s:4:"tags";s:4:"slug";s:4:"tags";s:5:"count";s:3:"318";}s:5:"stats";a:3:{s:4:"name";s:5:"stats";s:4:"slug";s:5:"stats";s:5:"count";s:3:"312";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"309";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"301";}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";s:3:"289";}s:7:"comment";a:3:{s:4:"name";s:7:"comment";s:4:"slug";s:7:"comment";s:5:"count";s:3:"289";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"283";}}', 'yes'),
(448, 0, '_site_transient_update_core', 'O:8:"stdClass":3:{s:7:"updates";a:2:{i:0;O:8:"stdClass":7:{s:8:"response";s:6:"latest";s:3:"url";s:24:"http://es.wordpress.org/";s:7:"package";s:49:"http://es.wordpress.org/wordpress-3.1.4-es_ES.zip";s:7:"current";s:5:"3.1.4";s:6:"locale";s:5:"es_ES";s:11:"php_version";s:3:"4.3";s:13:"mysql_version";s:5:"4.1.2";}i:1;O:8:"stdClass":7:{s:8:"response";s:6:"latest";s:3:"url";s:30:"http://wordpress.org/download/";s:7:"package";s:40:"http://wordpress.org/wordpress-3.1.4.zip";s:7:"current";s:5:"3.1.4";s:6:"locale";s:5:"en_US";s:11:"php_version";s:3:"4.3";s:13:"mysql_version";s:5:"4.1.2";}}s:12:"last_checked";i:1309793459;s:15:"version_checked";s:5:"3.1.4";}', 'yes'),
(370, 0, 'tubepress-playerColor', '999999', 'yes'),
(371, 0, 'tubepress-playerHighlight', '000000', 'yes'),
(372, 0, 'tubepress-mode', 'user', 'yes'),
(373, 0, 'tubepress-dateFormat', 'M j, Y', 'yes'),
(375, 0, 'tubepress-videoBlacklist', '', 'yes'),
(376, 0, 'tubepress-favoritesValue', 'OriginalHouseDecor', 'yes');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(268, 0, 'woo_framework_template', 'a:20:{i:0;a:3:{s:4:"name";s:18:"Framework Settings";s:4:"icon";s:7:"general";s:4:"type";s:7:"heading";}i:1;a:6:{s:4:"name";s:21:"Super User (username)";s:4:"desc";s:251:"Enter your <strong>username</strong> to hide the Framework Settings and Update Framework from other users. Can be reset from the <a href=''http://localhost/originalhouse/wp-admin/options.php''>WP options page</a> under <em>framework_woo_super_user</em>.";s:2:"id";s:24:"framework_woo_super_user";s:3:"std";s:0:"";s:5:"class";s:4:"text";s:4:"type";s:4:"text";}i:2;a:5:{s:4:"name";s:21:"Disable SEO Menu Item";s:4:"desc";s:61:"Disable the <strong>SEO</strong> menu item in the theme menu.";s:2:"id";s:25:"framework_woo_seo_disable";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:3;a:5:{s:4:"name";s:33:"Disable Sidebar Manager Menu Item";s:4:"desc";s:73:"Disable the <strong>Sidebar Manager</strong> menu item in the theme menu.";s:2:"id";s:25:"framework_woo_sbm_disable";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:4;a:5:{s:4:"name";s:28:"Disable Buy Themes Menu Item";s:4:"desc";s:68:"Disable the <strong>Buy Themes</strong> menu item in the theme menu.";s:2:"id";s:32:"framework_woo_buy_themes_disable";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:5;a:5:{s:4:"name";s:24:"Enable Custom Navigation";s:4:"desc";s:187:"Enable the old <strong>Custom Navigation</strong> menu item. Try to use <a href=''http://localhost/originalhouse/wp-admin/nav-menus.php''>WP Menus</a> instead, as this function is outdated.";s:2:"id";s:20:"framework_woo_woonav";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:6;a:5:{s:4:"name";s:25:"Theme Update Notification";s:4:"desc";s:101:"This will enable notices on your theme options page that there is an update available for your theme.";s:2:"id";s:35:"framework_woo_theme_version_checker";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:7;a:5:{s:4:"name";s:29:"Disable Shortcodes Stylesheet";s:4:"desc";s:76:"This disables the output of shortcodes.css in the HEAD section of your site.";s:2:"id";s:32:"framework_woo_disable_shortcodes";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:8;a:5:{s:4:"name";s:26:"Remove Generator Meta Tags";s:4:"desc";s:81:"This disables the output of generator meta tags in the HEAD section of your site.";s:2:"id";s:31:"framework_woo_disable_generator";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:9;a:5:{s:4:"name";s:17:"Image Placeholder";s:4:"desc";s:151:"Set a default image placeholder for your thumbnails. Use this if you want a default image to be shown if you haven''t added a custom image to your post.";s:2:"id";s:27:"framework_woo_default_image";s:3:"std";s:0:"";s:4:"type";s:6:"upload";}i:10;a:3:{s:4:"name";s:8:"Branding";s:4:"icon";s:4:"misc";s:4:"type";s:7:"heading";}i:11;a:5:{s:4:"name";s:20:"Options panel header";s:4:"desc";s:50:"Change the header image for the WooThemes Backend.";s:2:"id";s:34:"framework_woo_backend_header_image";s:3:"std";s:0:"";s:4:"type";s:6:"upload";}i:12;a:5:{s:4:"name";s:18:"Options panel icon";s:4:"desc";s:56:"Change the icon image for the WordPress backend sidebar.";s:2:"id";s:26:"framework_woo_backend_icon";s:3:"std";s:0:"";s:4:"type";s:6:"upload";}i:13;a:5:{s:4:"name";s:20:"WordPress login logo";s:4:"desc";s:51:"Change the logo image for the WordPress login page.";s:2:"id";s:31:"framework_woo_custom_login_logo";s:3:"std";s:0:"";s:4:"type";s:6:"upload";}i:14;a:3:{s:4:"name";s:15:"Import / Export";s:4:"icon";s:4:"misc";s:4:"type";s:7:"heading";}i:15;a:5:{s:4:"name";s:14:"Import Options";s:4:"desc";s:59:"Import the options from another installation of this theme.";s:2:"id";s:28:"framework_woo_import_options";s:3:"std";s:0:"";s:4:"type";s:8:"textarea";}i:16;a:5:{s:4:"name";s:14:"Export Options";s:4:"desc";s:94:"Export the options to another installation of this theme, or to keep a backup of your options.";s:2:"id";s:28:"framework_woo_export_options";s:3:"std";s:5416:"YTo3Mzp7czoxOToic2JtX3dvb19zYm1fb3B0aW9ucyI7czo3MzoiYToyOntzOjg6InNpZGViYXJzIjthOjA6e31zOjg6InNldHRpbmdzIjthOjE6e3M6NzoiaW5mb2JveCI7czo0OiJzaG93Ijt9fSI7czoxODoid29vX2FsdF9zdHlsZXNoZWV0IjtzOjExOiJkZWZhdW
(267, 0, 'theme_mods_originalhouse', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:4:{s:12:"primary-menu";i:10;s:14:"secondary-menu";i:8;s:8:"top-menu";i:0;s:11:"footer-menu";i:0;}}', 'yes'),
(456, 0, 'wpsc_purchaselogs_fixed', '1', 'yes'),
(269, 0, 'sbm_woo_sbm_options', 'a:2:{s:8:"sidebars";a:0:{}s:8:"settings";a:1:{s:7:"infobox";s:4:"show";}}', 'yes'),
(454, 0, '_transient_timeout_wpsc_theme_path', '1309843276', 'no'),
(455, 0, '_transient_wpsc_theme_path', 'D:\\Trabajo\\OriginalHouse\\trunk\\src\\wp-content\\plugins\\wp-e-commerce/wpsc-theme/', 'no'),
(270, 0, 'framework_woo_super_user', 'rodax', 'yes'),
(271, 0, 'framework_woo_seo_disable', 'false', 'yes'),
(272, 0, 'framework_woo_sbm_disable', 'true', 'yes'),
(273, 0, 'framework_woo_buy_themes_disable', 'true', 'yes'),
(274, 0, 'framework_woo_woonav', 'false', 'yes'),
(275, 0, 'framework_woo_theme_version_checker', 'true', 'yes'),
(276, 0, 'framework_woo_disable_shortcodes', 'false', 'yes'),
(277, 0, 'framework_woo_disable_generator', 'false', 'yes'),
(278, 0, 'framework_woo_default_image', '', 'yes'),
(279, 0, 'framework_woo_backend_header_image', '', 'yes'),
(280, 0, 'framework_woo_backend_icon', '', 'yes'),
(281, 0, 'framework_woo_custom_login_logo', '', 'yes'),
(285, 0, 'woo_seo_template', 'a:31:{i:0;a:3:{s:4:"name";s:16:"General Settings";s:4:"icon";s:7:"general";s:4:"type";s:7:"heading";}i:1;a:3:{s:4:"name";s:11:"Please Read";s:4:"type";s:4:"info";s:3:"std";s:399:"Welcome to the WooSEO feature. <br /><small>Here we help you take control of your search engine readiness with some in-built theme options. Our themes do however support some of WordPress.org''s most commonly used SEO plugins - <strong>All-in-One SEO Pack</strong>, <strong>Headspace 2</strong> and <strong>WordPress SEO By Yoast</strong>. Use the checkbox below to use 3rd party plugin data.</small>";}i:2;a:5:{s:4:"name";s:25:"Use 3rd Party Plugin Data";s:4:"desc";s:198:"Meta data added to <strong>custom fields in posts and pages</strong> will be extracted and used where applicable. This typically does not include Homepages and Archives, and only Singular templates.";s:2:"id";s:28:"seo_woo_use_third_party_data";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:3;a:5:{s:4:"name";s:22:"Hide SEO custom fields";s:4:"desc";s:82:"Check this box to hide the input fields created in the post and page edit screens.";s:2:"id";s:19:"seo_woo_hide_fields";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:4;a:3:{s:4:"name";s:10:"Page Title";s:4:"icon";s:4:"misc";s:4:"type";s:7:"heading";}i:5;a:5:{s:4:"name";s:9:"Separator";s:4:"desc";s:54:"Define a new separator character for your page titles.";s:2:"id";s:17:"seo_woo_seperator";s:3:"std";s:1:"|";s:4:"type";s:4:"text";}i:6;a:5:{s:4:"name";s:10:"Blog Title";s:4:"desc";s:90:"NOTE: This is the same setting as per the SETTINGS > GENERAL tab in the WordPress backend.";s:2:"id";s:8:"blogname";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:7;a:5:{s:4:"name";s:16:"Blog Description";s:4:"desc";s:90:"NOTE: This is the same setting as per the SETTINGS > GENERAL tab in the WordPress backend.";s:2:"id";s:15:"blogdescription";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:8;a:6:{s:4:"name";s:18:"Enable woo_title()";s:4:"desc";s:153:"woo_title() makes use of WordPress''s built in wp_title() function to control the output for your page titles. It''s also recommended for use with plugins.";s:2:"id";s:16:"seo_woo_wp_title";s:3:"std";s:5:"false";s:5:"class";s:9:"collapsed";s:4:"type";s:8:"checkbox";}i:9;a:6:{s:4:"name";s:21:"Disable Custom Titles";s:4:"desc";s:130:"If you prefer to have uniform titles across you theme. Alternatively they will be generated from custom fields and/or plugin data.";s:2:"id";s:29:"seo_woo_wp_custom_field_title";s:3:"std";s:5:"false";s:5:"class";s:6:"hidden";s:4:"type";s:8:"checkbox";}i:10;a:6:{s:4:"name";s:14:"Paged Variable";s:4:"desc";s:64:"The name variable that will appear then paging through archives.";s:2:"id";s:17:"seo_woo_paged_var";s:3:"std";s:4:"Page";s:5:"class";s:6:"hidden";s:4:"type";s:4:"text";}i:11;a:7:{s:4:"name";s:23:"Paged Variable Position";s:4:"desc";s:57:"Change the position where the paged variable will appear.";s:2:"id";s:21:"seo_woo_paged_var_pos";s:3:"std";s:6:"before";s:5:"class";s:6:"hidden";s:7:"options";a:2:{s:6:"before";s:6:"Before";s:5:"after";s:5:"After";}s:4:"type";s:7:"select2";}i:12;a:7:{s:4:"name";s:21:"Homepage Title Layout";s:4:"desc";s:65:"Define the order the title, description and meta data appears in.";s:2:"id";s:19:"seo_woo_home_layout";s:3:"std";s:0:"";s:5:"class";s:6:"hidden";s:7:"options";a:3:{s:1:"a";s:28:"Blog title; blog description";s:1:"b";s:10:"Blog title";s:1:"c";s:16:"Blog description";}s:4:"type";s:7:"select2";}i:13;a:7:{s:4:"name";s:19:"Single Title Layout";s:4:"desc";s:65:"Define the order the title, description and meta data appears in.";s:2:"id";s:21:"seo_woo_single_layout";s:3:"std";s:0:"";s:5:"class";s:6:"hidden";s:7:"options";a:5:{s:1:"a";s:22:"Page title; Blog title";s:1:"b";s:11:"Page title;";s:1:"c";s:23:"Blog title; Page title;";s:1:"d";s:28:"Page title; Blog description";s:1:"e";s:40:"Blog title; Page title; Blog description";}s:4:"type";s:7:"select2";}i:14;a:7:{s:4:"name";s:17:"Page Title Layout";s:4:"desc";s:65:"Define the order the title, description and meta data appears in.";s:2:"id";s:19:"seo_woo_page_layout"
(283, 0, 'framework_woo_admin_bar_disable', 'false', 'yes'),
(284, 0, 'framework_woo_admin_bar_enhancements', 'true', 'yes'),
(286, 0, 'seo_woo_use_third_party_data', 'false', 'yes'),
(287, 0, 'seo_woo_hide_fields', 'false', 'yes'),
(288, 0, 'seo_woo_seperator', '|', 'yes'),
(289, 0, 'seo_woo_wp_title', 'false', 'yes'),
(290, 0, 'seo_woo_wp_custom_field_title', 'false', 'yes'),
(291, 0, 'seo_woo_paged_var', 'Page', 'yes'),
(292, 0, 'seo_woo_paged_var_pos', 'before', 'yes'),
(293, 0, 'seo_woo_home_layout', 'a', 'yes'),
(294, 0, 'seo_woo_single_layout', 'a', 'yes'),
(295, 0, 'seo_woo_page_layout', 'a', 'yes'),
(296, 0, 'seo_woo_archive_layout', 'a', 'yes'),
(297, 0, 'seo_woo_meta_indexing_category', 'true', 'yes'),
(298, 0, 'seo_woo_meta_indexing_tag', 'false', 'yes'),
(299, 0, 'seo_woo_meta_indexing_author', 'false', 'yes'),
(300, 0, 'seo_woo_meta_indexing_search', 'false', 'yes'),
(301, 0, 'seo_woo_meta_indexing_date', 'false', 'yes'),
(302, 0, 'seo_woo_meta_single_follow', 'false', 'yes'),
(303, 0, 'seo_woo_meta_home_desc', 'a', 'yes'),
(304, 0, 'seo_woo_meta_home_desc_custom', '', 'yes'),
(305, 0, 'seo_woo_meta_single_desc', 'a', 'yes'),
(306, 0, 'seo_woo_meta_single_desc_sitewide', 'false', 'yes'),
(307, 0, 'seo_woo_meta_single_desc_custom', '', 'yes'),
(308, 0, 'seo_woo_meta_home_key', 'a', 'yes'),
(309, 0, 'seo_woo_meta_home_key_custom', '', 'yes'),
(310, 0, 'seo_woo_meta_single_key', 'a', 'yes'),
(311, 0, 'seo_woo_meta_single_key_sitewide', 'false', 'yes'),
(312, 0, 'seo_woo_meta_single_key_custom', '', 'yes'),
(320, 0, 'custpostback_db_version', '', 'yes'),
(321, 0, 'custBack_resultspp', '10', 'yes'),
(313, 0, 'woo_connect_blogger', 'http://elblogdeoriginalhouse.blogspot.com/', 'yes'),
(374, 0, 'tubepress-keyword', 'tubepress', 'yes'),
(314, 0, 'woo_custom_upload_tracking', 'a:0:{}', 'yes'),
(398, 0, 'tubepress-disableHttpTransportExtHttp', '', 'yes'),
(399, 0, 'tubepress-disableHttpTransportFopen', '', 'yes'),
(400, 0, 'tubepress-disableHttpTransportFsockOpen', '', 'yes'),
(401, 0, 'tubepress-disableHttpTransportStreams', '', 'yes'),
(402, 0, 'tubepress-randomize_thumbnails', '', 'yes'),
(403, 0, 'tubepress-relativeDates', '', 'yes'),
(404, 0, 'tubepress-paginationAbove', '', 'yes'),
(405, 0, 'tubepress-paginationBelow', '1', 'yes'),
(406, 0, 'tubepress-ajaxPagination', '', 'yes'),
(407, 0, 'tubepress-hqThumbs', '1', 'yes'),
(408, 0, 'tubepress-autoplay', '1', 'yes'),
(409, 0, 'tubepress-loop', '', 'yes'),
(410, 0, 'tubepress-showInfo', '', 'yes'),
(411, 0, 'tubepress-showRelated', '', 'yes'),
(412, 0, 'tubepress-fullscreen', '1', 'yes'),
(413, 0, 'tubepress-hd', '1', 'yes'),
(414, 0, 'tubepress-author', '', 'yes'),
(415, 0, 'tubepress-category', '', 'yes'),
(416, 0, 'tubepress-description', '', 'yes'),
(417, 0, 'tubepress-id', '', 'yes'),
(418, 0, 'tubepress-length', '', 'yes'),
(419, 0, 'tubepress-rating', '', 'yes'),
(420, 0, 'tubepress-ratings', '', 'yes'),
(421, 0, 'tubepress-tags', '', 'yes'),
(422, 0, 'tubepress-title', '', 'yes'),
(423, 0, 'tubepress-uploaded', '', 'yes'),
(424, 0, 'tubepress-url', '', 'yes'),
(425, 0, 'tubepress-views', '', 'yes'),
(426, 0, 'tubepress-likes', '', 'yes'),
(427, 0, 'tubepress-cacheEnabled', '', 'yes'),
(428, 0, 'tubepress-embeddableOnly', '1', 'yes'),
(429, 0, 'tubepress-descriptionLimit', '80', 'yes'),
(430, 0, 'tubepress-resultsPerPage', '12', 'yes'),
(431, 0, 'tubepress-thumbHeight', '196', 'yes'),
(432, 0, 'tubepress-thumbWidth', '240', 'yes'),
(433, 0, 'tubepress-embeddedHeight', '437', 'yes'),
(434, 0, 'tubepress-embeddedWidth', '531', 'yes'),
(435, 0, 'tubepress-resultCountCap', '300', 'yes'),
(436, 0, 'tubepress-cacheCleaningFactor', '20', 'yes'),
(437, 0, 'tubepress-cacheLifetimeSeconds', '3600', 'yes'),
(438, 0, 'tubepress-most_viewedValue', 'today', 'yes'),
(439, 0, 'tubepress-top_ratedValue', 'today', 'yes'),
(440, 0, 'tubepress-youtubeTopFavoritesValue', 'today', 'yes'),
(441, 0, 'tubepress-orderBy', 'published', 'yes'),
(442, 0, 'tubepress-playerLocation', 'shadowbox', 'yes'),
(443, 0, 'tubepress-filter_racy', 'moderate', 'yes'),
(444, 0, 'tubepress-playerImplementation', 'provider_based', 'yes'),
(445, 0, 'tubepress-theme', 'youtube', 'yes'),
(446, 0, 'woo_title_show', 'false', 'yes'),
(447, 0, '_transient_plugins_delete_result_1', '1', 'yes'),
(459, 0, 'wpsc_needs_update', '1', 'yes'),
(460, 0, 'show_subcatsprods_in_cat', '0', 'yes'),
(461, 0, 'wpsc_share_this', '0', 'yes'),
(462, 0, 'wpsc_crop_thumbnails', '0', 'yes'),
(463, 0, 'wpsc_products_per_page', '0', 'yes'),
(464, 0, 'wpsc_force_ssl', '0', 'yes'),
(465, 0, 'use_pagination', '0', 'yes'),
(466, 0, 'hide_name_link', '0', 'yes'),
(467, 0, 'wpsc_enable_comments', '0', 'yes'),
(468, 0, 'multi_add', '0', 'yes'),
(469, 0, 'hide_addtocart_button', '0', 'yes'),
(470, 0, 'wpsc_addtocart_or_buynow', '0', 'yes'),
(471, 0, 'show_thumbnails', '1', 'yes'),
(472, 0, 'show_thumbnails_thickbox', '1', 'yes'),
(473, 0, 'product_list_url', 'http://localhost/originalhouse/?page_id=127', 'yes'),
(474, 0, 'shopping_cart_url', 'http://localhost/originalhouse/?page_id=128', 'yes'),
(475, 0, 'checkout_url', 'http://localhost/originalhouse/?page_id=128', 'yes'),
(476, 0, 'transact_url', 'http://localhost/originalhouse/?page_id=129', 'yes'),
(477, 0, 'payment_gateway', '', 'yes'),
(478, 0, 'payment_gateway_names', 'a:6:{s:9:"chronopay";s:0:"";s:6:"google";s:0:"";s:28:"wpsc_merchant_paypal_express";s:0:"";s:24:"wpsc_merchant_paypal_pro";s:0:"";s:29:"wpsc_merchant_paypal_standard";s:0:"";i:0;b:0;}', 'yes'),
(479, 0, 'cart_location', '4', 'yes'),
(480, 0, 'currency_type', '201', 'yes'),
(481, 0, 'currency_sign_location', '1', 'yes'),
(482, 0, 'gst_rate', '1', 'yes'),
(483, 0, 'max_downloads', '1', 'yes'),
(484, 0, 'display_pnp', '1', 'yes'),
(485, 0, 'display_specials', '1', 'yes'),
(486, 0, 'do_not_use_shipping', '1', 'yes'),
(487, 0, 'postage_and_packaging', '0', 'yes'),
(488, 0, 'purch_log_email', '', 'yes'),
(489, 0, 'return_email', '', 'yes'),
(490, 0, 'terms_and_conditions', '', 'yes'),
(491, 0, 'google_key', 'none', 'yes'),
(492, 0, 'google_id', 'none', 'yes'),
(493, 0, 'default_brand', 'none', 'yes'),
(494, 0, 'wpsc_default_category', 'all', 'yes'),
(495, 0, 'product_view', 'default', 'yes'),
(496, 0, 'add_plustax', 'default', 'yes'),
(497, 0, 'nzshpcrt_first_load', '0', 'yes'),
(498, 0, 'show_categorybrands', '2', 'yes'),
(499, 0, 'paypal_business', '', 'yes'),
(500, 0, 'paypal_url', '', 'yes'),
(501, 0, 'paypal_ipn', '1', 'yes'),
(502, 0, 'paypal_multiple_business', '', 'yes'),
(503, 0, 'paypal_multiple_url', 'https://www.paypal.com/cgi-bin/webscr', 'yes'),
(504, 0, 'product_ratings', '0', 'yes'),
(505, 0, 'wpsc_email_receipt', 'Thank you for purchasing with %shop_name%, any items to be shipped will be processed as soon as possible, any items that can be downloaded can be downloaded using the links on this page.All prices include tax and postage and packaging where applicable.\n You ordered these items: \n %product_list%%total_shipping%%total_price%', 'yes'),
(506, 0, 'wpsc_email_admin', '%product_list%%total_shipping%%total_price%', 'yes'),
(507, 0, 'wpsc_selected_theme', 'default', 'yes'),
(508, 0, 'product_image_height', '148', 'yes'),
(509, 0, 'product_image_width', '148', 'yes'),
(510, 0, 'category_image_height', '148', 'yes'),
(511, 0, 'category_image_width', '148', 'yes'),
(512, 0, 'single_view_image_height', '148', 'yes'),
(513, 0, 'single_view_image_width', '148', 'yes'),
(514, 0, 'wpsc_gallery_image_height', '31', 'yes'),
(515, 0, 'wpsc_gallery_image_width', '31', 'yes'),
(516, 0, 'wpsc_thousands_separator', '.', 'yes'),
(517, 0, 'wpsc_decimal_separator', ',', 'yes'),
(518, 0, 'custom_gateway_options', 'a:1:{i:0;s:22:"wpsc_merchant_testmode";}', 'yes'),
(519, 0, 'wpsc_category_url_cache', 'a:0:{}', 'yes'),
(520, 0, 'wpec_taxes_inprice', 'inclusive', 'yes'),
(521, 0, 'wpec_taxes_product', 'replace', 'yes'),
(522, 0, 'wpec_taxes_logic', 'billing', 'yes'),
(523, 0, 'user_account_url', 'http://localhost/originalhouse/?page_id=130', 'yes'),
(525, 0, 'wpsc_checkout_form_sets', 'a:1:{i:0;s:22:"Default Checkout Forms";}', 'yes'),
(526, 0, 'wpsc_checkout_form_fields', 'a:13:{s:4:"Text";s:4:"text";s:13:"Email Address";s:5:"email";s:14:"Street Address";s:7:"address";s:4:"City";s:4:"city";s:7:"Country";s:7:"country";s:16:"Delivery Address";s:16:"delivery_address";s:13:"Delivery City";s:13:"delivery_city";s:16:"Delivery Country";s:16:"delivery_country";s:9:"Text Area";s:8:"textarea";s:7:"Heading";s:7:"heading";s:6:"Select";s:6:"select";s:12:"Radio Button";s:5:"radio";s:8:"Checkbox";s:8:"checkbox";}', 'yes'),
(527, 0, 'wpsc_checkout_unique_names', 'a:17:{i:0;s:16:"billingfirstname";i:1;s:15:"billinglastname";i:2;s:14:"billingaddress";i:3;s:11:"billingcity";i:4;s:12:"billingstate";i:5;s:14:"billingcountry";i:6;s:12:"billingemail";i:7;s:12:"billingphone";i:8;s:15:"billingpostcode";i:9;s:16:"delivertoafriend";i:10;s:17:"shippingfirstname";i:11;s:16:"shippinglastname";i:12;s:15:"shippingaddress";i:13;s:12:"shippingcity";i:14;s:13:"shippingstate";i:15;s:15:"shippingcountry";i:16;s:16:"shippingpostcode";}', 'yes'),
(528, 0, 'wpsc_australiapost_settings', 'a:1:{s:8:"services";a:5:{s:8:"STANDARD";b:1;s:7:"EXPRESS";b:1;s:3:"AIR";b:1;s:3:"SEA";b:1;s:3:"EPI";b:1;}}', 'yes'),
(575, 0, '_transient_timeout_wpsc_url_wpsc-default.css', '1309843670', 'no'),
(576, 0, '_transient_wpsc_url_wpsc-default.css', 'http://localhost/originalhouse/wp-content/plugins/wp-e-commerce/wpsc-theme/wpsc-default.css', 'no'),
(532, 0, 'widget_wpsc_shopping_cart', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(531, 0, 'widget_wpsc_product_tags', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(533, 0, 'widget_wpsc_donations', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(534, 0, 'widget_wpsc_product_specials', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(535, 0, 'widget_wpsc_latest_products', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(536, 0, 'widget_wpsc_price_range', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(537, 0, 'widget_wpsc_admin_menu', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(538, 0, 'widget_wpsc_categorisation', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(539, 0, 'wpsc_trackingid_subject', 'Product Tracking Email', 'yes'),
(540, 0, 'wpsc_trackingid_message', 'Track & Trace means you may track the progress of your parcel with our online parcel tracker, just login to our website and enter the following Tracking ID to view the status of your order.\n\nTracking ID: %trackid%\n', 'yes'),
(541, 0, 'wpsc_ignore_theme', '', 'yes'),
(545, 0, 'base_country', 'ES', 'yes'),
(547, 0, '_site_transient_update_plugins', 'O:8:"stdClass":3:{s:12:"last_checked";i:1309800430;s:7:"checked";a:12:{s:19:"akismet/akismet.php";s:5:"2.5.3";s:21:"catablog/catablog.php";s:7:"1.2.9.7";s:43:"custom-post-background/custom-post-back.php";s:7:"1.3.1.0";s:9:"hello.php";s:3:"1.6";s:56:"jquery-vertical-accordion-menu/dcwp_jquery_accordion.php";s:3:"2.6";s:51:"make-filename-lowercase/make-filename-lowercase.php";s:5:"1.0.0";s:57:"sanitize-spanish-filenames/sanitize-spanish-filenames.php";s:5:"1.0.2";s:20:"sticky_menu/init.php";s:3:"0.1";s:35:"thecartpress/TheCartPress.class.php";s:5:"1.0.9";s:23:"tubepress/tubepress.php";s:5:"2.2.0";s:34:"wp-e-commerce/wp-shopping-cart.php";s:5:"3.8.4";s:53:"wp-ecommerce-cvs-importer/wp-ecommerce-cvs-import.php";s:5:"1.0.4";}s:8:"response";a:0:{}}', 'yes'),
(548, 0, 'tcp_shopping_cart_page_id', '133', 'yes'),
(549, 0, 'tcp_checkout_page_id', '134', 'yes'),
(550, 0, 'tcp_plugins_data_shi_FreeTrans', 'a:1:{i:0;a:5:{s:6:"active";b:1;s:13:"all_countries";s:3:"yes";s:9:"countries";a:0:{}s:10:"new_status";s:7:"PENDING";s:7:"minimun";i:0;}}', 'yes'),
(551, 0, 'tcp_plugins_data_pay_Remboursement', 'a:1:{i:0;a:6:{s:6:"active";b:1;s:13:"all_countries";s:3:"yes";s:9:"countries";a:0:{}s:10:"new_status";s:10:"PROCESSING";s:6:"notice";s:22:"Cash on delivery! (5%)";s:10:"percentage";i:5;}}', 'yes'),
(552, 0, 'tcp_shortcodes_data', 'a:1:{i:0;a:23:{s:2:"id";s:12:"all_products";s:5:"title";s:0:"";s:4:"desc";s:20:"List of all products";s:9:"post_type";s:11:"tcp_product";s:12:"use_taxonomy";b:0;s:8:"taxonomy";s:20:"tcp_product_category";s:8:"included";a:0:{}s:4:"term";s:0:"";s:4:"loop";s:0:"";s:7:"columns";i:2;s:9:"see_title";b:1;s:9:"see_image";b:0;s:10:"image_size";s:9:"thumbnail";s:11:"see_content";b:0;s:11:"see_excerpt";b:1;s:10:"see_author";b:0;s:13:"see_meta_data";b:0;s:18:"see_meta_utilities";b:0;s:9:"see_price";b:0;s:14:"see_buy_button";b:0;s:21:"see_first_custom_area";b:0;s:22:"see_second_custom_area";b:0;s:21:"see_third_custom_area";b:0;}}', 'yes'),
(553, 0, 'tcp_settings', 'a:41:{s:12:"legal_notice";s:15:"Checkout notice";s:16:"stock_management";b:0;s:21:"disable_shopping_cart";b:0;s:17:"user_registration";b:0;s:25:"see_buy_button_in_content";b:1;s:25:"see_buy_button_in_excerpt";b:0;s:20:"see_price_in_content";b:0;s:20:"see_price_in_excerpt";b:1;s:17:"downloadable_path";s:70:"D:TrabajoOriginalHousetrunksrc/wp-content/plugins/thecartpress/uploads";s:19:"load_default_styles";b:1;s:23:"search_engine_activated";b:1;s:8:"currency";s:3:"EUR";s:13:"decimal_point";s:1:".";s:19:"thousands_separator";s:1:",";s:11:"unit_weight";s:2:"gr";s:15:"product_rewrite";s:7:"product";s:16:"category_rewrite";s:8:"category";s:11:"tag_rewrite";s:3:"tag";s:16:"supplier_rewrite";s:8:"supplier";s:13:"hide_visibles";b:0;s:18:"search_engine_guid";s:38:"{DADF5346-9293-45CF-B5D3-25F640748359}";s:15:"currency_layout";s:0:"";s:10:"from_email";s:0:"";s:6:"emails";s:0:"";s:22:"hide_downloadable_menu";b:0;s:17:"enabled_wish_list";b:0;s:18:"prices_include_tax";b:0;s:25:"shipping_cost_include_tax";b:0;s:24:"apply_tax_after_discount";b:0;s:38:"apply_discount_on_prices_including_tax";b:0;s:25:"display_prices_with_taxes";b:0;s:25:"display_Cart_Order_prices";b:0;s:32:"display_shipping_cost_with_taxes";b:0;s:24:"display_full_tax_summary";b:0;s:25:"display_zero_tax_subtotal";b:0;s:17:"products_per_page";i:10;s:20:"see_image_in_content";b:0;s:20:"see_image_in_excerpt";b:0;s:29:"checkout_successfully_message";s:0:"";s:13:"use_tcp_loops";b:0;s:19:"show_back_end_label";b:0;}', 'yes'),
(554, 0, 'widget_shoppingcartsummary-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(555, 0, 'widget_shoppingcart-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(556, 0, 'widget_tcplastvisited-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(557, 0, 'widget_tcpwishlist-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(558, 0, 'widget_tcprelatedlist-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(559, 0, 'widget_customposttypelist-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(560, 0, 'widget_taxonomycloudsposttype-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(561, 0, 'widget_taxonomytreesposttype-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(562, 0, 'widget_orderpanel-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(563, 0, 'widget_commentscustomposttype-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(564, 0, 'widget_tcpbrotherslist-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(565, 0, 'widget_checkout-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(566, 0, 'tcp_version', '109', 'yes');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_postmeta`
--
CREATE TABLE IF NOT EXISTS `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=359 ;
--
-- Volcar la base de datos para la tabla `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(26, 33, '_wp_attached_file', '2011/06/1portada.jpg'),
(27, 33, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"470";s:14:"hwstring_small";s:23:"height=''96'' width=''122''";s:4:"file";s:20:"2011/06/1portada.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"1portada-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:20:"1portada-300x235.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"235";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(260, 114, '_wp_attached_file', '2011/06/fondonuevaweb.jpg'),
(219, 106, '_wp_attached_file', '2011/06/logo2.gif'),
(261, 114, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"942";s:6:"height";s:3:"651";s:14:"hwstring_small";s:23:"height=''88'' width=''128''";s:4:"file";s:25:"2011/06/fondonuevaweb.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:25:"fondonuevaweb-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:25:"fondonuevaweb-300x207.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"207";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(22, 26, '_wp_attached_file', '2011/06/pattern.jpg'),
(23, 26, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1780";s:6:"height";s:3:"302";s:14:"hwstring_small";s:23:"height=''21'' width=''128''";s:4:"file";s:19:"2011/06/pattern.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"pattern-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:18:"pattern-300x50.jpg";s:5:"width";s:3:"300";s:6:"height";s:2:"50";}s:5:"large";a:3:{s:4:"file";s:20:"pattern-1024x173.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"173";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(21, 22, 'catablog-post-meta', 'a:5:{s:5:"image";s:34:"ACRO 66ML - 85x130x45 697€-2.jpg";s:10:"sub-images";a:0:{}s:4:"link";s:0:"";s:5:"price";s:1:"0";s:12:"product-code";s:0:"";}'),
(20, 21, 'catablog-post-meta', 'a:5:{s:5:"image";s:29:"ACRO-30A-90x150x45-649€.jpg";s:10:"sub-images";a:0:{}s:4:"link";s:0:"";s:5:"price";s:1:"0";s:12:"product-code";s:0:"";}'),
(19, 20, 'catablog-post-meta', 'a:5:{s:5:"image";s:32:"ACRO 66ML - 85x130x45 697€.jpg";s:10:"sub-images";a:0:{}s:4:"link";s:0:"";s:5:"price";s:1:"0";s:12:"product-code";s:0:"";}'),
(28, 34, '_wp_attached_file', '2011/06/2-.jpg'),
(29, 34, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"395";s:14:"hwstring_small";s:23:"height=''84'' width=''128''";s:4:"file";s:14:"2011/06/2-.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:14:"2--150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:14:"2--300x197.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"197";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(30, 35, '_wp_attached_file', '2011/06/3-la-tienda.jpg'),
(31, 35, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1600";s:6:"height";s:4:"1200";s:14:"hwstring_small";s:23:"height=''96'' width=''128''";s:4:"file";s:23:"2011/06/3-la-tienda.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"3-la-tienda-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"3-la-tienda-300x225.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"225";}s:5:"large";a:3:{s:4:"file";s:24:"3-la-tienda-1024x768.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(32, 36, '_wp_attached_file', '2011/06/3-muebles.jpg'),
(33, 36, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"462";s:14:"hwstring_small";s:23:"height=''96'' width=''124''";s:4:"file";s:21:"2011/06/3-muebles.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"3-muebles-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"3-muebles-300x231.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"231";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(34, 37, '_wp_attached_file', '2011/06/4-servicios.jpg'),
(35, 37, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"484";s:14:"hwstring_small";s:23:"height=''96'' width=''119''";s:4:"file";s:23:"2011/06/4-servicios.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"4-servicios-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"4-servicios-300x242.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"242";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(36, 38, '_wp_attached_file', '2011/06/5-ideas-y-consejos.jpg'),
(37, 38, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"429";s:14:"hwstring_small";s:23:"height=''91'' width=''128''";s:4:"file";s:30:"2011/06/5-ideas-y-consejos.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:30:"5-ideas-y-consejos-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:30:"5-ideas-y-consejos-300x214.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"214";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(38, 39, '_wp_attached_file', '2011/06/7-productos.jpg'),
(39, 39, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"431";s:14:"hwstring_small";s:23:"height=''91'' width=''128''";s:4:"file";s:23:"2011/06/7-productos.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"7-productos-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"7-productos-300x215.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"215";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(40, 40, '_wp_attached_file', '2011/06/8-muebles.jpg'),
(41, 40, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"462";s:14:"hwstring_small";s:23:"height=''96'' width=''124''";s:4:"file";s:21:"2011/06/8-muebles.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"8-muebles-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"8-muebles-300x231.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"231";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(42, 41, '_wp_attached_file', '2011/06/9-mesas.jpg'),
(43, 41, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"469";s:14:"hwstring_small";s:23:"height=''96'' width=''122''";s:4:"file";s:19:"2011/06/9-mesas.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"9-mesas-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"9-mesas-300x234.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"234";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(44, 42, '_wp_attached_file', '2011/06/10-mesas-comedor.jpg'),
(45, 42, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"597";s:6:"height";s:3:"423";s:14:"hwstring_small";s:23:"height=''90'' width=''128''";s:4:"file";s:28:"2011/06/10-mesas-comedor.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:28:"10-mesas-comedor-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:28:"10-mesas-comedor-300x212.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"212";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(46, 43, '_wp_attached_file', '2011/06/11-mesas-de-centro-001.jpg'),
(47, 43, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"452";s:14:"hwstring_small";s:23:"height=''96'' width=''128''";s:4:"file";s:34:"2011/06/11-mesas-de-centro-001.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:34:"11-mesas-de-centro-001-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:34:"11-mesas-de-centro-001-300x226.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"226";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(48, 32, '_edit_last', '1'),
(49, 32, 'image', 'http://localhost/originalhouse/wp-content/uploads/2011/06/1portada.jpg'),
(50, 32, 'seo_follow', 'false'),
(51, 32, 'seo_noindex', 'false'),
(52, 32, '_edit_lock', '1309359498:1'),
(53, 44, '_edit_last', '1'),
(54, 44, '_edit_lock', '1309365245:1'),
(55, 45, '_wp_attached_file', '2011/06/fondo-inicio.jpg'),
(56, 45, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1197";s:6:"height";s:3:"650";s:14:"hwstring_small";s:23:"height=''69'' width=''128''";s:4:"file";s:24:"2011/06/fondo-inicio.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:24:"fondo-inicio-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:24:"fondo-inicio-300x162.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"162";}s:5:"large";a:3:{s:4:"file";s:25:"fondo-inicio-1024x556.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"556";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(61, 57, '_edit_last', '1'),
(58, 44, '_wp_page_template', 'template-fullwidth.php'),
(59, 44, 'seo_follow', 'false'),
(60, 44, 'seo_noindex', 'false'),
(62, 57, '_edit_lock', '1309365223:1'),
(63, 57, '_wp_page_template', 'default'),
(64, 57, 'seo_follow', 'false'),
(65, 57, 'seo_noindex', 'false'),
(66, 60, '_menu_item_type', 'post_type'),
(67, 60, '_menu_item_menu_item_parent', '0'),
(68, 60, '_menu_item_object_id', '44'),
(69, 60, '_menu_item_object', 'page'),
(70, 60, '_menu_item_target', ''),
(71, 60, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(72, 60, '_menu_item_xfn', ''),
(73, 60, '_menu_item_url', ''),
(75, 61, '_edit_last', '1'),
(76, 61, '_edit_lock', '1309781085:1'),
(77, 62, '_wp_attached_file', '2011/06/fondo-la-tienda.jpg'),
(78, 62, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1197";s:6:"height";s:3:"650";s:14:"hwstring_small";s:23:"height=''69'' width=''128''";s:4:"file";s:27:"2011/06/fondo-la-tienda.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:27:"fondo-la-tienda-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:27:"fondo-la-tienda-300x162.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"162";}s:5:"large";a:3:{s:4:"file";s:28:"fondo-la-tienda-1024x556.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"556";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(79, 63, '_wp_attached_file', '2011/06/fondo-localizanos.jpg'),
(80, 63, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1197";s:6:"height";s:3:"650";s:14:"hwstring_small";s:23:"height=''69'' width=''128''";s:4:"file";s:29:"2011/06/fondo-localizanos.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"fondo-localizanos-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"fondo-localizanos-300x162.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"162";}s:5:"large";a:3:{s:4:"file";s:30:"fondo-localizanos-1024x556.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"556";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(81, 64, '_wp_attached_file', '2011/06/fondo-servicios.jpg'),
(82, 64, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1197";s:6:"height";s:3:"650";s:14:"hwstring_small";s:23:"height=''69'' width=''128''";s:4:"file";s:27:"2011/06/fondo-servicios.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:27:"fondo-servicios-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:27:"fondo-servicios-300x162.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"162";}s:5:"large";a:3:{s:4:"file";s:28:"fondo-servicios-1024x556.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"556";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(83, 61, '_wp_page_template', 'template-fullwidth.php'),
(84, 61, 'seo_follow', 'false'),
(85, 61, 'seo_noindex', 'false'),
(86, 69, '_menu_item_type', 'post_type'),
(87, 69, '_menu_item_menu_item_parent', '0'),
(88, 69, '_menu_item_object_id', '61'),
(89, 69, '_menu_item_object', 'page'),
(90, 69, '_menu_item_target', ''),
(91, 69, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(92, 69, '_menu_item_xfn', ''),
(93, 69, '_menu_item_url', ''),
(95, 57, '_wp_trash_meta_status', 'publish'),
(96, 57, '_wp_trash_meta_time', '1309371228'),
(97, 2, '_wp_trash_meta_status', 'publish'),
(98, 2, '_wp_trash_meta_time', '1309371228'),
(271, 116, '_menu_item_type', 'post_type'),
(333, 131, 'seo_noindex', 'false'),
(269, 115, '_menu_item_url', ''),
(268, 115, '_menu_item_xfn', ''),
(266, 115, '_menu_item_target', ''),
(255, 111, '_menu_item_url', ''),
(254, 111, '_menu_item_xfn', ''),
(108, 76, '_menu_item_type', 'post_type'),
(109, 76, '_menu_item_menu_item_parent', '0'),
(110, 76, '_menu_item_object_id', '44'),
(111, 76, '_menu_item_object', 'page'),
(112, 76, '_menu_item_target', ''),
(113, 76, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(114, 76, '_menu_item_xfn', ''),
(115, 76, '_menu_item_url', ''),
(253, 111, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(252, 111, '_menu_item_target', ''),
(251, 111, '_menu_item_object', 'category'),
(250, 111, '_menu_item_object_id', '1'),
(166, 82, 'seo_noindex', 'false'),
(249, 111, '_menu_item_menu_item_parent', '0'),
(248, 111, '_menu_item_type', 'taxonomy'),
(267, 115, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(246, 110, '_menu_item_url', ''),
(245, 110, '_menu_item_xfn', ''),
(244, 110, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(165, 82, 'seo_follow', 'false'),
(243, 110, '_menu_item_target', ''),
(242, 110, '_menu_item_object', 'category'),
(241, 110, '_menu_item_object_id', '1'),
(239, 110, '_menu_item_type', 'taxonomy'),
(164, 82, '_wp_page_template', 'default'),
(258, 113, '_wp_attached_file', '2011/06/logo-rojo.gif'),
(259, 113, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"315";s:6:"height";s:2:"80";s:14:"hwstring_small";s:23:"height=''32'' width=''128''";s:4:"file";s:21:"2011/06/logo-rojo.gif";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"logo-rojo-150x80.gif";s:5:"width";s:3:"150";s:6:"height";s:2:"80";}s:6:"medium";a:3:{s:4:"file";s:20:"logo-rojo-300x76.gif";s:5:"width";s:3:"300";s:6:"height";s:2:"76";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(163, 82, '_edit_lock', '1309377341:1'),
(153, 81, '_menu_item_type', 'taxonomy'),
(154, 81, '_menu_item_menu_item_parent', '0'),
(155, 81, '_menu_item_object_id', '1'),
(156, 81, '_menu_item_object', 'category'),
(157, 81, '_menu_item_target', ''),
(158, 81, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(159, 81, '_menu_item_xfn', ''),
(160, 81, '_menu_item_url', ''),
(162, 82, '_edit_last', '1'),
(214, 103, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"315";s:6:"height";s:2:"80";s:14:"hwstring_small";s:23:"height=''32'' width=''128''";s:4:"file";s:17:"2011/06/logo1.gif";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"logo1-150x80.gif";s:5:"width";s:3:"150";s:6:"height";s:2:"80";}s:6:"medium";a:3:{s:4:"file";s:16:"logo1-300x76.gif";s:5:"width";s:3:"300";s:6:"height";s:2:"76";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(213, 103, '_wp_attached_file', '2011/06/logo1.gif'),
(176, 88, '_edit_last', '1'),
(177, 88, '_edit_lock', '1309377614:1'),
(178, 88, '_wp_page_template', 'template-contact.php'),
(179, 88, 'seo_follow', 'false'),
(180, 88, 'seo_noindex', 'false'),
(181, 90, '_menu_item_type', 'post_type'),
(182, 90, '_menu_item_menu_item_parent', '0'),
(183, 90, '_menu_item_object_id', '88'),
(184, 90, '_menu_item_object', 'page'),
(185, 90, '_menu_item_target', ''),
(186, 90, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(187, 90, '_menu_item_xfn', ''),
(188, 90, '_menu_item_url', ''),
(190, 96, '_edit_last', '1'),
(191, 96, '_edit_lock', '1309378399:1'),
(192, 96, '_wp_page_template', 'template-fullwidth.php'),
(193, 96, 'seo_follow', 'false'),
(194, 96, 'seo_noindex', 'false'),
(240, 110, '_menu_item_menu_item_parent', '0'),
(262, 115, '_menu_item_type', 'post_type'),
(263, 115, '_menu_item_menu_item_parent', '0'),
(264, 115, '_menu_item_object_id', '96'),
(265, 115, '_menu_item_object', 'page'),
(220, 106, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"315";s:6:"height";s:2:"80";s:14:"hwstring_small";s:23:"height=''32'' width=''128''";s:4:"file";s:17:"2011/06/logo2.gif";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"logo2-150x80.gif";s:5:"width";s:3:"150";s:6:"height";s:2:"80";}s:6:"medium";a:3:{s:4:"file";s:16:"logo2-300x76.gif";s:5:"width";s:3:"300";s:6:"height";s:2:"76";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(272, 116, '_menu_item_menu_item_parent', '0'),
(273, 116, '_menu_item_object_id', '82'),
(274, 116, '_menu_item_object', 'page'),
(275, 116, '_menu_item_target', ''),
(276, 116, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(277, 116, '_menu_item_xfn', ''),
(278, 116, '_menu_item_url', ''),
(334, 131, '_wpsc_price', '0'),
(280, 117, '_menu_item_type', 'post_type'),
(281, 117, '_menu_item_menu_item_parent', '0'),
(282, 117, '_menu_item_object_id', '61'),
(283, 117, '_menu_item_object', 'page'),
(284, 117, '_menu_item_target', ''),
(285, 117, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(286, 117, '_menu_item_xfn', ''),
(287, 117, '_menu_item_url', ''),
(335, 131, '_wpsc_special_price', '0'),
(332, 131, 'seo_follow', 'false'),
(331, 131, '_edit_lock', '1309800149:1'),
(330, 131, '_edit_last', '1'),
(298, 119, '_menu_item_type', 'post_type'),
(299, 119, '_menu_item_menu_item_parent', '0'),
(300, 119, '_menu_item_object_id', '88'),
(301, 119, '_menu_item_object', 'page'),
(302, 119, '_menu_item_target', ''),
(303, 119, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(304, 119, '_menu_item_xfn', ''),
(305, 119, '_menu_item_url', ''),
(316, 121, '_edit_last', '1'),
(307, 120, '_menu_item_type', 'post_type'),
(308, 120, '_menu_item_menu_item_parent', '0'),
(309, 120, '_menu_item_object_id', '82'),
(310, 120, '_menu_item_object', 'page'),
(311, 120, '_menu_item_target', ''),
(312, 120, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(313, 120, '_menu_item_xfn', ''),
(314, 120, '_menu_item_url', ''),
(317, 121, '_edit_lock', '1309788862:1'),
(318, 121, '_wp_page_template', 'template-fullwidth.php'),
(319, 121, 'seo_follow', 'false'),
(320, 121, 'seo_noindex', 'false'),
(321, 123, '_menu_item_type', 'post_type'),
(322, 123, '_menu_item_menu_item_parent', '0'),
(323, 123, '_menu_item_object_id', '121'),
(324, 123, '_menu_item_object', 'page'),
(325, 123, '_menu_item_target', ''),
(326, 123, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(327, 123, '_menu_item_xfn', ''),
(328, 123, '_menu_item_url', ''),
(336, 131, '_wpsc_sku', ''),
(337, 131, '_wpsc_stock', ''),
(338, 131, '_wpsc_product_metadata', 'a:19:{s:25:"wpec_taxes_taxable_amount";s:0:"";s:13:"external_link";s:0:"";s:18:"external_link_text";s:0:"";s:20:"external_link_target";s:0:"";s:6:"weight";s:1:"0";s:11:"weight_unit";s:5:"pound";s:10:"dimensions";a:6:{s:6:"height";s:1:"0";s:11:"height_unit";s:2:"in";s:5:"width";s:2:"0 ";s:10:"width_unit";s:2:"in";s:6:"length";s:1:"0";s:11:"length_unit";s:2:"in";}s:8:"shipping";a:2:{s:5:"local";s:1:"0";s:13:"international";s:1:"0";}s:14:"merchant_notes";s:0:"";s:8:"engraved";s:1:"0";s:23:"can_have_uploaded_image";s:1:"0";s:15:"enable_comments";s:0:"";s:24:"unpublish_when_none_left";s:1:"0";s:11:"no_shipping";s:1:"0";s:16:"quantity_limited";s:1:"0";s:7:"special";s:1:"0";s:17:"display_weight_as";s:5:"pound";s:16:"table_rate_price";a:2:{s:8:"quantity";a:0:{}s:11:"table_price";a:0:{}}s:17:"google_prohibited";s:1:"0";}'),
(339, 131, '_wpsc_is_donation', '0'),
(340, 131, '_wpsc_currency', 'a:0:{}'),
(341, 135, 'tcp_tax_id', '0'),
(342, 135, 'tcp_back_end_label', ''),
(343, 135, 'tcp_hide_buy_button', ''),
(344, 135, 'tcp_exclude_range', ''),
(345, 135, 'tcp_is_downloadable', ''),
(346, 135, 'tcp_max_downloads', '0'),
(347, 135, 'tcp_days_to_expire', '0'),
(348, 135, 'tcp_type', 'SIMPLE'),
(349, 135, 'tcp_is_visible', '1'),
(350, 135, 'tcp_price', '0'),
(351, 135, 'tcp_weight', '0'),
(352, 135, 'tcp_order', ''),
(353, 135, 'tcp_sku', ''),
(354, 135, 'tcp_stock', '-1'),
(355, 133, '_wp_trash_meta_status', 'publish'),
(356, 133, '_wp_trash_meta_time', '1309800474'),
(357, 134, '_wp_trash_meta_status', 'publish'),
(358, 134, '_wp_trash_meta_time', '1309800474');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_posts`
--
CREATE TABLE IF NOT EXISTS `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(20) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` text NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=138 ;
--
-- Volcar la base de datos para la tabla `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2011-06-28 15:12:45', '2011-06-28 15:12:45', 'Bienvenido a WordPress. Esta es tu primera entrada. Edítala o bórrala, ¡y comienza a publicar!.', '¡Hola mundo!', '', 'publish', 'open', 'open', '', 'hola-mundo', '', '', '2011-06-28 15:12:45', '2011-06-28 15:12:45', '', 0, 'http://localhost/originalhouse/?p=1', 0, 'post', '', 1),
(2, 1, '2011-06-28 15:12:45', '2011-06-28 15:12:45', 'Esta es una página de ejemplo, Es diferente a una entrada de un blog porque se mantiene estática y, en la mayoría de temas, se mostrará en la barra de navegación. Casi todo el mundo comienza con una página Sobre mí para presentarse a los potenciales visitantes. Puede decir algo así:\n\n<blockquote>¡Hola!: Soy físico durante el día, lector de manga por las noches y este es mi blog. Vivo en Albacete y tengo un gato llamado Alex. Me encantan los mojitos (y mirar a la gente corriendo en los parques)</blockquote>\n\nO algo así:\n\n<blockquote>La empresa Calcetines XYC se fundó en 1973, y ha estado produciendo calcetines de calidad para sus clientes desde entonces. Se encuentra en Vetusta, tiene unos 2.000 empleados e intenta ayudar en lo que puede para mejorar la vida en Vestusta</blockquote>\n\nDeberías ir a <a href="http://localhost/originalhouse/wp-admin/">tu escritorio</a>, borrar esta página y crear algunas nuevas con tu contenido. ¡A divertirse!', 'Página de ejemplo', '', 'trash', 'open', 'open', '', 'pagina-ejemplo', '', '', '2011-06-29 18:13:48', '2011-06-29 18:13:48', '', 0, 'http://localhost/originalhouse/?page_id=2', 0, 'page', '', 0),
(3, 1, '2011-06-28 17:06:34', '0000-00-00 00:00:00', '', 'Borrador automático', '', 'auto-draft', 'open', 'open', '', '', '', '', '2011-06-28 17:06:34', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?p=3', 0, 'post', '', 0),
(36, 1, '2011-06-29 14:57:15', '2011-06-29 14:57:15', '', '3 MUEBLES', '', 'inherit', 'open', 'open', '', '3-muebles', '', '', '2011-06-29 14:57:15', '2011-06-29 14:57:15', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/3-muebles.jpg', 0, 'attachment', 'image/jpeg', 0),
(34, 1, '2011-06-29 14:57:13', '2011-06-29 14:57:13', '', '2', '', 'inherit', 'open', 'open', '', '2', '', '', '2011-06-29 14:57:13', '2011-06-29 14:57:13', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/2-.jpg', 0, 'attachment', 'image/jpeg', 0),
(35, 1, '2011-06-29 14:57:14', '2011-06-29 14:57:14', '', '3 LA TIENDA', '', 'inherit', 'open', 'open', '', '3-la-tienda', '', '', '2011-06-29 14:57:14', '2011-06-29 14:57:14', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/3-la-tienda.jpg', 0, 'attachment', 'image/jpeg', 0),
(33, 1, '2011-06-29 14:57:12', '2011-06-29 14:57:12', '', '1PORTADA', '', 'inherit', 'open', 'open', '', '1portada', '', '', '2011-06-29 14:57:12', '2011-06-29 14:57:12', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/1portada.jpg', 0, 'attachment', 'image/jpeg', 0),
(106, 1, '2011-06-30 12:16:26', '2011-06-30 12:16:26', '', 'Logo Original House', '', 'inherit', 'closed', 'open', '', 'logo-3', '', '', '2011-06-30 12:16:26', '2011-06-30 12:16:26', '', 23, 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo2.gif', 0, 'attachment', 'image/gif', 0),
(32, 1, '2011-06-29 14:58:18', '2011-06-29 14:58:18', '', '1', '', 'publish', 'closed', 'closed', '', '1', '', '', '2011-06-29 14:58:18', '2011-06-29 14:58:18', '', 0, 'http://localhost/originalhouse/?post_type=slide&#038;p=32', 0, 'slide', '', 0),
(30, 1, '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 'Framework Woo Custom Login Logo', '', 'draft', 'closed', 'closed', '', 'woo-wf-framework_woo_custom_login_logo', '', '', '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=30', 0, 'wooframework', '', 0),
(29, 1, '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 'Framework Woo Backend Icon', '', 'draft', 'closed', 'closed', '', 'woo-wf-framework_woo_backend_icon', '', '', '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=29', 0, 'wooframework', '', 0),
(28, 1, '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 'Framework Woo Backend Header Image', '', 'draft', 'closed', 'closed', '', 'woo-wf-framework_woo_backend_header_image', '', '', '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=28', 0, 'wooframework', '', 0),
(27, 1, '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 'Framework Woo Default Image', '', 'draft', 'closed', 'closed', '', 'woo-wf-framework_woo_default_image', '', '', '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=27', 0, 'wooframework', '', 0),
(25, 1, '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 'Woo Body Img', '', 'draft', 'closed', 'closed', '', 'woo-wf-woo_body_img', '', '', '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=25', 0, 'wooframework', '', 0),
(26, 1, '2011-06-29 11:43:52', '2011-06-29 11:43:52', '', 'pattern', '', 'inherit', 'open', 'open', '', 'pattern', '', '', '2011-06-29 11:43:52', '2011-06-29 11:43:52', '', 25, 'http://localhost/originalhouse/wp-content/uploads/2011/06/pattern.jpg', 0, 'attachment', 'image/jpeg', 0),
(24, 1, '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 'Woo Custom Favicon', '', 'draft', 'closed', 'closed', '', 'woo-wf-woo_custom_favicon', '', '', '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=24', 0, 'wooframework', '', 0),
(23, 1, '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 'Woo Logo', '', 'draft', 'closed', 'closed', '', 'woo-wf-woo_logo', '', '', '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=23', 0, 'wooframework', '', 0),
(22, 1, '2011-06-28 17:15:03', '2011-06-28 17:15:03', '', 'ACRO 66ML 85x130x45 697€', '', 'publish', 'closed', 'open', '', 'acro-66ml-85x130x45-697e-2', '', '', '2011-06-28 17:15:08', '2011-06-28 17:15:08', '', 0, 'http://localhost/originalhouse/?catablog-items=acro-66ml-85x130x45-697e-2', 1, 'catablog-items', '', 0),
(21, 1, '2011-06-28 17:13:02', '2011-06-28 17:13:02', '', 'ACRO 30A 90x150x45 649€', '', 'publish', 'closed', 'open', '', 'acro-30a-90x150x45-649e', '', '', '2011-06-28 17:13:02', '2011-06-28 17:13:02', '', 0, 'http://localhost/originalhouse/?catablog-items=acro-30a-90x150x45-649e', 1, 'catablog-items', '', 0),
(20, 1, '2011-06-28 17:13:01', '2011-06-28 17:13:01', '', 'ACRO 66ML 85x130x45 697€', '', 'publish', 'closed', 'open', '', 'acro-66ml-85x130x45-697e', '', '', '2011-06-28 17:13:01', '2011-06-28 17:13:01', '', 0, 'http://localhost/originalhouse/?catablog-items=acro-66ml-85x130x45-697e', 1, 'catablog-items', '', 0),
(37, 1, '2011-06-29 14:57:16', '2011-06-29 14:57:16', '', '4 SERVICIOS', '', 'inherit', 'open', 'open', '', '4-servicios', '', '', '2011-06-29 14:57:16', '2011-06-29 14:57:16', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/4-servicios.jpg', 0, 'attachment', 'image/jpeg', 0),
(38, 1, '2011-06-29 14:57:17', '2011-06-29 14:57:17', '', '5 IDEAS Y CONSEJOS', '', 'inherit', 'open', 'open', '', '5-ideas-y-consejos', '', '', '2011-06-29 14:57:17', '2011-06-29 14:57:17', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/5-ideas-y-consejos.jpg', 0, 'attachment', 'image/jpeg', 0),
(39, 1, '2011-06-29 14:57:17', '2011-06-29 14:57:17', '', '7 PRODUCTOS', '', 'inherit', 'open', 'open', '', '7-productos', '', '', '2011-06-29 14:57:17', '2011-06-29 14:57:17', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/7-productos.jpg', 0, 'attachment', 'image/jpeg', 0),
(40, 1, '2011-06-29 14:57:18', '2011-06-29 14:57:18', '', '8 MUEBLES', '', 'inherit', 'open', 'open', '', '8-muebles', '', '', '2011-06-29 14:57:18', '2011-06-29 14:57:18', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/8-muebles.jpg', 0, 'attachment', 'image/jpeg', 0),
(41, 1, '2011-06-29 14:57:19', '2011-06-29 14:57:19', '', '9 MESAS', '', 'inherit', 'open', 'open', '', '9-mesas', '', '', '2011-06-29 14:57:19', '2011-06-29 14:57:19', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/9-mesas.jpg', 0, 'attachment', 'image/jpeg', 0),
(42, 1, '2011-06-29 14:57:19', '2011-06-29 14:57:19', '', '10 MESAS COMEDOR', '', 'inherit', 'open', 'open', '', '10-mesas-comedor', '', '', '2011-06-29 14:57:19', '2011-06-29 14:57:19', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/10-mesas-comedor.jpg', 0, 'attachment', 'image/jpeg', 0),
(43, 1, '2011-06-29 14:57:20', '2011-06-29 14:57:20', '', '11 MESAS DE CENTRO 001', '', 'inherit', 'open', 'open', '', '11-mesas-de-centro-001', '', '', '2011-06-29 14:57:20', '2011-06-29 14:57:20', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/11-mesas-de-centro-001.jpg', 0, 'attachment', 'image/jpeg', 0),
(44, 1, '2011-06-29 15:49:39', '2011-06-29 15:49:39', '', 'Inicio', '', 'publish', 'open', 'open', '', 'inicio', '', '', '2011-06-29 16:34:05', '2011-06-29 16:34:05', '', 0, 'http://localhost/originalhouse/?page_id=44', 0, 'page', '', 0),
(45, 1, '2011-06-29 15:49:14', '2011-06-29 15:49:14', '', 'fondo-inicio', '', 'inherit', 'open', 'open', '', 'fondo-inicio', '', '', '2011-06-29 15:49:14', '2011-06-29 15:49:14', '', 44, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-inicio.jpg', 0, 'attachment', 'image/jpeg', 0),
(46, 1, '2011-06-29 15:47:40', '2011-06-29 15:47:40', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision', '', '', '2011-06-29 15:47:40', '2011-06-29 15:47:40', '', 44, 'http://localhost/originalhouse/?p=46', 0, 'revision', '', 0),
(47, 1, '2011-06-29 15:49:39', '2011-06-29 15:49:39', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-2', '', '', '2011-06-29 15:49:39', '2011-06-29 15:49:39', '', 44, 'http://localhost/originalhouse/?p=47', 0, 'revision', '', 0),
(48, 1, '2011-06-29 16:10:17', '2011-06-29 16:10:17', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-3', '', '', '2011-06-29 16:10:17', '2011-06-29 16:10:17', '', 44, 'http://localhost/originalhouse/?p=48', 0, 'revision', '', 0),
(49, 1, '2011-06-29 16:14:08', '2011-06-29 16:14:08', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-4', '', '', '2011-06-29 16:14:08', '2011-06-29 16:14:08', '', 44, 'http://localhost/originalhouse/?p=49', 0, 'revision', '', 0),
(50, 1, '2011-06-29 16:14:23', '2011-06-29 16:14:23', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-5', '', '', '2011-06-29 16:14:23', '2011-06-29 16:14:23', '', 44, 'http://localhost/originalhouse/?p=50', 0, 'revision', '', 0),
(51, 1, '2011-06-29 16:14:35', '2011-06-29 16:14:35', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-6', '', '', '2011-06-29 16:14:35', '2011-06-29 16:14:35', '', 44, 'http://localhost/originalhouse/?p=51', 0, 'revision', '', 0),
(52, 1, '2011-06-29 16:14:53', '2011-06-29 16:14:53', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-7', '', '', '2011-06-29 16:14:53', '2011-06-29 16:14:53', '', 44, 'http://localhost/originalhouse/?p=52', 0, 'revision', '', 0),
(53, 1, '2011-06-29 16:15:46', '2011-06-29 16:15:46', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-8', '', '', '2011-06-29 16:15:46', '2011-06-29 16:15:46', '', 44, 'http://localhost/originalhouse/?p=53', 0, 'revision', '', 0),
(54, 1, '2011-06-29 16:15:57', '2011-06-29 16:15:57', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-9', '', '', '2011-06-29 16:15:57', '2011-06-29 16:15:57', '', 44, 'http://localhost/originalhouse/?p=54', 0, 'revision', '', 0),
(55, 1, '2011-06-29 16:16:16', '2011-06-29 16:16:16', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-10', '', '', '2011-06-29 16:16:16', '2011-06-29 16:16:16', '', 44, 'http://localhost/originalhouse/?p=55', 0, 'revision', '', 0),
(56, 1, '2011-06-29 16:33:10', '2011-06-29 16:33:10', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-11', '', '', '2011-06-29 16:33:10', '2011-06-29 16:33:10', '', 44, 'http://localhost/originalhouse/?p=56', 0, 'revision', '', 0),
(57, 1, '2011-06-29 16:33:42', '2011-06-29 16:33:42', 'dsadsadas', 'dsadsa', '', 'trash', 'open', 'open', '', 'dsadsa', '', '', '2011-06-29 18:13:48', '2011-06-29 18:13:48', '', 0, 'http://localhost/originalhouse/?page_id=57', 0, 'page', '', 0),
(58, 1, '2011-06-29 16:33:40', '2011-06-29 16:33:40', '', 'dsadsa', '', 'inherit', 'open', 'open', '', '57-revision', '', '', '2011-06-29 16:33:40', '2011-06-29 16:33:40', '', 57, 'http://localhost/originalhouse/?p=58', 0, 'revision', '', 0),
(59, 1, '2011-06-29 16:33:35', '2011-06-29 16:33:35', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-12', '', '', '2011-06-29 16:33:35', '2011-06-29 16:33:35', '', 44, 'http://localhost/originalhouse/?p=59', 0, 'revision', '', 0),
(60, 1, '2011-06-29 17:13:45', '2011-06-29 17:13:45', ' ', '', '', 'publish', 'open', 'open', '', '60', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=60', 1, 'nav_menu_item', '', 0),
(61, 1, '2011-06-29 17:17:15', '2011-06-29 17:17:15', '<ul>\r\n <li>ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</li>\r\n <li>Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</li>\r\n <li>Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</li>\r\n <li>Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</li>\r\n <li>Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</li>\r\n</ul>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<p style="text-align: center;"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></p>\r\n\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'publish', 'open', 'open', '', 'acerca-de', '', '', '2011-06-30 12:29:16', '2011-06-30 12:29:16', '', 0, 'http://localhost/originalhouse/?page_id=61', 0, 'page', '', 0),
(62, 1, '2011-06-29 17:17:03', '2011-06-29 17:17:04', '', 'fondo-la-tienda', '', 'inherit', 'open', 'open', '', 'fondo-la-tienda', '', '', '2011-06-29 17:17:03', '2011-06-29 17:17:04', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-la-tienda.jpg', 0, 'attachment', 'image/jpeg', 0),
(63, 1, '2011-06-29 17:17:04', '2011-06-29 17:17:04', '', 'fondo-localizanos', '', 'inherit', 'open', 'open', '', 'fondo-localizanos', '', '', '2011-06-29 17:17:04', '2011-06-29 17:17:04', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-localizanos.jpg', 0, 'attachment', 'image/jpeg', 0),
(64, 1, '2011-06-29 17:17:05', '2011-06-29 17:17:05', '', 'fondo-servicios', '', 'inherit', 'open', 'open', '', 'fondo-servicios', '', '', '2011-06-29 17:17:05', '2011-06-29 17:17:05', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-servicios.jpg', 0, 'attachment', 'image/jpeg', 0),
(65, 1, '2011-06-29 17:15:34', '2011-06-29 17:15:34', 'LA TIENDA\n<blockquote>· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\n\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\n\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\n\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\n\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\nORIGINAL HOUSE\n\nBIENVENIDOS\n\n&nbsp;', 'Acerca de', '', 'inherit', 'open', 'open', '', '61-revision', '', '', '2011-06-29 17:15:34', '2011-06-29 17:15:34', '', 61, 'http://localhost/originalhouse/?p=65', 0, 'revision', '', 0),
(66, 1, '2011-06-29 17:17:15', '2011-06-29 17:17:15', 'LA TIENDA\r\n<blockquote>· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\r\nORIGINAL HOUSE\r\n\r\nBIENVENIDOS\r\n\r\n&nbsp;', 'Acerca de', '', 'inherit', 'open', 'open', '', '61-revision-2', '', '', '2011-06-29 17:17:15', '2011-06-29 17:17:15', '', 61, 'http://localhost/originalhouse/?p=66', 0, 'revision', '', 0),
(67, 1, '2011-06-29 17:17:27', '2011-06-29 17:17:27', '&nbsp;\r\n<blockquote>· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\r\nORIGINAL HOUSE\r\n\r\nBIENVENIDOS\r\n\r\n&nbsp;', 'La Tienda', '', 'inherit', 'open', 'open', '', '61-revision-3', '', '', '2011-06-29 17:17:27', '2011-06-29 17:17:27', '', 61, 'http://localhost/originalhouse/?p=67', 0, 'revision', '', 0),
(68, 1, '2011-06-29 17:18:13', '2011-06-29 17:18:13', '<blockquote>\r\n· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'open', 'open', '', '61-revision-4', '', '', '2011-06-29 17:18:13', '2011-06-29 17:18:13', '', 61, 'http://localhost/originalhouse/?p=68', 0, 'revision', '', 0),
(69, 1, '2011-06-29 17:19:01', '2011-06-29 17:19:01', '· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A\r\n\r\nBIENVENIDOS\r\n ', '', '', 'publish', 'open', 'open', '', '69', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=69', 2, 'nav_menu_item', '', 0),
(70, 1, '2011-07-04 12:05:47', '2011-07-04 12:05:47', '<ul>\n <li>ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</li>\n <li>Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</li>\n <li>Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</li>\n <li>Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</li>\n <li>Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</li>\n</ul>\n<p style="text-align: center;">&nbsp;</p>\n<p style="text-align: center;"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></p>\n\n<h1 style="text-align: center;">BIENVENIDOS</h1>\n&nbsp;', 'La Tienda', '', 'inherit', 'open', 'open', '', '61-autosave', '', '', '2011-07-04 12:05:47', '2011-07-04 12:05:47', '', 61, 'http://localhost/originalhouse/?p=70', 0, 'revision', '', 0),
(71, 1, '2011-06-29 16:33:42', '2011-06-29 16:33:42', 'dsadsadas', 'dsadsa', '', 'inherit', 'open', 'open', '', '57-revision-2', '', '', '2011-06-29 16:33:42', '2011-06-29 16:33:42', '', 57, 'http://localhost/originalhouse/?p=71', 0, 'revision', '', 0),
(72, 1, '2011-06-28 15:12:45', '2011-06-28 15:12:45', 'Esta es una página de ejemplo, Es diferente a una entrada de un blog porque se mantiene estática y, en la mayoría de temas, se mostrará en la barra de navegación. Casi todo el mundo comienza con una página Sobre mí para presentarse a los potenciales visitantes. Puede decir algo así:\n\n<blockquote>¡Hola!: Soy físico durante el día, lector de manga por las noches y este es mi blog. Vivo en Albacete y tengo un gato llamado Alex. Me encantan los mojitos (y mirar a la gente corriendo en los parques)</blockquote>\n\nO algo así:\n\n<blockquote>La empresa Calcetines XYC se fundó en 1973, y ha estado produciendo calcetines de calidad para sus clientes desde entonces. Se encuentra en Vetusta, tiene unos 2.000 empleados e intenta ayudar en lo que puede para mejorar la vida en Vestusta</blockquote>\n\nDeberías ir a <a href="http://localhost/originalhouse/wp-admin/">tu escritorio</a>, borrar esta página y crear algunas nuevas con tu contenido. ¡A divertirse!', 'Página de ejemplo', '', 'inherit', 'open', 'open', '', '2-revision', '', '', '2011-06-28 15:12:45', '2011-06-28 15:12:45', '', 2, 'http://localhost/originalhouse/?p=72', 0, 'revision', '', 0),
(73, 1, '2011-06-29 18:13:53', '0000-00-00 00:00:00', '', 'Borrador automático', '', 'auto-draft', 'open', 'open', '', '', '', '', '2011-06-29 18:13:53', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?page_id=73', 0, 'page', '', 0),
(74, 1, '2011-06-29 17:18:28', '2011-06-29 17:18:28', '<blockquote>· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'open', 'open', '', '61-revision-5', '', '', '2011-06-29 17:18:28', '2011-06-29 17:18:28', '', 61, 'http://localhost/originalhouse/?p=74', 0, 'revision', '', 0),
(114, 1, '2011-07-04 12:07:47', '2011-07-04 12:07:47', '', 'fondonuevaweb', '', 'inherit', 'closed', 'open', '', 'fondonuevaweb', '', '', '2011-07-04 12:07:47', '2011-07-04 12:07:47', '', 25, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondonuevaweb.jpg', 0, 'attachment', 'image/jpeg', 0),
(113, 1, '2011-07-04 11:45:38', '2011-07-04 11:45:38', '', 'Logo Original House (Rojo)', '', 'inherit', 'closed', 'open', '', 'logo-rojo', '', '', '2011-07-04 11:45:38', '2011-07-04 11:45:38', '', 23, 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo.gif', 0, 'attachment', 'image/gif', 0),
(115, 1, '2011-07-04 12:15:07', '2011-07-04 12:15:07', '[catablog template="gallery"]', '', '', 'publish', 'closed', 'open', '', '115', '', '', '2011-07-04 14:12:00', '2011-07-04 14:12:00', '', 0, 'http://localhost/originalhouse/?p=115', 1, 'nav_menu_item', '', 0),
(116, 1, '2011-07-04 12:15:07', '2011-07-04 12:15:07', ' ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.\r\n REFORMA DE INTERIORES.\r\n TRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.\r\n ESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.\r\n ROTACIÓN CONSTANTE DE ARTÍCULOS.\r\n FINANCIACIÓN A 6 MESES SIN INTERESES.\r\n ESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.\r\n', 'Proyectos', '', 'publish', 'closed', 'open', '', 'proyectos', '', '', '2011-07-04 14:12:00', '2011-07-04 14:12:00', '', 0, 'http://localhost/originalhouse/?p=116', 2, 'nav_menu_item', '', 0),
(117, 1, '2011-07-04 12:15:07', '2011-07-04 12:15:07', ' ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.\r\n Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.\r\n Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.\r\n Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.\r\n Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a\r\n\r\n \r\n\r\n\r\nBIENVENIDOS\r\n ', 'Cartelera', '', 'publish', 'closed', 'open', '', '117', '', '', '2011-07-04 14:12:00', '2011-07-04 14:12:00', '', 0, 'http://localhost/originalhouse/?p=117', 3, 'nav_menu_item', '', 0),
(76, 1, '2011-06-29 18:58:49', '2011-06-29 18:58:49', ' ', 'Catálogo', '', 'publish', 'open', 'open', '', '76', '', '', '2011-06-30 12:25:22', '2011-06-30 12:25:22', '', 0, 'http://localhost/originalhouse/?p=76', 1, 'nav_menu_item', '', 0),
(124, 1, '2011-07-04 14:11:45', '2011-07-04 14:11:45', '<table border="0" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<div>\r\n<div><code>[</code><code>tubepress</code><code>]</code></div>\r\n</div></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;', 'Vídeos', '', 'inherit', 'closed', 'open', '', '121-revision-2', '', '', '2011-07-04 14:11:45', '2011-07-04 14:11:45', '', 121, 'http://localhost/originalhouse/?p=124', 0, 'revision', '', 0),
(119, 1, '2011-07-04 12:15:53', '2011-07-04 12:15:53', 'C/ RODRIGUEZ SAN PEDRO, 40\r\n\r\n28015-MADRID\r\n\r\nMETRO:ARGUELLES\r\n\r\nBUS: 2, 16, 21, 61, 202\r\n\r\nPARKING FRENTE A LA TIENDA\r\n\r\nTFNO: 91 543 30 96\r\n\r\nEMAIL: originalhouse@originalhouse.info\r\n\r\n \r\n\r\n \r\n\r\n ', 'Contacto', '', 'publish', 'closed', 'open', '', 'contacto', '', '', '2011-07-04 14:12:00', '2011-07-04 14:12:00', '', 0, 'http://localhost/originalhouse/?p=119', 6, 'nav_menu_item', '', 0),
(120, 1, '2011-07-04 12:15:53', '2011-07-04 12:15:53', ' ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.\r\n REFORMA DE INTERIORES.\r\n TRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.\r\n ESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.\r\n ROTACIÓN CONSTANTE DE ARTÍCULOS.\r\n FINANCIACIÓN A 6 MESES SIN INTERESES.\r\n ESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.\r\n', 'Acerca de', '', 'publish', 'closed', 'open', '', 'acerca-de', '', '', '2011-07-04 14:12:00', '2011-07-04 14:12:00', '', 0, 'http://localhost/originalhouse/?p=120', 5, 'nav_menu_item', '', 0),
(126, 1, '2011-07-04 14:15:23', '2011-07-04 14:15:23', '[tubepress]', 'Vídeos', '', 'inherit', 'closed', 'open', '', '121-autosave', '', '', '2011-07-04 14:15:23', '2011-07-04 14:15:23', '', 121, 'http://localhost/originalhouse/?p=126', 0, 'revision', '', 0),
(127, 1, '2011-07-04 17:21:18', '2011-07-04 17:21:18', '[productspage]', 'Products Page', '', 'publish', 'closed', 'closed', '', 'products-page', '', '', '2011-07-04 17:21:18', '2011-07-04 17:21:18', '', 0, 'http://localhost/originalhouse/?page_id=127', 0, 'page', '', 0),
(128, 1, '2011-07-04 17:21:18', '2011-07-04 17:21:18', '[shoppingcart]', 'Checkout', '', 'publish', 'closed', 'closed', '', 'checkout', '', '', '2011-07-04 17:21:18', '2011-07-04 17:21:18', '', 127, 'http://localhost/originalhouse/?page_id=128', 0, 'page', '', 0),
(129, 1, '2011-07-04 17:21:18', '2011-07-04 17:21:18', '[transactionresults]', 'Transaction Results', '', 'publish', 'closed', 'closed', '', 'transaction-results', '', '', '2011-07-04 17:21:18', '2011-07-04 17:21:18', '', 127, 'http://localhost/originalhouse/?page_id=129', 0, 'page', '', 0),
(111, 1, '2011-06-30 12:28:23', '2011-06-30 12:28:23', ' ', 'Youtube', '', 'publish', 'closed', 'open', '', 'youtube-2', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=111', 4, 'nav_menu_item', '', 0),
(81, 1, '2011-06-29 18:59:31', '2011-06-29 18:59:31', ' ', 'Proyectos', '', 'publish', 'open', 'open', '', '81', '', '', '2011-06-30 12:25:22', '2011-06-30 12:25:22', '', 0, 'http://localhost/originalhouse/?p=81', 2, 'nav_menu_item', '', 0),
(110, 1, '2011-06-30 12:28:23', '2011-06-30 12:28:23', ' ', 'Cartelera', '', 'publish', 'closed', 'open', '', 'cartelera-2', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=110', 3, 'nav_menu_item', '', 0),
(82, 1, '2011-06-29 19:55:26', '2011-06-29 19:55:26', '<ul>\r\n <li>ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.</li>\r\n <li>REFORMA DE INTERIORES.</li>\r\n <li>TRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.</li>\r\n <li>ESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.</li>\r\n <li>ROTACIÓN CONSTANTE DE ARTÍCULOS.</li>\r\n <li>FINANCIACIÓN A 6 MESES SIN INTERESES.</li>\r\n <li>ESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.</li>\r\n</ul>', 'Servicios', '', 'publish', 'closed', 'open', '', 'servicios', '', '', '2011-06-29 19:55:41', '2011-06-29 19:55:41', '', 0, 'http://localhost/originalhouse/?page_id=82', 0, 'page', '', 0),
(83, 1, '2011-06-29 19:55:22', '2011-06-29 19:55:22', 'ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.\nREFORMA DE INTERIORES.\nTRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.\nESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.\nROTACIÓN CONSTANTE DE ARTÍCULOS.\nFINANCIACIÓN A 6 MESES SIN INTERESES.\nESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.', 'Servicios', '', 'inherit', 'closed', 'open', '', '82-revision', '', '', '2011-06-29 19:55:22', '2011-06-29 19:55:22', '', 82, 'http://localhost/originalhouse/?p=83', 0, 'revision', '', 0),
(84, 1, '2011-06-29 19:55:26', '2011-06-29 19:55:26', '<ul>\r\n <li>ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.</li>\r\n <li>REFORMA DE INTERIORES.</li>\r\n <li>TRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.</li>\r\n <li>ESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.</li>\r\n <li>ROTACIÓN CONSTANTE DE ARTÍCULOS.</li>\r\n <li>FINANCIACIÓN A 6 MESES SIN INTERESES.</li>\r\n <li>ESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.</li>\r\n</ul>', 'Servicios', '', 'inherit', 'closed', 'open', '', '82-revision-2', '', '', '2011-06-29 19:55:26', '2011-06-29 19:55:26', '', 82, 'http://localhost/originalhouse/?p=84', 0, 'revision', '', 0),
(102, 1, '2011-06-29 20:08:37', '2011-06-29 20:08:37', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-10', '', '', '2011-06-29 20:08:37', '2011-06-29 20:08:37', '', 61, 'http://localhost/originalhouse/?p=102', 0, 'revision', '', 0),
(86, 1, '2011-06-29 19:56:42', '2011-06-29 19:56:42', '<ul>\n <li>ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.</li>\n <li>REFORMA DE INTERIORES.</li>\n <li>TRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.</li>\n <li>ESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.</li>\n <li>ROTACIÓN CONSTANTE DE ARTÍCULOS.</li>\n <li>FINANCIACIÓN A 6 MESES SIN INTERESES.</li>\n <li>ESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.</li>\n</ul>', 'Servicios', '', 'inherit', 'closed', 'open', '', '82-autosave', '', '', '2011-06-29 19:56:42', '2011-06-29 19:56:42', '', 82, 'http://localhost/originalhouse/?p=86', 0, 'revision', '', 0),
(87, 1, '2011-06-29 18:23:03', '2011-06-29 18:23:03', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-6', '', '', '2011-06-29 18:23:03', '2011-06-29 18:23:03', '', 61, 'http://localhost/originalhouse/?p=87', 0, 'revision', '', 0),
(88, 1, '2011-06-29 19:58:52', '2011-06-29 19:58:52', 'C/ RODRIGUEZ SAN PEDRO, 40\r\n\r\n28015-MADRID\r\n\r\nMETRO:ARGUELLES\r\n\r\nBUS: 2, 16, 21, 61, 202\r\n\r\nPARKING FRENTE A LA TIENDA\r\n\r\nTFNO: 91 543 30 96\r\n\r\nEMAIL: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Localízanos', '', 'publish', 'closed', 'open', '', 'localizanos', '', '', '2011-06-29 20:00:14', '2011-06-29 20:00:14', '', 0, 'http://localhost/originalhouse/?page_id=88', 0, 'page', '', 0),
(89, 1, '2011-06-29 19:58:34', '2011-06-29 19:58:34', '', 'Localízanos', '', 'inherit', 'closed', 'open', '', '88-revision', '', '', '2011-06-29 19:58:34', '2011-06-29 19:58:34', '', 88, 'http://localhost/originalhouse/?p=89', 0, 'revision', '', 0),
(90, 1, '2011-06-29 19:59:13', '2011-06-29 19:59:13', ' ', 'Contacto', '', 'publish', 'closed', 'open', '', '90', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=90', 5, 'nav_menu_item', '', 0),
(91, 1, '2011-06-29 20:01:16', '2011-06-29 20:01:16', 'C/ RODRIGUEZ SAN PEDRO, 40\n\n28015-MADRID\n\nMETRO:ARGUELLES\n\nBUS: 2, 16, 21, 61, 202\n\nPARKING FRENTE A LA TIENDA\n\nTFNO: 91 543 30 96\n\nEMAIL: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;', 'Localízanos', '', 'inherit', 'closed', 'open', '', '88-autosave', '', '', '2011-06-29 20:01:16', '2011-06-29 20:01:16', '', 88, 'http://localhost/originalhouse/?p=91', 0, 'revision', '', 0),
(92, 1, '2011-06-29 19:58:52', '2011-06-29 19:58:52', '', 'Localízanos', '', 'inherit', 'closed', 'open', '', '88-revision-2', '', '', '2011-06-29 19:58:52', '2011-06-29 19:58:52', '', 88, 'http://localhost/originalhouse/?p=92', 0, 'revision', '', 0),
(93, 1, '2011-06-29 19:57:09', '2011-06-29 19:57:09', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-7', '', '', '2011-06-29 19:57:09', '2011-06-29 19:57:09', '', 61, 'http://localhost/originalhouse/?p=93', 0, 'revision', '', 0),
(95, 1, '2011-06-29 20:08:12', '2011-06-29 20:08:12', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-9', '', '', '2011-06-29 20:08:12', '2011-06-29 20:08:12', '', 61, 'http://localhost/originalhouse/?p=95', 0, 'revision', '', 0),
(94, 1, '2011-06-29 20:07:57', '2011-06-29 20:07:57', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<p><a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a></p>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n<p>&nbsp;</p>\r\n', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-8', '', '', '2011-06-29 20:07:57', '2011-06-29 20:07:57', '', 61, 'http://localhost/originalhouse/?p=94', 0, 'revision', '', 0),
(96, 1, '2011-06-29 20:12:16', '2011-06-29 20:12:16', '[catablog template="gallery"]', 'Catálogo', '', 'publish', 'closed', 'open', '', 'catalogo', '', '', '2011-06-29 20:13:18', '2011-06-29 20:13:18', '', 0, 'http://localhost/originalhouse/?page_id=96', 0, 'page', '', 0),
(97, 1, '2011-06-29 20:12:14', '2011-06-29 20:12:14', '', 'Catálogo', '', 'inherit', 'closed', 'open', '', '96-revision', '', '', '2011-06-29 20:12:14', '2011-06-29 20:12:14', '', 96, 'http://localhost/originalhouse/?p=97', 0, 'revision', '', 0),
(98, 1, '2011-06-29 20:12:16', '2011-06-29 20:12:16', '[catablog]', 'Catálogo', '', 'inherit', 'closed', 'open', '', '96-revision-2', '', '', '2011-06-29 20:12:16', '2011-06-29 20:12:16', '', 96, 'http://localhost/originalhouse/?p=98', 0, 'revision', '', 0),
(99, 1, '2011-06-29 20:12:43', '2011-06-29 20:12:43', '[catablog template="gallery"]', 'Catálogo', '', 'inherit', 'closed', 'open', '', '96-revision-3', '', '', '2011-06-29 20:12:43', '2011-06-29 20:12:43', '', 96, 'http://localhost/originalhouse/?p=99', 0, 'revision', '', 0),
(112, 1, '2011-06-30 12:19:48', '2011-06-30 12:19:48', '<ul>\r\n <li>ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</li>\r\n <li>Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</li>\r\n <li>Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</li>\r\n <li>Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</li>\r\n <li>Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</li>\r\n</ul>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-12', '', '', '2011-06-30 12:19:48', '2011-06-30 12:19:48', '', 61, 'http://localhost/originalhouse/?p=112', 0, 'revision', '', 0),
(103, 1, '2011-06-30 12:14:01', '2011-06-30 12:14:01', '', 'Logo Original House', '', 'inherit', 'closed', 'open', '', 'logo-2', '', '', '2011-06-30 12:14:01', '2011-06-30 12:14:01', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo1.gif', 0, 'attachment', 'image/gif', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(107, 1, '2011-06-30 12:08:31', '2011-06-30 12:08:31', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-11', '', '', '2011-06-30 12:08:31', '2011-06-30 12:08:31', '', 61, 'http://localhost/originalhouse/?p=107', 0, 'revision', '', 0),
(121, 1, '2011-07-04 14:11:45', '2011-07-04 14:11:45', '[tubepress]', 'Vídeos', '', 'publish', 'closed', 'open', '', 'videos', '', '', '2011-07-04 14:14:21', '2011-07-04 14:14:21', '', 0, 'http://localhost/originalhouse/?page_id=121', 0, 'page', '', 0),
(122, 1, '2011-07-04 14:11:41', '2011-07-04 14:11:41', '', 'Vídeos', '', 'inherit', 'closed', 'open', '', '121-revision', '', '', '2011-07-04 14:11:41', '2011-07-04 14:11:41', '', 121, 'http://localhost/originalhouse/?p=122', 0, 'revision', '', 0),
(125, 1, '2011-07-04 14:14:17', '2011-07-04 14:14:17', '[tubepress]', 'Vídeos', '', 'inherit', 'closed', 'open', '', '121-revision-3', '', '', '2011-07-04 14:14:17', '2011-07-04 14:14:17', '', 121, 'http://localhost/originalhouse/?p=125', 0, 'revision', '', 0),
(123, 1, '2011-07-04 14:12:00', '2011-07-04 14:12:00', '\r\n\r\n\r\n\r\n[tubepress]\r\n\r\n\r\n\r\n\r\n ', '', '', 'publish', 'closed', 'open', '', '123', '', '', '2011-07-04 14:12:00', '2011-07-04 14:12:00', '', 0, 'http://localhost/originalhouse/?p=123', 4, 'nav_menu_item', '', 0),
(130, 1, '2011-07-04 17:21:18', '2011-07-04 17:21:18', '[userlog]', 'Your Account', '', 'publish', 'closed', 'closed', '', 'your-account', '', '', '2011-07-04 17:21:18', '2011-07-04 17:21:18', '', 127, 'http://localhost/originalhouse/?page_id=130', 0, 'page', '', 0),
(131, 1, '2011-07-04 17:22:28', '2011-07-04 17:22:28', 'trtrrtrttrtrrtrttr', 'trtrtrtrtrrttrtr', '', 'publish', 'closed', 'closed', '', 'trtrtrtrtrrttrtr', '', '', '2011-07-04 17:22:28', '2011-07-04 17:22:28', '', 0, 'http://localhost/originalhouse/?post_type=wpsc-product&#038;p=131', 0, 'wpsc-product', '', 0),
(132, 1, '2011-07-04 17:23:31', '2011-07-04 17:23:31', 'trtrrtrttrtrrtrttr', 'trtrtrtrtrrttrtr', '', 'inherit', 'closed', 'open', '', '131-autosave', '', '', '2011-07-04 17:23:31', '2011-07-04 17:23:31', '', 131, 'http://localhost/originalhouse/?p=132', 0, 'revision', '', 0),
(133, 1, '2011-07-04 17:27:11', '2011-07-04 17:27:11', '[tcp_shopping_cart]', 'Shopping cart', '', 'trash', 'closed', 'open', '', 'shopping-cart', '', '', '2011-07-04 17:27:54', '2011-07-04 17:27:54', '', 0, 'http://localhost/originalhouse/?page_id=133', 0, 'page', '', 0),
(134, 1, '2011-07-04 17:27:11', '2011-07-04 17:27:11', '[tcp_checkout]', 'Checkout', '', 'trash', 'closed', 'open', '', 'checkout', '', '', '2011-07-04 17:27:54', '2011-07-04 17:27:54', '', 133, 'http://localhost/originalhouse/?page_id=134', 0, 'page', '', 0),
(135, 1, '2011-07-04 17:27:22', '0000-00-00 00:00:00', '', 'Borrador automático', '', 'auto-draft', 'closed', 'open', '', '', '', '', '2011-07-04 17:27:22', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=tcp_product&p=135', 0, 'tcp_product', '', 0),
(136, 1, '2011-07-04 17:27:11', '2011-07-04 17:27:11', '[tcp_shopping_cart]', 'Shopping cart', '', 'inherit', 'closed', 'open', '', '133-revision', '', '', '2011-07-04 17:27:11', '2011-07-04 17:27:11', '', 133, 'http://localhost/originalhouse/?p=136', 0, 'revision', '', 0),
(137, 1, '2011-07-04 17:27:11', '2011-07-04 17:27:11', '[tcp_checkout]', 'Checkout', '', 'inherit', 'closed', 'open', '', '134-revision', '', '', '2011-07-04 17:27:11', '2011-07-04 17:27:11', '', 134, 'http://localhost/originalhouse/?p=137', 0, 'revision', '', 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_addresses`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_addresses` (
`address_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`customer_id` bigint(20) unsigned NOT NULL,
`default_shipping` char(1) NOT NULL COMMENT 'Y->yes',
`default_billing` char(1) NOT NULL COMMENT 'Y->yes',
`name` varchar(250) NOT NULL,
`firstname` varchar(50) NOT NULL,
`lastname` varchar(100) NOT NULL,
`company` varchar(50) NOT NULL,
`street` varchar(100) NOT NULL,
`city` varchar(100) NOT NULL,
`city_id` char(4) NOT NULL DEFAULT '',
`region` varchar(100) NOT NULL,
`region_id` char(2) NOT NULL DEFAULT '',
`postcode` char(6) NOT NULL,
`country_id` char(2) NOT NULL,
`telephone_1` varchar(50) NOT NULL,
`telephone_2` varchar(50) NOT NULL,
`fax` varchar(50) NOT NULL,
`email` varchar(255) NOT NULL,
PRIMARY KEY (`address_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Addresses' AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_tcp_addresses`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_countries`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_countries` (
`iso` char(2) NOT NULL,
`name` varchar(50) NOT NULL,
`en` varchar(50) NOT NULL,
`es` varchar(50) NOT NULL,
`de` varchar(50) NOT NULL,
`fr` varchar(50) NOT NULL,
`iso3` char(3) NOT NULL,
`code` int(4) NOT NULL,
`ue` int(1) NOT NULL,
`nue` int(1) NOT NULL,
`re` int(1) NOT NULL,
PRIMARY KEY (`iso`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Volcar la base de datos para la tabla `wp_tcp_countries`
--
INSERT INTO `wp_tcp_countries` (`iso`, `name`, `en`, `es`, `de`, `fr`, `iso3`, `code`, `ue`, `nue`, `re`) VALUES
('AD', 'ANDORRA', 'ANDORRA', 'ANDORRA', 'ANDORRA', 'ANDORRE', 'AND', 20, 0, 0, 1),
('AE', 'UNITED ARAB EMIRATES', 'UNITED ARAB EMIRATES', 'EMIRATOS ÁRABES UNIDOS', 'VEREINIGTE ARABISCHE EMIRATE', 'ÉMIRATS ARABES UNIS', 'ARE', 784, 0, 0, 0),
('AF', 'AFGHANISTAN', 'AFGHANISTAN', 'AFGHANISTÁN', 'Afghanistan', 'Afghanistan', 'AFG', 4, 0, 0, 0),
('AG', 'ANTIGUA AND BARBUDA', 'ANTIGUA AND BARBUDA', 'ANTIGUA Y BARBUDA', 'ANTIGUA UND BARBUDA', 'ANTIGUA ET BARBUDA', 'ATG', 28, 0, 0, 0),
('AI', 'ANGUILLA', 'ANGUILLA', 'ANGUILLA', 'ANGUILLA', 'ANGUILLA', 'AIA', 660, 0, 0, 0),
('AL', 'ALBANIA', 'ALBANIA', 'ALBANIA', 'ALBANIEN', 'ALBANIE', 'ALB', 8, 0, 0, 1),
('AM', 'ARMENIA', 'ARMENIA', 'ARMENIA', 'ARMENIEN', 'ARMÉNIE', 'ARM', 51, 0, 0, 0),
('AN', 'NETHERLANDS ANTILLES', 'NETHERLANDS ANTILLES', 'ANTILLAS HOLANDESAS', 'NIEDERLÄNDISCHE ANTILLEN', 'ANTILLES NÉERLANDAISES', 'ANT', 530, 1, 0, 1),
('AO', 'ANGOLA', 'ANGOLA', 'ANGOLA', 'ANGOLA', 'ANGOLA', 'AGO', 24, 0, 0, 0),
('AQ', 'ANTARCTICA', 'ANTARCTICA', 'ANTÁRTIDA', 'ANTARKTIS', 'ANTARCTIQUE', '', 0, 0, 0, 0),
('AR', 'ARGENTINA', 'ARGENTINA', 'ARGENTINA', 'ARGENTINIEN', 'ARGENTINE', 'ARG', 32, 0, 0, 0),
('AS', 'AMERICAN SAMOA', 'AMERICAN SAMOA', 'SAMOA AMERICANA', 'AMERIKANISCHE SAMOA', 'SAMOA AMÉRICAINES', 'ASM', 16, 0, 0, 0),
('AT', 'AUSTRIA', 'AUSTRIA', 'AUSTRIA', 'ÖSTERREICH', 'AUTRICHE', 'AUT', 40, 1, 0, 1),
('AU', 'AUSTRALIA', 'AUSTRALIA', 'AUSTRALIA', 'AUSTRALIEN', 'AUSTRALIE', 'AUS', 36, 0, 0, 0),
('AW', 'ARUBA', 'ARUBA', 'ARUBA', 'ARUBA', 'ARUBA', 'ABW', 533, 0, 0, 0),
('AZ', 'AZERBAIJAN', 'AZERBAIJAN', 'AZERBAIYÁN', 'ASERBAIDSCHAN', 'AZERBAÏDJAN', 'AZE', 31, 0, 0, 0),
('BA', 'BOSNIA AND HERZEGOVINA', 'BOSNIA AND HERZEGOVINA', 'BOSNIA Y HERZEGOVINA', 'BOSNIEN UND HERZEGOWINA', 'BOSNIE-HERZÉGOVINE', 'BIH', 70, 0, 0, 1),
('BB', 'BARBADOS', 'BARBADOS', 'BARBADOS', 'BARBADOS', 'BARBADE', 'BRB', 52, 0, 0, 0),
('BD', 'BANGLADESH', 'BANGLADESH', 'BANGLADESH', 'BANGLADESCH', 'BANGLADESH', 'BGD', 50, 0, 0, 0),
('BE', 'BELGIUM', 'BELGIUM', 'BÉLGICA', 'BELGIEN', 'BELGIQUE', 'BEL', 56, 1, 0, 1),
('BF', 'BURKINA FASO', 'BURKINA FASO', 'BURKINA FASO', 'BURKINA FASO', 'BURKINA FASO', 'BFA', 854, 0, 0, 0),
('BG', 'BULGARIA', 'BULGARIA', 'BULGARIA', 'BULGARIEN', 'BULGARIE', 'BGR', 100, 1, 0, 1),
('BH', 'BAHRAIN', 'BAHRAIN', 'BAHRÉIN', 'BAHRAIN', 'BAHREÏN', 'BHR', 48, 0, 0, 0),
('BI', 'BURUNDI', 'BURUNDI', 'BURUNDI', 'BURUNDI', 'BURUNDI', 'BDI', 108, 0, 0, 0),
('BJ', 'BENIN', 'BENIN', 'BENIN', 'BENIN', 'BÉNIN', 'BEN', 204, 0, 0, 0),
('BM', 'BERMUDA', 'BERMUDA', 'BERMUDAS', 'BERMUDA', 'BERMUDES', 'BMU', 60, 0, 0, 0),
('BN', 'BRUNEI DARUSSALAM', 'BRUNEI DARUSSALAM', 'BRUNÉI', 'BRUNEI', 'BRUNÉI DARUSSALAM', 'BRN', 96, 0, 0, 0),
('BO', 'BOLIVIA', 'BOLIVIA', 'BOLIVIA', 'BOLIVIEN', 'BOLIVIE', 'BOL', 68, 0, 0, 0),
('BR', 'BRAZIL', 'BRAZIL', 'BRASIL', 'BRASILIEN', 'BRÉSIL', 'BRA', 76, 0, 0, 0),
('BS', 'BAHAMAS', 'BAHAMAS', 'BAHAMAS', 'BAHAMAS', 'BAHAMAS', 'BHS', 44, 0, 0, 0),
('BT', 'BHUTAN', 'BHUTAN', 'BHUTÁN', 'BHUTAN', 'BHOUTAN', 'BTN', 64, 0, 0, 0),
('BV', 'BOUVET ISLAND', 'BOUVET ISLAND', 'ISLA BOUVET', 'BOUVET INSEL', 'BOUVET, ÎLE', '', 0, 0, 0, 0),
('BW', 'BOTSWANA', 'BOTSWANA', 'BOTSUANA', 'BOTSWANA', 'BOTSWANA', 'BWA', 72, 0, 0, 0),
('BY', 'BELARUS', 'BELARUS', 'BIELORRUSIA', 'WEIßRUSSLAND', 'BÉLARUS', 'BLR', 112, 0, 0, 0),
('BZ', 'BELIZE', 'BELIZE', 'BELICE', 'BELIZE', 'BELIZE', 'BLZ', 84, 0, 0, 0),
('CA', 'CANADA', 'CANADA', 'CANADÁ', 'KANADA', 'CANADA', 'CAN', 124, 0, 0, 0),
('CC', 'COCOS (KEELING) ISLANDS', 'COCOS (KEELING) ISLANDS', 'ISLAS COCOS', 'KOKOSINSELN', 'COCOS (KEELING); ÎLES', 'CCK', 166, 0, 0, 0),
('CD', 'CONGO, THE DEMOCRATIC REPUBLIC OF THE', 'CONGO, THE DEMOCRATIC REPUBLIC OF THE', 'REPÚBLICA DEMOCRÁTICA DEL CONGO', 'KONGO (DEM. REP.)', 'CONGO, LA RÉPUBLIQUE DÉMOCRATIQUE DU', 'COD', 180, 0, 0, 0),
('CF', 'CENTRAL AFRICAN REPUBLIC', 'CENTRAL AFRICAN REPUBLIC', 'REPÚBLICA CENTROAFRICANA', 'ZENTRALAFRIKANISCHE REPUBLIK', 'CENTRAFRICAINE, RÉPUBLIQUE', 'CAF', 140, 0, 0, 0),
('CG', 'CONGO', 'CONGO', 'CONGO', 'KONGO', 'CONGO', 'COG', 178, 0, 0, 0),
('CH', 'SWITZERLAND', 'SWITZERLAND', 'SUIZA', 'SCHWEIZ', 'SUISSE', 'CHE', 756, 0, 1, 0),
('CI', 'COTE D`IVOIRE', 'COTE D`IVOIRE', 'COSTA DE MARFIL', 'ELFENBEINKÜSTE', 'COTE D`IVOIRE', 'CIV', 384, 0, 0, 0),
('CK', 'COOK ISLANDS', 'COOK ISLANDS', 'ISLAS COOK', 'COOKINSELN', 'COOK, ÎLES', 'COK', 184, 0, 0, 0),
('CL', 'CHILE', 'CHILE', 'CHILE', 'CHILE', 'CHILI', 'CHL', 152, 0, 0, 0),
('CM', 'CAMEROON', 'CAMEROON', 'CAMERÚN', 'KAMERUN', 'CAMEROUN', 'CMR', 120, 0, 0, 0),
('CN', 'CHINA', 'CHINA', 'CHINA', 'CHINA', 'CHINE', 'CHN', 156, 0, 0, 0),
('CO', 'COLOMBIA', 'COLOMBIA', 'COLOMBIA', 'KOLUMBIEN', 'COLOMBIE', 'COL', 170, 0, 0, 0),
('CR', 'COSTA RICA', 'COSTA RICA', 'COSTA RICA', 'COSTA RICA', 'COSTA RICA', 'CRI', 188, 0, 0, 0),
('CS', 'SERBIA AND MONTENEGRO', 'SERBIA AND MONTENEGRO', 'SERBIA Y MONTENEGRO', 'SERBIEN UND MONTENEGRO', 'SERBIE-ET-MONTÉNEGRO', '', 0, 0, 0, 1),
('CU', 'CUBA', 'CUBA', 'CUBA', 'KUBA', 'CUBA', 'CUB', 192, 0, 0, 0),
('CV', 'CAPE VERDE', 'CAPE VERDE', 'CABO VERDE', 'KAP VERDE', 'CAP-VERT', 'CPV', 132, 0, 0, 0),
('CX', 'CHRISTMAS ISLAND', 'CHRISTMAS ISLAND', 'ISLA DE NAVIDAD', 'CHRISTMAS INSEL', 'CHRISTMAS, ÎLE', 'CXR', 162, 0, 0, 0),
('CY', 'CYPRUS', 'CYPRUS', 'CHIPRE', 'ZYPERN', 'CHYPRE', 'CYP', 196, 0, 0, 0),
('CZ', 'CZECH REPUBLIC', 'CZECH REPUBLIC', 'REPÚBLICA CHECA', 'TSCHECHISCHE REPUBLIK', 'TCHÍšQUE, RÉPUBLIQUE', 'CZE', 203, 0, 0, 1),
('DE', 'GERMANY', 'GERMANY', 'ALEMANIA', 'DEUTSCHLAND', 'ALLEMAGNE', 'DEU', 276, 1, 0, 1),
('DJ', 'DJIBOUTI', 'DJIBOUTI', 'YIBUTI', 'DJIBOUTI', 'DJIBOUTI', 'DJI', 262, 0, 0, 0),
('DK', 'DENMARK', 'DENMARK', 'DINAMARCA', 'DÄNEMARK', 'DANEMARK', 'DNK', 208, 1, 0, 1),
('DM', 'DOMINICA', 'DOMINICA', 'DOMINICA', 'DOMINICA', 'DOMINIQUE', 'DMA', 212, 0, 0, 0),
('DO', 'DOMINICAN REPUBLIC', 'DOMINICAN REPUBLIC', 'REPÚBLICA DOMINICANA', 'DOMINIKANISCHE REPUBLIK', 'DOMINICAINE, RÉPUBLIQUE', 'DOM', 214, 0, 0, 0),
('EC', 'ECUADOR', 'ECUADOR', 'ECUADOR', 'ECUADOR', 'ÉQUATEUR', 'ECU', 218, 0, 0, 0),
('EE', 'ESTONIA', 'ESTONIA', 'ESTONIA', 'ESTLAND', 'ESTONIE', 'EST', 233, 0, 0, 0),
('EG', 'EGYPT', 'EGYPT', 'EGIPTO', 'ÄGYPTEN', 'ÉGYPTE', 'EGY', 818, 0, 0, 0),
('EH', 'WESTERN SAHARA', 'WESTERN SAHARA', 'SAHARA OCCIDENTAL', 'WESTSAHARA', 'SAHARA OCCIDENTAL', 'ESH', 732, 0, 0, 0),
('ER', 'ERITREA', 'ERITREA', 'ERITREA', 'ERITREA', 'ÉRYTHRÉE', 'ERI', 232, 0, 0, 0),
('ES', 'SPAIN', 'SPAIN', 'ESPAÑA', 'SPANIEN', 'ESPAGNE', 'ESP', 724, 1, 0, 1),
('ET', 'ETHIOPIA', 'ETHIOPIA', 'ETIOPÍA', 'ÄTHIOPIEN', 'ÉTHIOPIE', 'ETH', 231, 0, 0, 0),
('FI', 'FINLAND', 'FINLAND', 'FINLANDIA', 'FINNLAND', 'FINLANDE', 'FIN', 246, 0, 1, 0),
('FJ', 'FIJI', 'FIJI', 'FIYI', 'FIDSCHI', 'FIDJI', 'FJI', 242, 0, 0, 0),
('FK', 'FALKLAND ISLANDS (MALVINAS)', 'FALKLAND ISLANDS (MALVINAS)', 'ISLAS MALVINAS', 'FALKLANDINSELN', 'FALKLAND, ÎLES (MALVINAS)', 'FLK', 238, 0, 0, 0),
('FM', 'MICRONESIA, FEDERATED STATES OF', 'MICRONESIA, FEDERATED STATES OF', 'MICRONESIA', 'MIKRONESIEN', 'MICRONÉSIE, ÉTATS FÉDÉRÉS DE', 'FSM', 583, 0, 0, 0),
('FO', 'FAROE ISLANDS', 'FAROE ISLANDS', 'ISLAS FEROE', 'FÄRÖER-INSELN', 'FÉROÉ, ÎLES', 'FRO', 234, 0, 0, 0),
('FR', 'FRANCE', 'FRANCE', 'FRANCIA', 'FRANKREICH', 'FRANCE', 'FRA', 250, 1, 0, 1),
('GA', 'GABON', 'GABON', 'GABÓN', 'GABUN', 'GABON', 'GAB', 266, 0, 0, 0),
('GB', 'UNITED KINGDOM', 'UNITED KINGDOM', 'REINO UNIDO', 'GROßBRITANNIEN', 'ROYAUME-UNI', 'GBR', 826, 1, 0, 1),
('GD', 'GRENADA', 'GRENADA', 'GRANADA', 'GRENADA', 'GRENADE', 'GRD', 308, 0, 0, 0),
('GE', 'GEORGIA', 'GEORGIA', 'GEORGIA', 'GEORGIEN', 'GÉORGIE', 'GEO', 268, 0, 0, 0),
('GF', 'FRENCH GUIANA', 'FRENCH GUIANA', 'GUAYANA FRANCESA', 'FRANZÖSISCH GUYANA', 'GUYANE FRANͧAISE', 'GUF', 254, 0, 0, 0),
('GH', 'GHANA', 'GHANA', 'GHANA', 'GHANA', 'GHANA', 'GHA', 288, 0, 0, 0),
('GI', 'GIBRALTAR', 'GIBRALTAR', 'GIBRALTAR', 'GIBRALTAR', 'GIBRALTAR', 'GIB', 292, 1, 0, 1),
('GL', 'GREENLAND', 'GREENLAND', 'GROENLANDIA', 'GRÖNLAND', 'GROENLAND', 'GRL', 304, 0, 0, 0),
('GM', 'GAMBIA', 'GAMBIA', 'GAMBIA', 'GAMBIA', 'GAMBIE', 'GMB', 270, 0, 0, 0),
('GN', 'GUINEA', 'GUINEA', 'GUINEA', 'GUINEA', 'GUINÉE', 'GIN', 324, 0, 0, 0),
('GP', 'GUADELOUPE', 'GUADELOUPE', 'GUADALUPE', 'GUADELOUPE', 'GUADELOUPE', 'GLP', 312, 0, 0, 0),
('GQ', 'EQUATORIAL GUINEA', 'EQUATORIAL GUINEA', 'GUINEA ECUATORIAL', 'ÄQUATORIAL-GUINEA', 'GUINÉE ÉQUATORIALE', 'GNQ', 226, 0, 0, 0),
('GR', 'GREECE', 'GREECE', 'GRECIA', 'GRIECHENLAND', 'GRÍšCE', 'GRC', 300, 1, 0, 1),
('GS', 'SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS', 'SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS', 'ISLAS GEORGIAS DEL SUR Y SANDWICH DEL SUR', 'SÜDGEORGIEN UND DIE SÜDLICHEN SANDWICHINSELN', 'GÉORGIE DU SUD ET LES ÎLES SANDWICH DU SUD', 'SGS', 239, 0, 0, 0),
('GT', 'GUATEMALA', 'GUATEMALA', 'GUATEMALA', 'GUATEMALA', 'GUATEMALA', 'GTM', 320, 0, 0, 0),
('GU', 'GUAM', 'GUAM', 'GUAM', 'GUAM', 'GUAM', 'GUM', 316, 0, 0, 0),
('GW', 'GUINEA-BISSAU', 'GUINEA-BISSAU', 'GUINEA-BISSAU', 'GUINEA-BISSAU', 'GUINÉE-BISSAU', 'GNB', 624, 0, 0, 0),
('GY', 'GUYANA', 'GUYANA', 'GUYANA', 'GUYANA', 'GUYANA', 'GUY', 328, 0, 0, 0),
('HK', 'HONG KONG', 'HONG KONG', 'HONG KONG', 'HONGKONG', 'HONG-KONG', 'HKG', 344, 0, 0, 0),
('HM', 'HEARD ISLAND AND MCDONALD ISLANDS', 'HEARD ISLAND AND MCDONALD ISLANDS', 'ISLAS HEARD Y MCDONALD', 'HEARD- UND MCDONALD-INSELN', 'HEARD, ÎLE ET MCDONALD, ÎLES', '334', 0, 0, 0, 0),
('HN', 'HONDURAS', 'HONDURAS', 'HONDURAS', 'HONDURAS', 'HONDURAS', 'HND', 340, 0, 0, 0),
('HR', 'CROATIA', 'CROATIA', 'CROACIA', 'KROATIEN', 'CROATIE', 'HRV', 191, 1, 0, 1),
('HT', 'HAITI', 'HAITI', 'HAITÍ', 'HAITI', 'HAÏTI', 'HTI', 332, 0, 0, 0),
('HU', 'HUNGARY', 'HUNGARY', 'HUNGRÍA', 'UNGARN', 'HONGRIE', 'HUN', 348, 1, 0, 1),
('ID', 'INDONESIA', 'INDONESIA', 'INDONESIA', 'INDONESIEN', 'INDONÉSIE', 'IDN', 360, 0, 0, 0),
('IE', 'IRELAND', 'IRELAND', 'IRLANDA', 'IRLAND', 'IRLANDE', 'IRL', 372, 1, 0, 1),
('IL', 'ISRAEL', 'ISRAEL', 'ISRAEL', 'ISRAEL', 'ISRAËL', 'ISR', 376, 0, 0, 0),
('IN', 'INDIA', 'INDIA', 'INDIA', 'INDIEN', 'INDE', 'IND', 356, 0, 0, 0),
('IO', 'BRITISH INDIAN OCEAN TERRITORY', 'BRITISH INDIAN OCEAN TERRITORY', 'TERRITORIO BRITÁNICO DEL OCÉANO ÍNDICO', 'BRITISCHE HOHEITSGEBIETE', 'TERRITOIRE BRITANNIQUE DE L`OCÉAN INDIEN', 'IOT', 86, 0, 0, 0),
('IQ', 'IRAQ', 'IRAQ', 'IRAQ', 'IRAK', 'IRAQ', 'IRQ', 368, 0, 0, 0),
('IR', 'IRAN, ISLAMIC REPUBLIC OF', 'IRAN, ISLAMIC REPUBLIC OF', 'IRÁN', 'IRAN', 'IRAN, RÉPUBLIQUE ISLAMIQUE D`', 'IRN', 364, 0, 0, 0),
('IS', 'ICELAND', 'ICELAND', 'ISLANDIA', 'ISLAND', 'ISLANDE', 'ISL', 352, 0, 0, 0),
('IT', 'ITALY', 'ITALY', 'ITALIA', 'ITALIEN', 'ITALIE', 'ITA', 380, 1, 0, 1),
('JM', 'JAMAICA', 'JAMAICA', 'JAMAICA', 'JAMAIKA', 'JAMAÏQUE', 'JAM', 388, 0, 0, 0),
('JO', 'JORDAN', 'JORDAN', 'JORDANIA', 'JORDANIEN', 'JORDANIE', 'JOR', 400, 0, 0, 0),
('JP', 'JAPAN', 'JAPAN', 'JAPÓN', 'JAPAN', 'JAPON', 'JPN', 392, 0, 0, 0),
('KE', 'KENYA', 'KENYA', 'KENIA', 'KENIA', 'KENYA', 'KEN', 404, 0, 0, 0),
('KG', 'KYRGYZSTAN', 'KYRGYZSTAN', 'KIRGUISTÁN', 'KIRGISISTAN', 'KIRGHIZISTAN', 'KGZ', 417, 0, 0, 0),
('KH', 'CAMBODIA', 'CAMBODIA', 'CAMBOYA', 'KAMBODSCHA', 'CAMBODGE', 'KHM', 116, 0, 0, 0),
('KI', 'KIRIBATI', 'KIRIBATI', 'KIRIBATI', 'KIRIBATI', 'KIRIBATI', 'KIR', 296, 0, 0, 0),
('KM', 'COMOROS', 'COMOROS', 'COMORAS', 'KOMOREN', 'COMORES', 'COM', 174, 0, 0, 0),
('KN', 'SAINT KITTS AND NEVIS', 'SAINT KITTS AND NEVIS', 'SAN CRISTÓBAL Y NEVIS', 'SAINT KITTS UND NEVIS', 'SAINT-KITTS-ET-NEVIS', 'KNA', 659, 0, 0, 0),
('KP', 'KOREA, DEMOCRATIC PEOPLE`S REPUBLIC OF', 'KOREA, DEMOCRATIC PEOPLE`S REPUBLIC OF', 'COREA DEL NORTE', 'NORDKOREA', 'CORÉE, RÉPUBLIQUE POPULAIRE DÉMOCRATIQUE ', 'PRK', 408, 0, 0, 0),
('KR', 'KOREA, REPUBLIC OF', 'KOREA, REPUBLIC OF', 'COREA DEL SUR', 'SÜDKOREA', 'CORÉE, RÉPUBLIQUE DE', 'KOR', 410, 0, 0, 0),
('KW', 'KUWAIT', 'KUWAIT', 'KUWAIT', 'KUWAIT', 'KOWEIT', 'KWT', 414, 0, 0, 0),
('KY', 'CAYMAN ISLANDS', 'CAYMAN ISLANDS', 'ISLAS CAIMÁN', 'CAYMAN-INSELN', 'CAÏMANES, ÎLES', 'CYM', 136, 0, 0, 0),
('KZ', 'KAZAKHSTAN', 'KAZAKHSTAN', 'KAZAJSTÁN', 'KASACHSTAN', 'KAZAKHSTAN', 'KAZ', 398, 0, 0, 0),
('LA', 'LAO PEOPLE`S DEMOCRATIC REPUBLIC', 'LAO PEOPLE`S DEMOCRATIC REPUBLIC', 'LAOS', 'LAOS', 'LAO, RÉPUBLIQUE DÉMOCRATIQUE POPULAIRE', 'LAO', 418, 0, 0, 0),
('LB', 'LEBANON', 'LEBANON', 'LÍBANO', 'LIBANON', 'LIBAN', 'LBN', 422, 0, 0, 0),
('LC', 'SAINT LUCIA', 'SAINT LUCIA', 'SANTA LUCÍA', 'SAINT LUCIA', 'SAINTE-LUCIE', 'LCA', 662, 0, 0, 0),
('LI', 'LIECHTENSTEIN', 'LIECHTENSTEIN', 'LIECHTENSTEIN', 'LIECHTENSTEIN', 'LIECHTENSTEIN', 'LIE', 438, 1, 0, 1),
('LK', 'SRI LANKA', 'SRI LANKA', 'SRI LANKA', 'SRI LANKA', 'SRI LANKA', 'LKA', 144, 0, 0, 0),
('LR', 'LIBERIA', 'LIBERIA', 'LIBERIA', 'LIBERIA', 'LIBÉRIA', 'LBR', 430, 0, 0, 0),
('LS', 'LESOTHO', 'LESOTHO', 'LESOTHO', 'LESOTHO', 'LESOTHO', 'LSO', 426, 0, 0, 0),
('LT', 'LITHUANIA', 'LITHUANIA', 'LITUANIA', 'LITAUEN', 'LITUANIE', 'LTU', 440, 1, 0, 1),
('LU', 'LUXEMBOURG', 'LUXEMBOURG', 'LUXEMBURGO', 'LUXEMBURG', 'LUXEMBOURG', 'LUX', 442, 1, 0, 1),
('LV', 'LATVIA', 'LATVIA', 'LETONIA', 'LETTLAND', 'LETTONIE', 'LVA', 428, 1, 0, 1),
('LY', 'LIBYAN ARAB JAMAHIRIYA', 'LIBYAN ARAB JAMAHIRIYA', 'LIBIA', 'LIBYEN', 'LIBYE', 'LBY', 434, 0, 0, 0),
('MA', 'MOROCCO', 'MOROCCO', 'MARRUECOS', 'MAROKKO', 'MAROC', 'MAR', 504, 0, 0, 0),
('MC', 'MONACO', 'MONACO', 'MÓNACO', 'MONACO', 'MONACO', 'MCO', 492, 1, 0, 1),
('MD', 'MOLDOVA, REPUBLIC OF', 'MOLDOVA, REPUBLIC OF', 'MOLDAVIA', 'MOLDAWIEN', 'MOLDOVA, RÉPUBLIQUE DE', 'MDA', 498, 0, 0, 1),
('MG', 'MADAGASCAR', 'MADAGASCAR', 'MADAGASCAR', 'MADAGASKAR', 'MADAGASCAR', 'MDG', 450, 0, 0, 0),
('MH', 'MARSHALL ISLANDS', 'MARSHALL ISLANDS', 'ISLAS MARSHALL', 'MARSHALL-INSELN', 'MARSHALL, ÎLES', 'MHL', 584, 0, 0, 0),
('MK', 'MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF', 'MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF', 'MACEDONIA', 'MAZEDONIEN', 'MACÉDOINE', 'MKD', 807, 0, 0, 1),
('ML', 'MALI', 'MALI', 'MALÍ', 'MALI', 'MALI', 'MLI', 466, 0, 0, 0),
('MM', 'MYANMAR', 'MYANMAR', 'MYANMAR', 'MYANMAR', 'MYANMAR', 'MMR', 104, 0, 0, 0),
('MN', 'MONGOLIA', 'MONGOLIA', 'MONGOLIA', 'MONGOLEI', 'MONGOLIE', 'MNG', 496, 0, 0, 0),
('MO', 'MACAO', 'MACAO', 'MACAO', 'MACAO', 'MACAO', 'MAC', 446, 0, 0, 0),
('MP', 'NORTHERN MARIANA ISLANDS', 'NORTHERN MARIANA ISLANDS', 'ISLAS MARIANAS DEL NORTE', 'NÖRDLICHE MARIANEN', 'MARIANNES DU NORD, ÎLES', 'MNP', 580, 0, 0, 0),
('MQ', 'MARTINIQUE', 'MARTINIQUE', 'MARTINICA', 'MARTINIQUE', 'MARTINIQUE', 'MTQ', 474, 0, 0, 0),
('MR', 'MAURITANIA', 'MAURITANIA', 'MAURITANIA', 'MAURETANIEN', 'MAURITANIE', 'MRT', 478, 0, 0, 0),
('MS', 'MONTSERRAT', 'MONTSERRAT', 'MONTSERRAT', 'MONTSERRAT', 'MONTSERRAT', 'MSR', 500, 0, 0, 0),
('MT', 'MALTA', 'MALTA', 'MALTA', 'MALTA', 'MALTE', 'MLT', 470, 0, 0, 1),
('MU', 'MAURITIUS', 'MAURITIUS', 'MAURICIO', 'MAURITIUS', 'MAURICE', 'MUS', 480, 0, 0, 0),
('MV', 'MALDIVES', 'MALDIVES', 'MALDIVAS', 'MALEDIVEN', 'MALDIVES', 'MDV', 462, 0, 0, 0),
('MW', 'MALAWI', 'MALAWI', 'MALAWI', 'MALAWI', 'MALAWI', 'MWI', 454, 0, 0, 0),
('MX', 'MEXICO', 'MEXICO', 'MÉXICO', 'MEXIKO', 'MEXIQUE', 'MEX', 484, 0, 0, 0),
('MY', 'MALAYSIA', 'MALAYSIA', 'MALASIA', 'MALAYSIA', 'MALAISIE', 'MYS', 458, 0, 0, 0),
('MZ', 'MOZAMBIQUE', 'MOZAMBIQUE', 'MOZAMBIQUE', 'MOSAMBIK', 'MOZAMBIQUE', 'MOZ', 508, 0, 0, 0),
('NA', 'NAMIBIA', 'NAMIBIA', 'NAMIBIA', 'NAMIBIA', 'NAMIBIE', 'NAM', 516, 0, 0, 0),
('NC', 'NEW CALEDONIA', 'NEW CALEDONIA', 'NUEVA CALEDONIA', 'NEUKALEDONIEN', 'NOUVELLE-CALÉDONIE', 'NCL', 540, 0, 0, 0),
('NE', 'NIGER', 'NIGER', 'NÍGER', 'NIGER', 'NIGER', 'NER', 562, 0, 0, 0),
('NF', 'NORFOLK ISLAND', 'NORFOLK ISLAND', 'ISLA NORFOLK', 'NORFOLK ISLAND', 'NORFOK, ÎLE', 'NFK', 574, 0, 0, 1),
('NG', 'NIGERIA', 'NIGERIA', 'NIGERIA', 'NIGERIA', 'NIGÉRIA', 'NGA', 566, 0, 0, 0),
('NI', 'NICARAGUA', 'NICARAGUA', 'NICARAGUA', 'NICARAGUA', 'NICARAGUA', 'NIC', 558, 0, 0, 0),
('NL', 'NETHERLANDS', 'NETHERLANDS', 'PAÍSES BAJOS', 'NIEDERLANDE', 'PAYS-BAS', 'NLD', 528, 1, 0, 1),
('NO', 'NORWAY', 'NORWAY', 'NORUEGA', 'NORWEGEN', 'NORVÍšGE', 'NOR', 578, 0, 1, 0),
('NP', 'NEPAL', 'NEPAL', 'NEPAL', 'NEPAL', 'NÉPAL', 'NPL', 524, 0, 0, 0),
('NR', 'NAURU', 'NAURU', 'NAURU', 'NAURU', 'NAURU', 'NRU', 520, 0, 0, 0),
('NU', 'NIUE', 'NIUE', 'NIUE', 'NIUE', 'NIUÉ', 'NIU', 570, 0, 0, 0),
('NZ', 'NEW ZEALAND', 'NEW ZEALAND', 'NUEVA ZELANDA', 'NEUSEELAND', 'NOUVELLE-ZÉLANDE', 'NZL', 554, 0, 0, 0),
('OM', 'OMAN', 'OMAN', 'OMÁN', 'OMAN', 'OMAN', 'OMN', 512, 0, 0, 0),
('PA', 'PANAMA', 'PANAMA', 'PANAMÁ', 'PANAMA', 'PANAMA', 'PAN', 591, 0, 0, 0),
('PE', 'PERU', 'PERU', 'PERÚ', 'PERU', 'PÉROU', 'PER', 604, 0, 0, 0),
('PF', 'FRENCH POLYNESIA', 'FRENCH POLYNESIA', 'POLINESIA FRANCESA', 'FRANZÖSISCH-POLYNESIEN', 'POLYNÉSIE FRANͧAISE', 'PYF', 258, 0, 0, 0),
('PG', 'PAPUA NEW GUINEA', 'PAPUA NEW GUINEA', 'PAPÚA NUEVA GUINEA', 'PAPUA-NEUGUINEA', 'PAPOUASIE-NOUVELLE-GUINÉE', 'PNG', 598, 0, 0, 0),
('PH', 'PHILIPPINES', 'PHILIPPINES', 'FILIPINAS', 'PHILIPPINEN', 'PHILIPPINES', 'PHL', 608, 0, 0, 0),
('PK', 'PAKISTAN', 'PAKISTAN', 'PAKISTÁN', 'PAKISTAN', 'PAKISTAN', 'PAK', 586, 0, 0, 0),
('PL', 'POLAND', 'POLAND', 'POLONIA', 'POLEN', 'POLOGNE', 'POL', 616, 1, 0, 1),
('PM', 'SAINT PIERRE AND MIQUELON', 'SAINT PIERRE AND MIQUELON', 'SAN PEDRO Y MIQUELÍN', 'SAINT PIERRE UND MIQUELON', 'SAINT-PIERRE-ET-MIQUELON', 'SPM', 666, 0, 0, 0),
('PN', 'PITCAIRN', 'PITCAIRN', 'ISLAS PITCAIRN', 'PITCAIRNINSELN', 'PITCAIRN', 'PCN', 612, 0, 0, 0),
('PR', 'PUERTO RICO', 'PUERTO RICO', 'PUERTO RICO', 'PUERTO RICO', 'PORTO RICO', 'PRI', 630, 0, 0, 0),
('PS', 'PALESTINIAN TERRITORY, OCCUPIED', 'PALESTINIAN TERRITORY, OCCUPIED', 'PALESTINA', 'PALÄSTINA', 'PALESTINIEN OCCUPÉ, TERRITOIRE', 'PSE', 275, 0, 0, 0),
('PT', 'PORTUGAL', 'PORTUGAL', 'PORTUGAL', 'PORTUGAL', 'PORTUGAL', 'PRT', 620, 1, 0, 1),
('PW', 'PALAU', 'PALAU', 'PALAU', 'PALAU', 'PALAOS', 'PLW', 585, 0, 0, 0),
('PY', 'PARAGUAY', 'PARAGUAY', 'PARAGUAY', 'PARAGUAY', 'PARAGUAY', 'PRY', 600, 0, 0, 0),
('QA', 'QATAR', 'QATAR', 'QATAR', 'KATAR', 'QATAR', 'QAT', 634, 0, 0, 0),
('RE', 'REUNION', 'REUNION', 'REUNIÓN', 'REUNION', 'RÉUNION', 'REU', 638, 0, 0, 0),
('RO', 'ROMANIA', 'ROMANIA', 'RUMANIA', 'RUMÄNIEN', 'ROUMANIE', 'ROM', 642, 1, 0, 1),
('RU', 'RUSSIAN FEDERATION', 'RUSSIAN FEDERATION', 'RUSIA', 'RUSSLAND', 'RUSSIE, FÉDÉRATION DE', 'RUS', 643, 0, 0, 1),
('RW', 'RWANDA', 'RWANDA', 'RUANDA', 'RUANDA', 'RWANDA', 'RWA', 646, 0, 0, 0),
('SA', 'SAUDI ARABIA', 'SAUDI ARABIA', 'ARABIA SAUDÍ­', 'SAUDI-ARABIEN', 'ARABIE SAOUDITE', 'SAU', 682, 0, 0, 0),
('SB', 'SOLOMON ISLANDS', 'SOLOMON ISLANDS', 'ISLAS SALOMÓN', 'SALOMONEN', 'SALOMON, ÎLES', 'SLB', 90, 0, 0, 0),
('SC', 'SEYCHELLES', 'SEYCHELLES', 'SEYCHELLES', 'SEYCHELLEN', 'SEYCHELLES', 'SYC', 690, 0, 0, 0),
('SD', 'SUDAN', 'SUDAN', 'SUDÁN', 'SUDAN', 'SOUDAN', 'SDN', 736, 0, 0, 0),
('SE', 'SWEDEN', 'SWEDEN', 'SUECIA', 'SCHWEDEN', 'SUÍšDE', 'SWE', 752, 0, 1, 0),
('SG', 'SINGAPORE', 'SINGAPORE', 'SINGAPUR', 'SINGAPUR', 'SINGAPOUR', 'SGP', 702, 0, 0, 0),
('SH', 'SAINT HELENA', 'SAINT HELENA', 'SANTA HELENA', 'SANKT HELENA', 'SAINTE-HÉLÍšNE', 'SHN', 654, 0, 0, 0),
('SI', 'SLOVENIA', 'SLOVENIA', 'ESLOVENIA', 'SLOWENIEN', 'SLOVÉNIE', 'SVN', 705, 1, 0, 1),
('SJ', 'SVALBARD AND JAN MAYEN', 'SVALBARD AND JAN MAYEN', 'SVALBARD Y JAN MAYEN', 'SVALBARD UND JAN MAYEN', 'SVALBARD ET ÎLE JAN MAYEN', 'SJM', 744, 0, 0, 0),
('SK', 'SLOVAKIA', 'SLOVAKIA', 'ESLOVAQUIA', 'SLOWAKEI', 'SLOVAQUIE', 'SVK', 703, 1, 0, 1),
('SL', 'SIERRA LEONE', 'SIERRA LEONE', 'SIERRA LEONA', 'SIERRA LEONE', 'SIERRA LEONE', 'SLE', 694, 0, 0, 0),
('SM', 'SAN MARINO', 'SAN MARINO', 'SAN MARINO', 'SAN MARINO', 'SAINT-MARIN', 'SMR', 674, 0, 0, 0),
('SN', 'SENEGAL', 'SENEGAL', 'SENEGAL', 'SENEGAL', 'SÉNÉGAL', 'SEN', 686, 0, 0, 0),
('SO', 'SOMALIA', 'SOMALIA', 'SOMALIA', 'SOMALIA', 'SOMALIE', 'SOM', 706, 0, 0, 0),
('SR', 'SURINAME', 'SURINAME', 'SURINAM', 'SURINAM', 'SURINAME', 'SUR', 740, 0, 0, 0),
('ST', 'SAO TOME AND PRINCIPE', 'SAO TOME AND PRINCIPE', 'SANTO TOMÉ Y PRÍ­NCIPE', 'SÍ£O TOMÉ UND PRÍ­NCIPE', 'SAO TOMÉ-ET-PRINCIPE', 'STP', 678, 0, 0, 0),
('SV', 'EL SALVADOR', 'EL SALVADOR', 'EL SALVADOR', 'EL SALVADOR', 'EL SALVADOR', 'SLV', 222, 0, 0, 0),
('SY', 'SYRIAN ARAB REPUBLIC', 'SYRIAN ARAB REPUBLIC', 'SIRIA', 'SYRIEN', 'SYRIE', 'SYR', 760, 0, 0, 0),
('SZ', 'SWAZILAND', 'SWAZILAND', 'SUAZILANDIA', 'SWASILAND', 'SWAZILAND', 'SWZ', 748, 0, 1, 0),
('TC', 'TURKS AND CAICOS ISLANDS', 'TURKS AND CAICOS ISLANDS', 'ISLAS TURCAS Y CAICOS', 'TURKS- UND CAICOSINSELN', 'TURKS ET CAÏQUES, ÎLES', 'TCA', 796, 0, 0, 0),
('TD', 'CHAD', 'CHAD', 'CHAD', 'TSCHAD', 'TCHAD', 'TCD', 148, 0, 0, 0),
('TF', 'FRENCH SOUTHERN TERRITORIES', 'FRENCH SOUTHERN TERRITORIES', 'TERRITORIOS AUSTRALES FRANCESES', 'FRANZÖSISCHE SÜDGEBIETE', 'TERRES AUSTRALES FRANͧAISES', 'ATF', 260, 0, 0, 0),
('TG', 'TOGO', 'TOGO', 'TOGO', 'TOGO', 'TOGO', 'TGO', 768, 0, 0, 0),
('TH', 'THAILAND', 'THAILAND', 'TAILANDIA', 'THAILAND', 'THAÏLANDE', 'THA', 764, 0, 0, 0),
('TJ', 'TAJIKISTAN', 'TAJIKISTAN', 'TAYIKISTÁN', 'TADSCHIKISTAN', 'TADJIKISTAN', 'TJK', 762, 0, 0, 0),
('TK', 'TOKELAU', 'TOKELAU', 'TOKELAU', 'TOKELAU', 'TOKELAU', 'TKL', 772, 0, 0, 0),
('TL', 'TIMOR-LESTE', 'TIMOR-LESTE', 'TIMOR ORIENTAL', 'OST-TIMOR', 'TIMOR-LESTE', 'TLS', 626, 0, 0, 0),
('TM', 'TURKMENISTAN', 'TURKMENISTAN', 'TURKMENISTÁN', 'TURKMENISTAN', 'TURKMÉNISTAN', 'TKM', 795, 0, 0, 0),
('TN', 'TUNISIA', 'TUNISIA', 'šNEZ', 'TUNESIEN', 'TUNISIE', 'TUN', 788, 0, 0, 0),
('TO', 'TONGA', 'TONGA', 'TONGA', 'TONGA', 'TONGA', 'TON', 776, 0, 0, 0),
('TR', 'TURKEY', 'TURKEY', 'TURQUÍA', 'TÜRKEI', 'TURQUIE', 'TUR', 792, 0, 0, 0),
('TT', 'TRINIDAD AND TOBAGO', 'TRINIDAD AND TOBAGO', 'TRINIDAD Y TOBAGO', 'TRINIDAD UND TOBAGO', 'TRINITÉ-ET-TOBAGO', 'TTO', 780, 0, 0, 0),
('TV', 'TUVALU', 'TUVALU', 'TUVALU', 'TUVALU', 'TUVALU', 'TUV', 798, 0, 0, 0),
('TW', 'TAIWAN, PROVINCE OF CHINA', 'TAIWAN, PROVINCE OF CHINA', 'TAIWÁN', 'TAIWAN', 'TAÏWAN, PROVINCE DE CHINA', 'TWN', 158, 0, 0, 0),
('TZ', 'TANZANIA, UNITED REPUBLIC OF', 'TANZANIA, UNITED REPUBLIC OF', 'TANZANIA', 'TANSANIA', 'TANZANIE, RÉPUBLIQUE-UNIE DE', 'TZA', 834, 0, 0, 0),
('UA', 'UKRAINE', 'UKRAINE', 'UCRANIA', 'UKRAINE', 'UKRAINE', 'UKR', 804, 0, 0, 1),
('UG', 'UGANDA', 'UGANDA', 'UGANDA', 'UGANDA', 'OUGANDA', 'UGA', 800, 0, 0, 0),
('UM', 'UNITED STATES MINOR OUTLYING ISLANDS', 'UNITED STATES MINOR OUTLYING ISLANDS', 'ISLAS ULTRAMARINAS DE ESTADOS UNIDOS', 'AMERIKANISCH-OZEANIEN', 'ÎLES MINEURES ÉLOIGNÉES DES ÉTATS-UN', 'UMI', 581, 0, 0, 0),
('US', 'UNITED STATES', 'UNITED STATES', 'ESTADOS UNIDOS', 'VEREINIGTE STAATEN VON AMERIKA', 'ÉTATS-UNIS', 'USA', 840, 0, 0, 0),
('UY', 'URUGUAY', 'URUGUAY', 'URUGUAY', 'URUGUAY', 'URUGUAY', 'URY', 858, 0, 0, 0),
('UZ', 'UZBEKISTAN', 'UZBEKISTAN', 'UZBEKISTÁN', 'USBEKISTAN', 'OUZBÉKISTAN', 'UZB', 860, 0, 0, 0),
('VA', 'HOLY SEE (VATICAN CITY STATE)', 'HOLY SEE (VATICAN CITY STATE)', 'CIUDAD DEL VATICANO', 'VATIKAN', 'SAINT-SIÍšGE (ÉTAT DE LA CITÉ DU VATICAN)', 'VAT', 336, 0, 0, 1),
('VC', 'SAINT VINCENT AND THE GRENADINES', 'SAINT VINCENT AND THE GRENADINES', 'SAN VICENTE Y LAS GRANADINAS', 'SAINT VINCENT UND DIE GRENADINEN', 'SAINT-VINCENT-ET-LES-GRENADINES', 'VCT', 670, 0, 0, 0),
('VE', 'VENEZUELA', 'VENEZUELA', 'VENEZUELA', 'VENEZUELA', 'VENEZUELA', 'VEN', 862, 0, 0, 0),
('VG', 'VIRGIN ISLANDS, BRITISH', 'VIRGIN ISLANDS, BRITISH', 'ISLAS VÍ­RGENES BRITÁNICAS', 'BRITISCHE JUNGFERNINSELN', 'ÎLES VIERGES BRITANNIQUES', 'VGB', 92, 0, 0, 0),
('VI', 'VIRGIN ISLANDS, U.S.', 'VIRGIN ISLANDS, U.S.', 'ISLAS VÍ­RGENES DE LOS ESTADOS UNIDOS', 'AMERIKANISCHE JUNGFERNINSELN', 'ÎLES VIERGES DES ÉTATS-UNIS', 'VIR', 850, 0, 0, 0),
('VN', 'VIET NAM', 'VIET NAM', 'VIETNAM', 'VIETNAM', 'VIET NAM', 'VNM', 704, 0, 0, 0),
('VU', 'VANUATU', 'VANUATU', 'VANUATU', 'VANUATU', 'VANUATU', 'VUT', 548, 0, 0, 0),
('WF', 'WALLIS AND FUTUNA', 'WALLIS AND FUTUNA', 'WALLIS Y FUTUNA', 'WALLIS UND FUTUNA', 'WALLIS ET FUTUNA', 'WLF', 876, 0, 0, 0),
('WS', 'SAMOA', 'SAMOA', 'SAMOA', 'SAMOA', 'SAMOA', 'WSM', 882, 0, 0, 0),
('YE', 'YEMEN', 'YEMEN', 'YEMEN', 'JEMEN', 'YÉMEN', 'YEM', 887, 0, 0, 0),
('YT', 'MAYOTTE', 'MAYOTTE', 'MAYOTTE', 'MAYOTTE', 'MAYOTTE', 'MYT', 175, 0, 0, 0),
('ZA', 'SOUTH AFRICA', 'SOUTH AFRICA', 'SUDÁFRICA', 'SÜDAFRIKA, REPUBLIK', 'AFRIQUE DU SUD', 'ZAF', 710, 0, 0, 0),
('ZM', 'ZAMBIA', 'ZAMBIA', 'ZAMBIA', 'SAMBIA', 'ZAMBIE', 'ZMB', 894, 0, 0, 0),
('ZW', 'ZIMBABWE', 'ZIMBABWE', 'ZIMBABUE', 'SIMBABWE', 'ZIMBABWE', 'ZWE', 716, 0, 0, 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_currencies`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_currencies` (
`iso` char(3) NOT NULL,
`code` int(4) NOT NULL,
`decimal` int(1) NOT NULL,
`currency` varchar(50) NOT NULL,
`entities` varchar(100) NOT NULL,
PRIMARY KEY (`iso`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Volcar la base de datos para la tabla `wp_tcp_currencies`
--
INSERT INTO `wp_tcp_currencies` (`iso`, `code`, `decimal`, `currency`, `entities`) VALUES
('AED', 784, 2, 'United Arab Emirates dirham', 'United Arab Emirates'),
('AFN', 971, 2, 'Afghan afghani', 'Afghanistan'),
('ALL', 8, 2, 'Albanian lek', 'Albania'),
('AMD', 51, 2, 'Armenian dram', 'Armenia'),
('ANG', 532, 2, 'Netherlands Antillean guilder', 'Netherlands Antilles'),
('AOA', 973, 2, 'Angolan kwanza', 'Angola'),
('ARS', 32, 2, 'Argentine peso', 'Argentina'),
('AUD', 36, 2, 'Australian dollar', 'Australia, Australian Antarctic Territory, Christmas Island, Cocos (Keeling) Islands, Heard and McDo'),
('AWG', 533, 2, 'Aruban guilder', 'Aruba'),
('AZN', 944, 2, 'Azerbaijani manat', 'Azerbaijan'),
('BAM', 977, 2, 'Bosnia and Herzegovina konvertibilna marka', 'Bosnia and Herzegovina'),
('BBD', 52, 2, 'Barbados dollar', 'Barbados'),
('BDT', 50, 2, 'Bangladeshi taka', 'Bangladesh'),
('BGN', 975, 2, 'Bulgarian lev', 'Bulgaria'),
('BHD', 48, 3, 'Bahraini dinar', 'Bahrain'),
('BIF', 108, 0, 'Burundian franc', 'Burundi'),
('BMD', 60, 2, 'Bermudian dollar (customarily known as Bermuda dol', 'Bermuda'),
('BND', 96, 2, 'Brunei dollar', 'Brunei, Singapore'),
('BOB', 68, 2, 'Boliviano', 'Bolivia'),
('BOV', 984, 2, 'Bolivian Mvdol (funds code)', 'Bolivia'),
('BRL', 986, 2, 'Brazilian real', 'Brazil'),
('BSD', 44, 2, 'Bahamian dollar', 'Bahamas'),
('BTN', 64, 2, 'Bhutanese ngultrum', 'Bhutan'),
('BWP', 72, 2, 'Botswana pula', 'Botswana'),
('BYR', 974, 0, 'Belarusian ruble', 'Belarus'),
('BZD', 84, 2, 'Belize dollar', 'Belize'),
('CAD', 124, 2, 'Canadian dollar', 'Canada'),
('CDF', 976, 2, 'Congolese franc', 'Democratic Republic of Congo'),
('CHE', 947, 2, 'WIR Bank (complementary currency)', 'Switzerland'),
('CHF', 756, 2, 'Swiss franc', 'Switzerland, Liechtenstein'),
('CHW', 948, 2, 'WIR Bank (complementary currency)', 'Switzerland'),
('CLF', 990, 0, 'Unidad de Fomento (funds code)', 'Chile'),
('CLP', 152, 0, 'Chilean peso', 'Chile'),
('CNY', 156, 1, 'Chinese yuan', 'China (Mainland)'),
('COP', 170, 0, 'Colombian peso', 'Colombia'),
('COU', 970, 2, 'Unidad de Valor Real', 'Colombia'),
('CRC', 188, 2, 'Costa Rican colon', 'Costa Rica'),
('CUC', 931, 2, 'Cuban convertible peso', 'Cuba'),
('CUP', 192, 2, 'Cuban peso', 'Cuba'),
('CVE', 132, 0, 'Cape Verde escudo', 'Cape Verde'),
('CZK', 203, 2, 'Czech koruna', 'Czech Republic'),
('DJF', 262, 0, 'Djiboutian franc', 'Djibouti'),
('DKK', 208, 2, 'Danish krone', 'Denmark, Faroe Islands, Greenland'),
('DOP', 214, 2, 'Dominican peso', 'Dominican Republic'),
('DZD', 12, 2, 'Algerian dinar', 'Algeria'),
('EEK', 233, 2, 'Estonian kroon', 'Estonia'),
('EGP', 818, 2, 'Egyptian pound', 'Egypt'),
('ERN', 232, 2, 'Eritrean nakfa', 'Eritrea'),
('ETB', 230, 2, 'Ethiopian birr', 'Ethiopia'),
('EUR', 978, 2, 'Euro', '16 European Union countries, Andorra, Kosovo, Monaco, Montenegro, San Marino, Vatican City; see euro'),
('FJD', 242, 2, 'Fiji dollar', 'Fiji'),
('FKP', 238, 2, 'Falkland Islands pound', 'Falkland Islands'),
('GBP', 826, 2, 'Pound sterling', 'United Kingdom, Crown Dependencies (the Isle of Man and the Channel Islands), certain British Overse'),
('GEL', 981, 2, 'Georgian lari', 'Georgia'),
('GHS', 936, 2, 'Ghanaian cedi', 'Ghana'),
('GIP', 292, 2, 'Gibraltar pound', 'Gibraltar'),
('GMD', 270, 2, 'Gambian dalasi', 'Gambia'),
('GNF', 324, 0, 'Guinean franc', 'Guinea'),
('GTQ', 320, 2, 'Guatemalan quetzal', 'Guatemala'),
('GYD', 328, 2, 'Guyanese dollar', 'Guyana'),
('HKD', 344, 2, 'Hong Kong dollar', 'Hong Kong Special Administrative Region'),
('HNL', 340, 2, 'Honduran lempira', 'Honduras'),
('HRK', 191, 2, 'Croatian kuna', 'Croatia'),
('HTG', 332, 2, 'Haitian gourde', 'Haiti'),
('HUF', 348, 2, 'Hungarian forint', 'Hungary'),
('IDR', 360, 0, 'Indonesian rupiah', 'Indonesia'),
('ILS', 376, 2, 'Israeli new sheqel', 'Israel'),
('INR', 356, 2, 'Indian rupee', 'Bhutan, India, Nepal'),
('IQD', 368, 0, 'Iraqi dinar', 'Iraq'),
('IRR', 364, 0, 'Iranian rial', 'Iran'),
('ISK', 352, 0, 'Icelandic króna', 'Iceland'),
('JMD', 388, 2, 'Jamaican dollar', 'Jamaica'),
('JOD', 400, 3, 'Jordanian dinar', 'Jordan'),
('JPY', 392, 0, 'Japanese yen', 'Japan'),
('KES', 404, 2, 'Kenyan shilling', 'Kenya'),
('KGS', 417, 2, 'Kyrgyzstani som', 'Kyrgyzstan'),
('KHR', 116, 0, 'Cambodian riel', 'Cambodia'),
('KMF', 174, 0, 'Comoro franc', 'Comoros'),
('KPW', 408, 0, 'North Korean won', 'North Korea'),
('KRW', 410, 0, 'South Korean won', 'South Korea'),
('KWD', 414, 3, 'Kuwaiti dinar', 'Kuwait'),
('KYD', 136, 2, 'Cayman Islands dollar', 'Cayman Islands'),
('KZT', 398, 2, 'Kazakhstani tenge', 'Kazakhstan'),
('LAK', 418, 0, 'Lao kip', 'Laos'),
('LBP', 422, 0, 'Lebanese pound', 'Lebanon'),
('LKR', 144, 2, 'Sri Lanka rupee', 'Sri Lanka'),
('LRD', 430, 2, 'Liberian dollar', 'Liberia'),
('LSL', 426, 2, 'Lesotho loti', 'Lesotho'),
('LTL', 440, 2, 'Lithuanian litas', 'Lithuania'),
('LVL', 428, 2, 'Latvian lats', 'Latvia'),
('LYD', 434, 3, 'Libyan dinar', 'Libya'),
('MAD', 504, 2, 'Moroccan dirham', 'Morocco, Western Sahara'),
('MDL', 498, 2, 'Moldovan leu', 'Moldova (except Transnistria)'),
('MGA', 969, 0, 'Malagasy ariary', 'Madagascar'),
('MKD', 807, 2, 'Macedonian denar', 'Republic of Macedonia'),
('MMK', 104, 0, 'Myanma kyat', 'Myanmar'),
('MNT', 496, 2, 'Mongolian tugrik', 'Mongolia'),
('MOP', 446, 1, 'Macanese pataca', 'Macau Special Administrative Region'),
('MRO', 478, 0, 'Mauritanian ouguiya', 'Mauritania'),
('MUR', 480, 2, 'Mauritian rupee', 'Mauritius'),
('MVR', 462, 2, 'Maldivian rufiyaa', 'Maldives'),
('MWK', 454, 2, 'Malawian kwacha', 'Malawi'),
('MXN', 484, 2, 'Mexican peso', 'Mexico'),
('MXV', 979, 2, 'Mexican Unidad de Inversion (UDI) (funds code)', 'Mexico'),
('MYR', 458, 2, 'Malaysian ringgit', 'Malaysia'),
('MZN', 943, 2, 'Mozambican metical', 'Mozambique'),
('NAD', 516, 2, 'Namibian dollar', 'Namibia'),
('NGN', 566, 2, 'Nigerian naira', 'Nigeria'),
('NIO', 558, 2, 'Cordoba oro', 'Nicaragua'),
('NOK', 578, 2, 'Norwegian krone', 'Norway, Bouvet Island, Queen Maud Land, Peter I Island'),
('NPR', 524, 2, 'Nepalese rupee', 'Nepal'),
('NZD', 554, 2, 'New Zealand dollar', 'Cook Islands, New Zealand, Niue, Pitcairn, Tokelau'),
('OMR', 512, 3, 'Omani rial', 'Oman'),
('PAB', 590, 2, 'Panamanian balboa', 'Panama'),
('PEN', 604, 2, 'Peruvian nuevo sol', 'Peru'),
('PGK', 598, 2, 'Papua New Guinean kina', 'Papua New Guinea'),
('PHP', 608, 2, 'Philippine peso', 'Philippines'),
('PKR', 586, 2, 'Pakistani rupee', 'Pakistan'),
('PLN', 985, 2, 'Polish złoty', 'Poland'),
('PYG', 600, 0, 'Paraguayan guaraní', 'Paraguay'),
('QAR', 634, 2, 'Qatari rial', 'Qatar'),
('RON', 946, 2, 'Romanian new leu', 'Romania'),
('RSD', 941, 2, 'Serbian dinar', 'Serbia'),
('RUB', 643, 2, 'Russian rouble', 'Russia, Abkhazia, South Ossetia'),
('RWF', 646, 0, 'Rwandan franc', 'Rwanda'),
('SAR', 682, 2, 'Saudi riyal', 'Saudi Arabia'),
('SBD', 90, 2, 'Solomon Islands dollar', 'Solomon Islands'),
('SCR', 690, 2, 'Seychelles rupee', 'Seychelles'),
('SDG', 938, 2, 'Sudanese pound', 'Sudan'),
('SEK', 752, 2, 'Swedish krona/kronor', 'Sweden'),
('SGD', 702, 2, 'Singapore dollar', 'Singapore, Brunei'),
('SHP', 654, 2, 'Saint Helena pound', 'Saint Helena'),
('SLL', 694, 0, 'Sierra Leonean leone', 'Sierra Leone'),
('SOS', 706, 2, 'Somali shilling', 'Somalia (except Somaliland)'),
('SRD', 968, 2, 'Surinamese dollar', 'Suriname'),
('STD', 678, 0, 'São Tomé and Príncipe dobra', 'São Tomé and Príncipe'),
('SYP', 760, 2, 'Syrian pound', 'Syria'),
('SZL', 748, 2, 'Lilangeni', 'Swaziland'),
('THB', 764, 2, 'Thai baht', 'Thailand'),
('TJS', 972, 2, 'Tajikistani somoni', 'Tajikistan'),
('TMT', 934, 2, 'Turkmenistani manat', 'Turkmenistan'),
('TND', 788, 3, 'Tunisian dinar', 'Tunisia'),
('TOP', 776, 2, 'Tongan paʻanga', 'Tonga'),
('TRY', 949, 2, 'Turkish lira', 'Turkey, Northern Cyprus'),
('TTD', 780, 2, 'Trinidad and Tobago dollar', 'Trinidad and Tobago'),
('TWD', 901, 1, 'New Taiwan dollar', 'Taiwan and other islands that are under the effective control of the Republic of China (ROC)'),
('TZS', 834, 2, 'Tanzanian shilling', 'Tanzania'),
('UAH', 980, 2, 'Ukrainian hryvnia', 'Ukraine'),
('UGX', 800, 0, 'Ugandan shilling', 'Uganda'),
('USD', 840, 2, 'United States dollar', 'American Samoa, British Indian Ocean Territory, Ecuador, El Salvador, Guam, Haiti, Marshall Islands,'),
('USN', 997, 2, 'United States dollar (next day) (funds code)', 'United States'),
('USS', 998, 2, 'United States dollar (same day) (funds code) (one ', 'United States'),
('UYU', 858, 2, 'Uruguayan peso', 'Uruguay'),
('UZS', 860, 2, 'Uzbekistan som', 'Uzbekistan'),
('VEF', 937, 2, 'Venezuelan bolívar fuerte', 'Venezuela'),
('VND', 704, 0, 'Vietnamese đồng', 'Vietnam'),
('VUV', 548, 0, 'Vanuatu vatu', 'Vanuatu'),
('WST', 882, 2, 'Samoan tala', 'Samoa'),
('XAF', 950, 0, 'CFA franc BEAC', 'Cameroon, Central African Republic, Republic of the Congo, Chad, Equatorial Guinea, Gabon'),
('XAG', 961, 0, 'Silver (one troy ounce)', ''),
('XAU', 959, 0, 'Gold (one troy ounce)', ''),
('XBA', 955, 0, 'European Composite Unit (EURCO) (bond market unit)', ''),
('XBB', 956, 0, 'European Monetary Unit (E.M.U.-6) (bond market uni', ''),
('XBC', 957, 0, 'European Unit of Account 9 (E.U.A.-9) (bond market', ''),
('XBD', 958, 0, 'European Unit of Account 17 (E.U.A.-17) (bond mark', ''),
('XCD', 951, 2, 'East Caribbean dollar', 'Anguilla, Antigua and Barbuda, Dominica, Grenada, Montserrat, Saint Kitts and Nevis, Saint Lucia, Sa'),
('XDR', 960, 0, 'Special Drawing Rights', 'International Monetary Fund'),
('XFU', 0, 0, 'UIC franc (special settlement currency)', 'International Union of Railways'),
('XOF', 952, 0, 'CFA Franc BCEAO', 'Benin, Burkina Faso, Côte d`Ivoire, Guinea-Bissau, Mali, Niger, Senegal, Togo'),
('XPD', 964, 0, 'Palladium (one troy ounce)', ''),
('XPF', 953, 0, 'CFP franc', 'French Polynesia, New Caledonia, Wallis and Futuna'),
('XPT', 962, 0, 'Platinum (one troy ounce)', ''),
('XTS', 963, 0, 'Code reserved for testing purposes', ''),
('XXX', 999, 0, 'No currency', ''),
('YER', 886, 0, 'Yemeni rial', 'Yemen'),
('ZAR', 710, 2, 'South African rand', 'South Africa'),
('ZMK', 894, 0, 'Zambian kwacha', 'Zambia'),
('ZWL', 932, 2, 'Zimbabwe dollar', 'Zimbabwe');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_offlines`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_offlines` (
`order_id` bigint(20) unsigned NOT NULL,
`card_number` varchar(20) NOT NULL,
`card_holder` varchar(150) NOT NULL,
`cvc` varchar(4) NOT NULL,
`expiration_month` int(11) NOT NULL,
`expiration_year` int(11) NOT NULL,
`card_type` varchar(20) NOT NULL,
`created_at` date NOT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Volcar la base de datos para la tabla `wp_tcp_offlines`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_orders`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_orders` (
`order_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`created_at` datetime NOT NULL,
`customer_id` bigint(20) unsigned NOT NULL,
`ip` varchar(20) NOT NULL,
`weight` int(11) NOT NULL DEFAULT '0',
`shipping_method` varchar(100) NOT NULL,
`status` varchar(50) NOT NULL,
`order_currency_code` char(3) NOT NULL,
`shipping_amount` decimal(13,2) NOT NULL DEFAULT '0.00',
`discount_amount` decimal(13,2) NOT NULL DEFAULT '0.00',
`payment_name` varchar(255) NOT NULL,
`payment_method` varchar(100) NOT NULL DEFAULT '',
`payment_amount` decimal(13,2) NOT NULL DEFAULT '0.00',
`comment` varchar(250) NOT NULL,
`comment_internal` varchar(250) NOT NULL DEFAULT '',
`code_tracking` varchar(50) NOT NULL,
`shipping_firstname` varchar(50) NOT NULL,
`shipping_lastname` varchar(100) NOT NULL,
`shipping_company` varchar(50) NOT NULL,
`shipping_street` varchar(100) NOT NULL,
`shipping_city` varchar(100) NOT NULL,
`shipping_city_id` char(4) NOT NULL DEFAULT '',
`shipping_region` varchar(100) NOT NULL,
`shipping_region_id` char(2) NOT NULL DEFAULT '',
`shipping_postcode` char(6) NOT NULL,
`shipping_country` varchar(50) NOT NULL,
`shipping_country_id` char(2) NOT NULL,
`shipping_telephone_1` varchar(50) NOT NULL,
`shipping_telephone_2` varchar(50) NOT NULL,
`shipping_fax` varchar(50) NOT NULL,
`shipping_email` varchar(255) NOT NULL,
`billing_firstname` varchar(50) NOT NULL,
`billing_lastname` varchar(100) NOT NULL,
`billing_company` varchar(50) NOT NULL,
`billing_street` varchar(100) NOT NULL,
`billing_city` varchar(100) NOT NULL DEFAULT '0',
`billing_city_id` char(4) NOT NULL DEFAULT '',
`billing_region` varchar(100) NOT NULL,
`billing_region_id` char(2) NOT NULL DEFAULT '',
`billing_postcode` char(6) NOT NULL,
`billing_country` varchar(50) NOT NULL,
`billing_country_id` char(2) NOT NULL,
`billing_telephone_1` varchar(50) NOT NULL,
`billing_telephone_2` varchar(50) NOT NULL,
`billing_fax` varchar(50) NOT NULL,
`billing_email` varchar(255) NOT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_tcp_orders`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_orders_costs`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_orders_costs` (
`order_cost_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_id` bigint(20) unsigned NOT NULL,
`description` varchar(255) NOT NULL,
`cost` decimal(13,2) NOT NULL DEFAULT '0.00',
`tax` float unsigned NOT NULL DEFAULT '0',
`cost_order` varchar(4) NOT NULL DEFAULT '',
PRIMARY KEY (`order_cost_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_tcp_orders_costs`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_orders_details`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_orders_details` (
`order_detail_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_id` bigint(20) unsigned NOT NULL,
`post_id` bigint(20) unsigned NOT NULL,
`option_1_id` bigint(20) unsigned NOT NULL,
`option_2_id` bigint(20) unsigned NOT NULL,
`weight` int(11) unsigned NOT NULL DEFAULT '0',
`is_downloadable` char(1) NOT NULL COMMENT 'Y->yes',
`sku` varchar(50) NOT NULL,
`name` varchar(100) NOT NULL,
`option_1_name` varchar(100) NOT NULL,
`option_2_name` varchar(100) NOT NULL,
`price` decimal(13,2) NOT NULL DEFAULT '0.00',
`original_price` decimal(13,2) NOT NULL DEFAULT '0.00',
`tax` double NOT NULL DEFAULT '0',
`qty_ordered` int(11) unsigned NOT NULL DEFAULT '0',
`max_downloads` int(4) NOT NULL DEFAULT '10',
`expires_at` date NOT NULL,
PRIMARY KEY (`order_detail_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_tcp_orders_details`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_rel_entities`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_rel_entities` (
`id_from` bigint(20) unsigned NOT NULL,
`id_to` bigint(20) unsigned NOT NULL,
`rel_type` varchar(20) NOT NULL,
`list_order` int(4) unsigned NOT NULL DEFAULT '0',
`units` int(4) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id_to`,`id_from`,`rel_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Volcar la base de datos para la tabla `wp_tcp_rel_entities`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_taxes`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_taxes` (
`tax_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(100) NOT NULL,
`desc` varchar(255) NOT NULL,
PRIMARY KEY (`tax_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_tcp_taxes`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_tax_rates`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_tax_rates` (
`tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`country_iso` char(3) NOT NULL,
`region_id` char(4) NOT NULL,
`region` varchar(100) NOT NULL,
`post_code` varchar(255) NOT NULL,
`tax_id` bigint(20) NOT NULL,
`rate` float NOT NULL,
`label` varchar(100) NOT NULL,
PRIMARY KEY (`tax_rate_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Volcar la base de datos para la tabla `wp_tcp_tax_rates`
--
INSERT INTO `wp_tcp_tax_rates` (`tax_rate_id`, `country_iso`, `region_id`, `region`, `post_code`, `tax_id`, `rate`, `label`) VALUES
(1, 'all', 'all', '', 'all', 0, 0, 'No tax');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_terms`
--
CREATE TABLE IF NOT EXISTS `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
UNIQUE KEY `slug` (`slug`),
KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;
--
-- Volcar la base de datos para la tabla `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Sin categoría', 'sin-categoria', 0),
(2, 'Sitios de interés', 'sitios-de-interes', 0),
(3, 'sin categoría', 'catablog-term-sin-categoraa', 0),
(7, 'Menú catálogo y proyectos', 'menu-catalogo-y-proyectos', 0),
(6, 'Menú principal', 'menu-principal', 0),
(8, 'Nuevo menú', 'nuevo-menu', 0),
(10, 'Menú vacío', 'menu-vacio', 0),
(11, 'Product Category', 'product-category', 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_term_relationships`
--
CREATE TABLE IF NOT EXISTS `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Volcar la base de datos para la tabla `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 2, 0),
(2, 2, 0),
(3, 2, 0),
(4, 2, 0),
(5, 2, 0),
(6, 2, 0),
(7, 2, 0),
(1, 1, 0),
(116, 8, 0),
(115, 8, 0),
(90, 6, 0),
(119, 8, 0),
(81, 7, 0),
(110, 6, 0),
(111, 6, 0),
(117, 8, 0),
(131, 11, 0),
(120, 8, 0),
(76, 7, 0),
(69, 6, 0),
(60, 6, 0),
(22, 3, 0),
(21, 3, 0),
(20, 3, 0),
(123, 8, 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_term_taxonomy`
--
CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;
--
-- Volcar la base de datos para la tabla `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'link_category', '', 0, 7),
(3, 3, 'catablog-terms', '', 0, 3),
(6, 6, 'nav_menu', '', 0, 5),
(7, 7, 'nav_menu', '', 0, 2),
(8, 8, 'nav_menu', '', 0, 6),
(10, 10, 'nav_menu', '', 0, 0),
(11, 11, 'wpsc_product_category', '', 0, 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_usermeta`
--
CREATE TABLE IF NOT EXISTS `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=26 ;
--
-- Volcar la base de datos para la tabla `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'first_name', ''),
(2, 1, 'last_name', ''),
(3, 1, 'nickname', 'rodax'),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(10, 1, 'show_admin_bar_admin', 'false'),
(11, 1, 'aim', ''),
(12, 1, 'yim', ''),
(13, 1, 'jabber', ''),
(14, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}'),
(15, 1, 'wp_user_level', '10'),
(16, 1, 'wp_dashboard_quick_press_last_post_id', '3'),
(17, 1, 'closedpostboxes_dashboard', 'a:0:{}'),
(18, 1, 'metaboxhidden_dashboard', 'a:6:{i:0;s:25:"dashboard_recent_comments";i:1;s:17:"dashboard_plugins";i:2;s:21:"dashboard_quick_press";i:3;s:23:"dashboard_recent_drafts";i:4;s:17:"dashboard_primary";i:5;s:19:"dashboard_secondary";}'),
(19, 1, 'meta-box-order_dashboard', 'a:4:{s:6:"normal";s:63:"dashboard_right_now,dashboard_recent_comments,dashboard_plugins";s:4:"side";s:108:"dashboard_quick_press,dashboard_recent_drafts,dashboard_primary,dashboard_incoming_links,dashboard_secondary";s:7:"column3";s:0:"";s:7:"column4";s:0:"";}'),
(20, 1, 'screen_layout_dashboard', '2'),
(21, 1, 'wp_user-settings', 'm6=o&m7=o&m8=o&m9=o&m5=o&imgsize=full&m4=o&m11=o&hidetb=1&editor=tinymce&m12=o'),
(22, 1, 'wp_user-settings-time', '1309378185'),
(23, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}'),
(24, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:8:"add-post";i:1;s:12:"add-post_tag";}'),
(25, 1, 'nav_menu_recently_edited', '10');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_users`
--
CREATE TABLE IF NOT EXISTS `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(64) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Volcar la base de datos para la tabla `wp_users`
--
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'rodax', '$P$BT18K20H4.ABBtove1GGxVYpz6MMO3.', 'rodax', 'darranz@rodax-software.com', '', '2011-06-28 15:12:45', '', 0, 'rodax');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_also_bought`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_also_bought` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`selected_product` bigint(20) unsigned NOT NULL DEFAULT '0',
`associated_product` bigint(20) unsigned NOT NULL DEFAULT '0',
`quantity` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_also_bought`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_cart_contents`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_cart_contents` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`prodid` bigint(20) unsigned NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`purchaseid` bigint(20) unsigned NOT NULL DEFAULT '0',
`price` decimal(11,2) NOT NULL DEFAULT '0.00',
`pnp` decimal(11,2) NOT NULL DEFAULT '0.00',
`tax_charged` decimal(11,2) NOT NULL DEFAULT '0.00',
`gst` decimal(11,2) NOT NULL DEFAULT '0.00',
`quantity` int(10) unsigned NOT NULL DEFAULT '0',
`donation` varchar(1) NOT NULL DEFAULT '0',
`no_shipping` varchar(1) NOT NULL DEFAULT '0',
`custom_message` text NOT NULL,
`files` text NOT NULL,
`meta` longtext,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_cart_contents`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_checkout_forms`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_checkout_forms` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`type` varchar(64) NOT NULL DEFAULT '',
`mandatory` varchar(1) NOT NULL DEFAULT '0',
`display_log` char(1) NOT NULL DEFAULT '0',
`default` varchar(128) NOT NULL DEFAULT '0',
`active` varchar(1) NOT NULL DEFAULT '1',
`checkout_order` int(10) unsigned NOT NULL DEFAULT '0',
`unique_name` varchar(255) NOT NULL DEFAULT '',
`options` varchar(255) NOT NULL DEFAULT '',
`checkout_set` varchar(64) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `checkout_order` (`checkout_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=19 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_checkout_forms`
--
INSERT INTO `wp_wpsc_checkout_forms` (`id`, `name`, `type`, `mandatory`, `display_log`, `default`, `active`, `checkout_order`, `unique_name`, `options`, `checkout_set`) VALUES
(1, 'Your billing/contact details', 'heading', '0', '0', '', '1', 1, '', '', '0'),
(2, 'First Name', 'text', '1', '1', '', '1', 2, 'billingfirstname', '', '0'),
(3, 'Last Name', 'text', '1', '1', '', '1', 3, 'billinglastname', '', '0'),
(4, 'Address', 'address', '1', '0', '', '1', 4, 'billingaddress', '', '0'),
(5, 'City', 'city', '1', '0', '', '1', 5, 'billingcity', '', '0'),
(6, 'State', 'text', '0', '0', '', '1', 6, 'billingstate', '', '0'),
(7, 'Country', 'country', '1', '0', '', '1', 7, 'billingcountry', '', '0'),
(8, 'Postal Code', 'text', '0', '0', '', '1', 8, 'billingpostcode', '', '0'),
(9, 'Email', 'email', '1', '1', '', '1', 9, 'billingemail', '', '0'),
(10, 'Shipping Address', 'heading', '0', '0', '', '1', 10, 'delivertoafriend', '', '0'),
(11, 'First Name', 'text', '0', '0', '', '1', 11, 'shippingfirstname', '', '0'),
(12, 'Last Name', 'text', '0', '0', '', '1', 12, 'shippinglastname', '', '0'),
(13, 'Address', 'address', '0', '0', '', '1', 13, 'shippingaddress', '', '0'),
(14, 'City', 'city', '0', '0', '', '1', 14, 'shippingcity', '', '0'),
(15, 'State', 'text', '0', '0', '', '1', 15, 'shippingstate', '', '0'),
(16, 'Country', 'delivery_country', '0', '0', '', '1', 16, 'shippingcountry', '', '0'),
(17, 'Postal Code', 'text', '0', '0', '', '1', 17, 'shippingpostcode', '', '0'),
(18, 'Phone', 'text', '1', '0', '', '1', 8, 'billingphone', '', '0');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_claimed_stock`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_claimed_stock` (
`product_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`variation_stock_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`stock_claimed` float NOT NULL,
`last_activity` datetime NOT NULL,
`cart_id` varchar(255) NOT NULL DEFAULT '0',
`cart_submitted` varchar(1) NOT NULL DEFAULT '0',
UNIQUE KEY `unique_key` (`product_id`,`variation_stock_id`,`cart_id`),
KEY `last_activity` (`last_activity`),
KEY `cart_submitted` (`cart_submitted`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Volcar la base de datos para la tabla `wp_wpsc_claimed_stock`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_coupon_codes`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_coupon_codes` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`coupon_code` varchar(255) DEFAULT '',
`value` decimal(11,2) NOT NULL DEFAULT '0.00',
`is-percentage` char(1) NOT NULL DEFAULT '0',
`use-once` char(1) NOT NULL DEFAULT '0',
`is-used` char(1) NOT NULL DEFAULT '0',
`active` char(1) NOT NULL DEFAULT '1',
`every_product` varchar(255) NOT NULL DEFAULT '',
`start` datetime NOT NULL,
`expiry` datetime NOT NULL,
`condition` text,
PRIMARY KEY (`id`),
KEY `coupon_code` (`coupon_code`),
KEY `active` (`active`),
KEY `start` (`start`),
KEY `expiry` (`expiry`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_coupon_codes`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_currency_list`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_currency_list` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`country` varchar(255) NOT NULL DEFAULT '',
`isocode` char(2) DEFAULT '',
`currency` varchar(255) NOT NULL DEFAULT '',
`symbol` varchar(10) NOT NULL DEFAULT '',
`symbol_html` varchar(10) NOT NULL DEFAULT '',
`code` char(3) NOT NULL DEFAULT '',
`has_regions` char(1) NOT NULL DEFAULT '0',
`tax` varchar(8) NOT NULL DEFAULT '',
`continent` varchar(20) NOT NULL DEFAULT '',
`visible` varchar(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=242 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_currency_list`
--
INSERT INTO `wp_wpsc_currency_list` (`id`, `country`, `isocode`, `currency`, `symbol`, `symbol_html`, `code`, `has_regions`, `tax`, `continent`, `visible`) VALUES
(1, 'Mauritania', 'MR', 'Mauritanian Ouguiya', '', '', 'MRO', '0', '0', 'africa', '1'),
(2, 'Martinique (French)', 'MQ', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'southamerica', '1'),
(3, 'Malta', 'MT', 'Maltese Lira', '', '', 'MTL', '0', '0', 'europe', '1'),
(4, 'Marshall Islands', 'MH', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(5, 'Mali', 'ML', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(6, 'Maldives', 'MV', 'Maldive Rufiyaa', '', '', 'MVR', '0', '0', 'asiapacific', '1'),
(7, 'Malaysia', 'MY', 'Malaysian Ringgit', '', '', 'MYR', '0', '0', 'asiapacific', '1'),
(8, 'Malawi', 'MW', 'Malawi Kwacha', '', '', 'MWK', '0', '0', 'africa', '1'),
(9, 'Madagascar', 'MG', 'Malagasy Franc', '', '', 'MGF', '0', '0', 'africa', '1'),
(10, 'Macau', 'MO', 'Macau Pataca', '', '', 'MOP', '0', '0', 'asiapacific', '1'),
(11, 'Macedonia', 'MK', 'Denar', '', '', 'MKD', '0', '0', 'europe', '1'),
(12, 'Luxembourg', 'LU', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(13, 'Lithuania', 'LT', 'Lithuanian Litas', '', '', 'LTL', '0', '0', 'europe', '1'),
(14, 'Liechtenstein', 'LI', 'Swiss Franc', '', '', 'CHF', '0', '0', 'europe', '1'),
(15, 'Libya', 'LY', 'Libyan Dinar', '', '', 'LYD', '0', '0', 'africa', '1'),
(16, 'Liberia', 'LR', 'Liberian Dollar', '$', '&#036;', 'LRD', '0', '0', 'africa', '1'),
(17, 'Lesotho', 'LS', 'Lesotho Loti', '', '', 'LSL', '0', '0', 'africa', '1'),
(18, 'Lebanon', 'LB', 'Lebanese Pound', '', '', 'LBP', '0', '0', 'asiapacific', '1'),
(19, 'Latvia', 'LV', 'Latvian Lats', '', '', 'LVL', '0', '0', 'europe', '1'),
(20, 'Laos', 'LA', 'Lao Kip', '', '', 'LAK', '0', '0', 'asiapacific', '1'),
(21, 'Kyrgyzstan', 'KG', 'Som', '', '', 'KGS', '0', '0', 'asiapacific', '1'),
(22, 'Kuwait', 'KW', 'Kuwaiti Dinar', '', '', 'KWD', '0', '0', 'asiapacific', '1'),
(23, 'Korea, South', 'KR', 'Korean Won', '', '', 'KRW', '0', '0', 'asiapacific', '1'),
(24, 'Korea, North', 'KP', 'North Korean Won', '', '', 'KPW', '0', '0', 'asiapacific', '1'),
(25, 'Kiribati', 'KI', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(26, 'Kenya', 'KE', 'Kenyan Shilling', '', '', 'KES', '0', '0', 'africa', '1'),
(27, 'Kazakhstan', 'KZ', 'Kazakhstan Tenge', '', '', 'KZT', '0', '0', 'asiapacific', '1'),
(28, 'Jordan', 'JO', 'Jordanian Dinar', '', '', 'JOD', '0', '0', 'asiapacific', '1'),
(29, 'Jersey', 'JE', 'Pound Sterling', '£', '&#163;', 'GBP', '0', '0', 'europe', '1'),
(30, 'Japan', 'JP', 'Japanese Yen', '¥', '&#165;', 'JPY', '0', '0', 'asiapacific', '1'),
(31, 'Jamaica', 'JM', 'Jamaican Dollar', '$', '&#036;', 'JMD', '0', '0', 'southamerica', '1'),
(32, 'Ivory Coast', 'CI', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(33, 'Italy', 'IT', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(34, 'Isle of Man', 'IM', 'Pound Sterling', '£', '&#163;', 'GBP', '0', '0', 'europe', '1'),
(35, 'Israel', 'IL', 'Israeli New Shekel', '', '', 'ILS', '0', '0', 'asiapacific', '1'),
(36, 'Ireland', 'IE', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(37, 'Iraq', 'IQ', 'Iraqi Dinar', '', '', 'IQD', '0', '0', 'asiapacific', '1'),
(38, 'Indonesia', 'ID', 'Indonesian Rupiah', '', '', 'IDR', '0', '0', 'asiapacific', '1'),
(39, 'Iran', 'IR', 'Iranian Rial', '', '', 'IRR', '0', '0', 'asiapacific', '1'),
(40, 'India', 'IN', 'Indian Rupee', '', '', 'INR', '0', '0', 'asiapacific', '1'),
(41, 'Iceland', 'IS', 'Iceland Krona', '', '', 'ISK', '0', '0', 'europe', '1'),
(42, 'Hungary', 'HU', 'Hungarian Forint', '', '', 'HUF', '0', '0', 'europe', '1'),
(43, 'Hong Kong', 'HK', 'Hong Kong Dollar', '$', '&#036;', 'HKD', '0', '0', 'asiapacific', '1'),
(44, 'Honduras', 'HN', 'Honduran Lempira', '', '', 'HNL', '0', '0', 'southamerica', '1'),
(45, 'Heard Island and McDonald Islands', 'HM', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(46, 'Haiti', 'HT', 'Haitian Gourde', '', '', 'HTG', '0', '0', 'southamerica', '1'),
(47, 'Guyana', 'GY', 'Guyana Dollar', '$', '&#036;', 'GYD', '0', '0', 'southamerica', '1'),
(48, 'Guinea Bissau', 'GW', 'Guinea-Bissau Peso', '', '', 'GWP', '0', '0', 'africa', '1'),
(49, 'Guinea', 'GN', 'Guinea Franc', '', '', 'GNF', '0', '0', 'africa', '1'),
(50, 'Guernsey', 'GF', 'Pound Sterling', '£', '&#163;', 'GBP', '0', '0', 'europe', '1'),
(51, 'Guatemala', 'GT', 'Guatemalan Quetzal', '', '', 'QTQ', '0', '0', 'southamerica', '1'),
(52, 'Guam (USA)', 'GU', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(53, 'Grenada', 'GD', 'East Carribean Dollar', '$', '&#036;', 'XCD', '0', '0', 'africa', '1'),
(54, 'Guadeloupe (French)', 'GP', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'southamerica', '1'),
(55, 'Greenland', 'GL', 'Danish Krone', '', '', 'DKK', '0', '0', 'europe', '1'),
(56, 'Greece', 'GR', 'Euro', '', '&#8364;', 'EUR', '0', '19', 'europe', '1'),
(57, 'Gibraltar', 'GI', 'Gibraltar Pound', '', '', 'GIP', '0', '0', 'europe', '1'),
(58, 'Ghana', 'GH', 'Ghanaian Cedi', '', '', 'GHC', '0', '0', 'africa', '1'),
(59, 'Germany', 'DE', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(60, 'Georgia', 'GE', 'Georgian Lari', '', '', 'GEL', '0', '0', 'europe', '1'),
(61, 'Gambia', 'GM', 'Gambian Dalasi', '', '', 'GMD', '0', '0', 'africa', '1'),
(62, 'Gabon', 'GA', 'CFA Franc BEAC', '', '', 'XAF', '0', '0', 'africa', '1'),
(63, 'French Southern Territories', 'TF', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'africa', '1'),
(64, 'France', 'FR', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(65, 'Finland', 'FI', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(66, 'Fiji', 'FJ', 'Fiji Dollar', '$', '&#036;', 'FJD', '0', '0', 'asiapacific', '1'),
(67, 'Faroe Islands', 'FO', 'Danish Krone', '', '', 'DKK', '0', '0', 'europe', '1'),
(68, 'Falkland Islands', 'FK', 'Falkland Islands Pound', '', '', 'FKP', '0', '0', 'southamerica', '1'),
(69, 'Ethiopia', 'ET', 'Ethiopian Birr', '', '', 'ETB', '0', '0', 'africa', '1'),
(70, 'Estonia', 'EE', 'Estonian Kroon', '', '', 'EEK', '0', '0', 'europe', '1'),
(71, 'Eritrea', 'ER', 'Eritrean Nakfa', '', '', 'ERN', '0', '0', 'africa', '1'),
(72, 'Equatorial Guinea', 'GQ', 'CFA Franc BEAC', '', '', 'XAF', '0', '0', 'africa', '1'),
(73, 'El Salvador', 'SV', 'El Salvador Colon', '', '', 'SVC', '0', '0', 'southamerica', '1'),
(74, 'Egypt', 'EG', 'Egyptian Pound', '', '', 'EGP', '0', '0', 'africa', '1'),
(75, 'Ecuador', 'EC', 'Ecuador Sucre', '', '', 'ECS', '0', '0', 'southamerica', '1'),
(76, 'East Timor', 'TP', 'Timor Escudo', '', '', 'TPE', '0', '0', 'asiapacific', '1'),
(77, 'Dominican Republic', 'DO', 'Dominican Peso', '', '', 'DOP', '0', '0', 'southamerica', '1'),
(78, 'Dominica', 'DM', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'southamerica', '1'),
(79, 'Djibouti', 'DJ', 'Djibouti Franc', '', '', 'DJF', '0', '0', 'africa', '1'),
(80, 'Denmark', 'DK', 'Danish Krone', '', '', 'DKK', '0', '0', 'europe', '1'),
(81, 'Democratic Republic of Congo', 'CD', 'Francs', '', '', 'CDF', '0', '0', 'africa', '1'),
(82, 'Czech Rep.', 'CZ', 'Czech Koruna', '', '', 'CZK', '0', '0', 'europe', '1'),
(83, 'Cyprus', 'CY', 'Cyprus Pound', '', '', 'CYP', '0', '0', 'europe', '1'),
(84, 'Cuba', 'CU', 'Cuban Peso', '', '', 'CUP', '0', '0', 'northamerica', '1'),
(85, 'Croatia', 'HR', 'Croatian Kuna', '', '', 'HRK', '0', '0', 'europe', '1'),
(86, 'Costa Rica', 'CR', 'Costa Rican Colon', '', '', 'CRC', '0', '0', 'southamerica', '1'),
(87, 'Cook Islands', 'CK', 'New Zealand Dollar', '$', '&#036;', 'NZD', '0', '0', 'asiapacific', '1'),
(88, 'Congo', 'CG', 'CFA Franc BEAC', '', '', 'XAF', '0', '0', 'africa', '1'),
(89, 'Comoros', 'KM', 'Comoros Franc', '', '', 'KMF', '0', '0', 'africa', '1'),
(90, 'Colombia', 'CO', 'Colombian Peso', '', '', 'COP', '0', '0', 'southamerica', '1'),
(91, 'Cocos (Keeling) Islands', 'CC', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(92, 'Christmas Island', 'CX', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(93, 'Chile', 'CL', 'Chilean Peso', '', '', 'CLP', '0', '0', 'asiapacific', '1'),
(94, 'China', 'CN', 'Yuan Renminbi', '', '', 'CNY', '0', '0', 'asiapacific', '1'),
(95, 'Chad', 'TD', 'CFA Franc BEAC', '', '', 'XAF', '0', '0', 'africa', '1'),
(96, 'Central African Republic', 'CF', 'CFA Franc BEAC', '', '', 'XAF', '0', '0', 'africa', '1'),
(97, 'Cayman Islands', 'KY', 'Cayman Islands Dollar', '$', '&#036;', 'KYD', '0', '0', 'northamerica', '1'),
(98, 'Cape Verde', 'CV', 'Cape Verde Escudo', '', '', 'CVE', '0', '0', 'africa', '1'),
(99, 'Cameroon', 'CM', 'CFA Franc BEAC', '', '', 'XAF', '0', '0', 'africa', '1'),
(100, 'Canada', 'CA', 'Canadian Dollar', '$', '&#036;', 'CAD', '1', '', 'northamerica', '1'),
(101, 'Cambodia', 'KH', 'Kampuchean Riel', '', '', 'KHR', '0', '0', 'asiapacific', '1'),
(102, 'Burundi', 'BI', 'Burundi Franc', '', '', 'BIF', '0', '0', 'africa', '1'),
(103, 'Burkina Faso', 'BF', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(104, 'Bulgaria', 'BG', 'Bulgarian Lev', '', '', 'BGL', '0', '0', 'europe', '1'),
(105, 'Brunei Darussalam', 'BN', 'Brunei Dollar', '$', '&#036;', 'BND', '0', '0', 'asiapacific', '1'),
(106, 'British Indian Ocean Territory', 'IO', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(107, 'Brazil', 'BR', 'Brazilian Real', '', '', 'BRL', '0', '0', 'southamerica', '1'),
(108, 'Bouvet Island', 'BV', 'Norwegian Krone', '', '', 'NOK', '0', '0', 'africa', '1'),
(109, 'Botswana', 'BW', 'Botswana Pula', '', '', 'BWP', '0', '0', 'africa', '1'),
(110, 'Bosnia-Herzegovina', 'BA', 'Marka', '', '', 'BAM', '0', '0', 'europe', '1'),
(111, 'Bolivia', 'BO', 'Boliviano', '', '', 'BOB', '0', '0', 'southamerica', '1'),
(112, 'Bhutan', 'BT', 'Bhutan Ngultrum', '', '', 'BTN', '0', '0', 'asiapacific', '1'),
(113, 'Bermuda', 'BM', 'Bermudian Dollar', '$', '&#036;', 'BMD', '0', '0', 'europe', '1'),
(114, 'Benin', 'BJ', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(115, 'Belize', 'BZ', 'Belize Dollar', '$', '&#036;', 'BZD', '0', '0', 'northamerica', '1'),
(116, 'Belgium', 'BE', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(117, 'Belarus', 'BY', 'Belarussian Ruble', '', '', 'BYB', '0', '0', 'europe', '1'),
(118, 'Barbados', 'BB', 'Barbados Dollar', '$', '&#036;', 'BBD', '0', '0', 'southamerica', '1'),
(119, 'Bangladesh', 'BD', 'Bangladeshi Taka', '', '', 'BDT', '0', '0', 'asiapacific', '1'),
(120, 'Bahrain', 'BH', 'Bahraini Dinar', '', '', 'BHD', '0', '0', 'asiapacific', '1'),
(121, 'Bahamas', 'BS', 'Bahamian Dollar', '$', '&#036;', 'BSD', '0', '0', 'northamerica', '1'),
(122, 'Azerbaijan', 'AZ', 'Azerbaijanian Manat', '', '', 'AZM', '0', '0', 'asiapacific', '1'),
(123, 'Austria', 'AT', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(124, 'Aruba', 'AW', 'Aruban Guilder', '', '', 'AWG', '0', '0', 'southamerica', '1'),
(125, 'Armenia', 'AM', 'Armenian Dram', '', '', 'AMD', '0', '0', 'asiapacific', '1'),
(126, 'Argentina', 'AR', 'Argentine Peso', '', '', 'ARS', '0', '0', 'southamerica', '1'),
(127, 'Antigua and Barbuda', 'AG', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'africa', '1'),
(128, 'Antarctica', 'AQ', 'Dollar', '$', '&#036;', 'ATA', '0', '0', 'antarctica', '1'),
(129, 'Anguilla', 'AI', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'northamerica', '1'),
(130, 'Angola', 'AO', 'Angolan New Kwanza', '', '', 'AON', '0', '0', 'africa', '1'),
(131, 'Andorra', 'AD', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(132, 'American Samoa', 'AS', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(133, 'Algeria', 'DZ', 'Algerian Dinar', '', '', 'DZD', '0', '0', 'africa', '1'),
(134, 'Albania', 'AL', 'Albanian Lek', '', '', 'ALL', '0', '0', 'europe', '1'),
(135, 'Afghanistan', 'AF', 'Afghanistan Afghani', '', '', 'AFA', '0', '0', 'asiapacific', '1'),
(136, 'USA', 'US', 'US Dollar', '$', '&#036;', 'USD', '1', '', 'northamerica', '1'),
(137, 'Australia', 'AU', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(138, 'Great Britain', 'GB', 'Pound Sterling', '£', '&#163;', 'GBP', '0', '0', 'europe', '1'),
(139, 'Mauritius', 'MU', 'Mauritius Rupee', '', '', 'MUR', '0', '0', 'africa', '1'),
(140, 'Mayotte', 'YT', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(141, 'Mexico', 'MX', 'Mexican Nuevo Peso', '', '', 'MXN', '0', '0', 'northamerica', '1'),
(142, 'Micronesia', 'FM', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(143, 'Moldova', 'MD', 'Moldovan Leu', '', '', 'MDL', '0', '0', 'europe', '1'),
(144, 'Monaco', 'MC', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(145, 'Mongolia', 'MN', 'Mongolian Tugrik', '', '', 'MNT', '0', '0', 'asiapacific', '1'),
(146, 'Montserrat', 'MS', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'africa', '1'),
(147, 'Morocco', 'MA', 'Moroccan Dirham', '', '', 'MAD', '0', '0', 'africa', '1'),
(148, 'Mozambique', 'MZ', 'Mozambique Metical', '', '', 'MZM', '0', '0', 'africa', '1'),
(149, 'Myanmar', 'MM', 'Myanmar Kyat', '', '', 'MMK', '0', '0', 'asiapacific', '1'),
(150, 'Namibia', 'NA', 'Namibian Dollar', '$', '&#036;', 'NAD', '0', '0', 'africa', '1'),
(151, 'Nauru', 'NR', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(152, 'Nepal', 'NP', 'Nepalese Rupee', '', '', 'NPR', '0', '0', 'asiapacific', '1'),
(153, 'Netherlands', 'NL', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(154, 'Netherlands Antilles', 'AN', 'Netherlands Antillean Guilder', '', '', 'ANG', '0', '0', 'africa', '1'),
(155, 'New Caledonia (French)', 'NC', 'CFP Franc', '', '', 'XPF', '0', '0', 'asiapacific', '1'),
(156, 'New Zealand', 'NZ', 'New Zealand Dollar', '$', '&#036;', 'NZD', '0', '12.5', 'asiapacific', '1'),
(157, 'Nicaragua', 'NI', 'Nicaraguan Cordoba Oro', '', '', 'NIC', '0', '0', 'northamerica', '1'),
(158, 'Niger', 'NE', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(159, 'Nigeria', 'NG', 'Nigerian Naira', '', '', 'NGN', '0', '0', 'africa', '1'),
(160, 'Niue', 'NU', 'New Zealand Dollar', '$', '&#036;', 'NZD', '0', '0', 'asiapacific', '1'),
(161, 'Norfolk Island', 'NF', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(162, 'Northern Mariana Islands', 'MP', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(163, 'Norway', 'NO', 'Norwegian Krone', '', '', 'NOK', '0', '0', 'europe', '1'),
(164, 'Oman', 'OM', 'Omani Rial', '', '', 'OMR', '0', '0', 'asiapacific', '1'),
(165, 'Pakistan', 'PK', 'Pakistan Rupee', '', '', 'PKR', '0', '0', 'asiapacific', '1'),
(166, 'Palau', 'PW', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(167, 'Panama', 'PA', 'Panamanian Balboa', '', '', 'PAB', '0', '0', 'southamerica', '1'),
(168, 'Papua New Guinea', 'PG', 'Papua New Guinea Kina', '', '', 'PGK', '0', '0', 'asiapacific', '1'),
(169, 'Paraguay', 'PY', 'Paraguay Guarani', '', '', 'PYG', '0', '0', 'southamerica', '1'),
(170, 'Peru', 'PE', 'Peruvian Nuevo Sol', '', '', 'PEN', '0', '0', 'southamerica', '1'),
(171, 'Philippines', 'PH', 'Philippine Peso', '', '', 'PHP', '0', '0', 'asiapacific', '1'),
(172, 'Pitcairn Island', 'PN', 'New Zealand Dollar', '$', '&#036;', 'NZD', '0', '0', 'asiapacific', '1'),
(173, 'Poland', 'PL', 'Polish Zloty', '', '', 'PLN', '0', '0', 'europe', '1'),
(174, 'Polynesia (French)', 'PF', 'CFP Franc', '', '', 'XPF', '0', '0', 'asiapacific', '1'),
(175, 'Portugal', 'PT', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(176, 'Puerto Rico', 'PR', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'northamerica', '1'),
(177, 'Qatar', 'QA', 'Qatari Rial', '', '', 'QAR', '0', '0', 'asiapacific', '1'),
(178, 'Reunion (French)', 'RE', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(179, 'Romania', 'RO', 'Romanian Leu', '', '', 'RON', '0', '0', 'europe', '1'),
(180, 'Russia', 'RU', 'Russian Ruble', '', '', 'RUR', '0', '0', 'europe', '1'),
(181, 'Rwanda', 'RW', 'Rwanda Franc', '', '', 'RWF', '0', '0', 'africa', '1'),
(182, 'Saint Helena', 'SH', 'St. Helena Pound', '', '', 'SHP', '0', '0', 'africa', '1'),
(183, 'Saint Kitts & Nevis Anguilla', 'KN', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'northamerica', '1'),
(184, 'Saint Lucia', 'LC', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'northamerica', '1'),
(185, 'Saint Pierre and Miquelon', 'PM', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'northamerica', '1'),
(186, 'Saint Vincent & Grenadines', 'VC', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'northamerica', '1'),
(187, 'Samoa', 'WS', 'Samoan Tala', '', '', 'WST', '0', '0', 'asiapacific', '1'),
(188, 'San Marino', 'SM', 'Italian Lira', '', '', 'ITL', '0', '0', 'europe', '1'),
(189, 'Sao Tome and Principe', 'ST', 'Dobra', '', '', 'STD', '0', '0', 'africa', '1'),
(190, 'Saudi Arabia', 'SA', 'Saudi Riyal', '', '', 'SAR', '0', '0', 'asiapacific', '1'),
(191, 'Senegal', 'SN', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(192, 'Seychelles', 'SC', 'Seychelles Rupee', '', '', 'SCR', '0', '0', 'africa', '1'),
(193, 'Sierra Leone', 'SL', 'Sierra Leone Leone', '', '', 'SLL', '0', '0', 'africa', '1'),
(194, 'Singapore', 'SG', 'Singapore Dollar', '$', '&#036;', 'SGD', '0', '0', 'asiapacific', '1'),
(195, 'Slovakia', 'SK', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(196, 'Slovenia', 'SI', 'Slovenian Tolar', '', '', 'SIT', '0', '0', 'europe', '1'),
(197, 'Solomon Islands', 'SB', 'Solomon Islands Dollar', '$', '&#036;', 'SBD', '0', '0', 'asiapacific', '1'),
(198, 'Somalia', 'SO', 'Somali Shilling', '', '', 'SOD', '0', '0', 'africa', '1'),
(199, 'South Africa', 'ZA', 'South African Rand', '', '', 'ZAR', '0', '0', 'africa', '1'),
(200, 'South Georgia & South Sandwich Islands', 'GS', 'Pound Sterling', '£', '&#163;', 'GBP', '0', '0', 'southamerica', '1'),
(201, 'Spain', 'ES', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(202, 'Sri Lanka', 'LK', 'Sri Lanka Rupee', '', '', 'LKR', '0', '0', 'asiapacific', '1'),
(203, 'Sudan', 'SD', 'Sudanese Dinar', '', '', 'SDD', '0', '0', 'asiapacific', '1'),
(204, 'Suriname', 'SR', 'Surinam Guilder', '', '', 'SRG', '0', '0', 'southamerica', '1'),
(205, 'Svalbard and Jan Mayen Islands', 'SJ', 'Norwegian Krone', '', '', 'NOK', '0', '0', '', '1'),
(206, 'Swaziland', 'SZ', 'Swaziland Lilangeni', '', '', 'SZL', '0', '0', 'europe', '1'),
(207, 'Sweden', 'SE', 'Swedish Krona', '', '', 'SEK', '0', '0', 'europe', '1'),
(208, 'Switzerland', 'CH', 'Swiss Franc', '', '', 'CHF', '0', '0', 'europe', '1'),
(209, 'Syria', 'SY', 'Syrian Pound', '', '', 'SYP', '0', '0', 'europe', '1'),
(210, 'Taiwan', 'TW', 'Taiwan Dollar', '$', '&#036;', 'TWD', '0', '0', 'asiapacific', '1'),
(211, 'Tajikistan', 'TJ', 'Tajik Ruble', '', '', 'TJR', '0', '0', 'asiapacific', '1'),
(212, 'Tanzania', 'TZ', 'Tanzanian Shilling', '', '', 'TZS', '0', '0', 'africa', '1'),
(213, 'Thailand', 'TH', 'Thai Baht', '', '', 'THB', '0', '0', 'asiapacific', '1'),
(214, 'Togo', 'TG', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(215, 'Tokelau', 'TK', 'New Zealand Dollar', '$', '&#036;', 'NZD', '0', '0', 'asiapacific', '1'),
(216, 'Tonga', 'TO', 'Tongan Pa&#699;anga', '', '', 'TOP', '0', '0', 'asiapacific', '1'),
(217, 'Trinidad and Tobago', 'TT', 'Trinidad and Tobago Dollar', '$', '&#036;', 'TTD', '0', '0', 'africa', '1'),
(218, 'Tunisia', 'TN', 'Tunisian Dollar', '$', '&#036;', 'TND', '0', '0', 'africa', '1'),
(219, 'Turkey', 'TR', 'Turkish Lira', '', '', 'TRL', '0', '0', 'asiapacific', '1'),
(220, 'Turkmenistan', 'TM', 'Manat', '', '', 'TMM', '0', '0', 'asiapacific', '1'),
(221, 'Turks and Caicos Islands', 'TC', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'northamerica', '1'),
(222, 'Tuvalu', 'TV', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(223, 'U.K.', 'UK', 'Pound Sterling', '£', '&#163;', 'GBP', '0', '17.5', 'europe', '1'),
(224, 'Uganda', 'UG', 'Uganda Shilling', '', '', 'UGS', '0', '0', 'africa', '1'),
(225, 'Ukraine', 'UA', 'Ukraine Hryvnia', '', '', 'UAG', '0', '0', 'europe', '1'),
(226, 'United Arab Emirates', 'AE', 'Arab Emirates Dirham', '', '', 'AED', '0', '0', 'asiapacific', '1'),
(227, 'Uruguay', 'UY', 'Uruguayan Peso', '', '', 'UYP', '0', '0', 'southamerica', '1'),
(228, 'USA Minor Outlying Islands', 'UM', 'US Dollar', '$', '&#036;', 'USD', '0', '0', '', '1'),
(229, 'Uzbekistan', 'UZ', 'Uzbekistan Sum', '', '', 'UZS', '0', '0', 'asiapacific', '1'),
(230, 'Vanuatu', 'VU', 'Vanuatu Vatu', '', '', 'VUV', '0', '0', 'asiapacific', '1'),
(231, 'Vatican', 'VA', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(232, 'Venezuela', 'VE', 'Venezuelan Bolivar', '', '', 'VUB', '0', '0', 'asiapacific', '1'),
(233, 'Vietnam', 'VN', 'Vietnamese Dong', '', '', 'VND', '0', '0', 'asiapacific', '1'),
(234, 'Virgin Islands (British)', 'VG', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'northamerica', '1'),
(235, 'Virgin Islands (USA)', 'VI', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'northamerica', '1'),
(236, 'Wallis and Futuna Islands', 'WF', 'CFP Franc', '', '', 'XPF', '0', '0', 'asiapacific', '1'),
(237, 'Western Sahara', 'EH', 'Moroccan Dirham', '', '', 'MAD', '0', '0', 'africa', '1'),
(238, 'Yemen', 'YE', 'Yemeni Rial', '', '', 'YER', '0', '0', 'asiapacific', '1'),
(239, 'Yugoslavia', 'YU', 'Yugoslav New Dinar', '', '', 'YUN', '0', '0', 'europe', '1'),
(240, 'Zambia', 'ZM', 'Zambian Kwacha', '', '', 'ZMK', '0', '0', 'africa', '1'),
(241, 'Zimbabwe', 'ZW', 'Zimbabwe Dollar', '$', '&#036;', 'ZWD', '0', '0', 'africa', '1');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_download_status`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_download_status` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`product_id` bigint(20) unsigned DEFAULT NULL,
`fileid` bigint(20) unsigned NOT NULL DEFAULT '0',
`purchid` bigint(20) unsigned NOT NULL DEFAULT '0',
`cartid` bigint(20) unsigned DEFAULT NULL,
`uniqueid` varchar(64) DEFAULT '',
`downloads` int(11) NOT NULL DEFAULT '0',
`ip_number` varchar(255) NOT NULL DEFAULT '',
`active` varchar(1) NOT NULL DEFAULT '0',
`datetime` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uniqueid` (`uniqueid`),
KEY `product_id` (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_download_status`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_meta`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_meta` (
`meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
`object_type` varchar(24) NOT NULL DEFAULT 'cart_Item',
`object_id` bigint(20) NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `object_type__meta_key` (`object_type`,`meta_key`),
KEY `object_type__object_id__meta_key` (`object_type`,`object_id`,`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_meta`
--
INSERT INTO `wp_wpsc_meta` (`meta_id`, `object_type`, `object_id`, `meta_key`, `meta_value`) VALUES
(1, 'wpsc_category', 11, 'nicename', 'product-category'),
(2, 'wpsc_category', 11, 'description', 'This is a description'),
(3, 'wpsc_category', 11, 'image', ''),
(4, 'wpsc_category', 11, 'fee', '0'),
(5, 'wpsc_category', 11, 'active', '1'),
(6, 'wpsc_category', 11, 'order', '0');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_product_rating`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_product_rating` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ipnum` varchar(30) NOT NULL DEFAULT '',
`productid` bigint(20) unsigned NOT NULL DEFAULT '0',
`rated` tinyint(1) NOT NULL DEFAULT '0',
`time` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_product_rating`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_purchase_logs`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_purchase_logs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`totalprice` decimal(11,2) NOT NULL DEFAULT '0.00',
`statusno` smallint(6) NOT NULL DEFAULT '0',
`sessionid` varchar(255) NOT NULL DEFAULT '',
`transactid` varchar(255) NOT NULL DEFAULT '',
`authcode` varchar(255) NOT NULL DEFAULT '',
`processed` bigint(20) unsigned NOT NULL DEFAULT '1',
`user_ID` bigint(20) unsigned DEFAULT '0',
`date` varchar(255) NOT NULL DEFAULT '',
`gateway` varchar(64) NOT NULL DEFAULT '',
`billing_country` char(6) NOT NULL DEFAULT '',
`shipping_country` char(6) NOT NULL DEFAULT '',
`base_shipping` decimal(11,2) NOT NULL DEFAULT '0.00',
`email_sent` char(1) NOT NULL DEFAULT '0',
`stock_adjusted` char(1) NOT NULL DEFAULT '0',
`discount_value` decimal(11,2) NOT NULL DEFAULT '0.00',
`discount_data` text,
`track_id` varchar(50) DEFAULT '',
`billing_region` char(6) NOT NULL DEFAULT '',
`shipping_region` char(6) NOT NULL DEFAULT '',
`find_us` varchar(255) NOT NULL DEFAULT '',
`engravetext` varchar(255) DEFAULT '',
`shipping_method` varchar(64) DEFAULT NULL,
`shipping_option` varchar(128) DEFAULT NULL,
`affiliate_id` varchar(32) DEFAULT NULL,
`plugin_version` varchar(32) DEFAULT NULL,
`notes` text,
`wpec_taxes_total` decimal(11,2) DEFAULT NULL,
`wpec_taxes_rate` decimal(11,2) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `sessionid` (`sessionid`),
KEY `gateway` (`gateway`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_purchase_logs`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_region_tax`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_region_tax` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`country_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`name` varchar(64) NOT NULL DEFAULT '',
`code` char(2) NOT NULL DEFAULT '',
`tax` float NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `country_id` (`country_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=65 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_region_tax`
--
INSERT INTO `wp_wpsc_region_tax` (`id`, `country_id`, `name`, `code`, `tax`) VALUES
(1, 100, 'Alberta', 'AB', 0),
(2, 100, 'British Columbia', 'BC', 0),
(3, 100, 'Manitoba', 'MB', 0),
(4, 100, 'New Brunswick', 'NK', 0),
(5, 100, 'Newfoundland', 'NF', 0),
(6, 100, 'Northwest Territories', 'NT', 0),
(7, 100, 'Nova Scotia', 'NS', 0),
(8, 100, 'Nunavut', 'NU', 0),
(9, 100, 'Ontario', 'ON', 0),
(10, 100, 'Prince Edward Island', 'PE', 0),
(11, 100, 'Quebec', 'PQ', 0),
(12, 100, 'Saskatchewan', 'SN', 0),
(13, 100, 'Yukon', 'YT', 0),
(14, 136, 'Alabama', 'AL', 0),
(15, 136, 'Alaska', 'AK', 0),
(16, 136, 'Arizona', 'AZ', 0),
(17, 136, 'Arkansas', 'AR', 0),
(18, 136, 'California', 'CA', 0),
(19, 136, 'Colorado', 'CO', 0),
(20, 136, 'Connecticut', 'CT', 0),
(21, 136, 'Delaware', 'DE', 0),
(22, 136, 'Florida', 'FL', 0),
(23, 136, 'Georgia', 'GA', 0),
(24, 136, 'Hawaii', 'HI', 0),
(25, 136, 'Idaho', 'ID', 0),
(26, 136, 'Illinois', 'IL', 0),
(27, 136, 'Indiana', 'IN', 0),
(28, 136, 'Iowa', 'IA', 0),
(29, 136, 'Kansas', 'KS', 0),
(30, 136, 'Kentucky', 'KY', 0),
(31, 136, 'Louisiana', 'LA', 0),
(32, 136, 'Maine', 'ME', 0),
(33, 136, 'Maryland', 'MD', 0),
(34, 136, 'Massachusetts', 'MA', 0),
(35, 136, 'Michigan', 'MI', 0),
(36, 136, 'Minnesota', 'MN', 0),
(37, 136, 'Mississippi', 'MS', 0),
(38, 136, 'Missouri', 'MO', 0),
(39, 136, 'Montana', 'MT', 0),
(40, 136, 'Nebraska', 'NE', 0),
(41, 136, 'Nevada', 'NV', 0),
(42, 136, 'New Hampshire', 'NH', 0),
(43, 136, 'New Jersey', 'NJ', 0),
(44, 136, 'New Mexico', 'NM', 0),
(45, 136, 'New York', 'NY', 0),
(46, 136, 'North Carolina', 'NC', 0),
(47, 136, 'North Dakota', 'ND', 0),
(48, 136, 'Ohio', 'OH', 0),
(49, 136, 'Oklahoma', 'OK', 0),
(50, 136, 'Oregon', 'OR', 0),
(51, 136, 'Pennsylvania', 'PA', 0),
(52, 136, 'Rhode Island', 'RI', 0),
(53, 136, 'South Carolina', 'SC', 0),
(54, 136, 'South Dakota', 'SD', 0),
(55, 136, 'Tennessee', 'TN', 0),
(56, 136, 'Texas', 'TX', 0),
(57, 136, 'Utah', 'UT', 0),
(58, 136, 'Vermont', 'VT', 0),
(59, 136, 'Virginia', 'VA', 0),
(60, 136, 'Washington', 'WA', 0),
(61, 136, 'Washington DC', 'DC', 0),
(62, 136, 'West Virginia', 'WV', 0),
(63, 136, 'Wisconsin', 'WI', 0),
(64, 136, 'Wyoming', 'WY', 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_submited_form_data`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_submited_form_data` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`log_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`form_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`value` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `log_id` (`log_id`,`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_submited_form_data`
--